Skip to content

Expand schemas #1

@loganvolkers

Description

@loganvolkers

Original spec from here: jdorn/json-editor#49

{ "type": "object", "allOf": [ { "properties": { "key1": { "type": "string" } }, "required": ["key1"] }, { "properties": { "key2": { "type": "string" } }, "required": ["key2"] } ] } 

Should produce the following after it's expanded:

{ "type": "object", "properties": { "key1": { "type": "string" }, "key2": { "type": "string" } }, "required": ["key1","key2"] } 

Moved from APIDevTools/swagger-parser#15

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions