Combinators Example
oneOf
- Demo
- Schema
- UI Schema
- Data
schema.json
{"definitions": {"address": {"type": "object","title": "Address","properties": {"street_address": {"type": "string"},"city": {"type": "string"},"state": {"type": "string"}},"required": ["street_address","city","state"]},"user": {"type": "object","title": "User","properties": {"name": {"type": "string"},"mail": {"type": "string"}},"required": ["name","mail"]}},"type": "object","properties": {"addressOrUser": {"oneOf": [{"$ref": "#/definitions/address"},{"$ref": "#/definitions/user"}]}}}
uischema.json
{"type": "VerticalLayout","elements": [{"type": "Control","label": "Basic Information","scope": "#/properties/addressOrUser"}]}
{"addressOrUser": {"street_address": "1600 Pennsylvania Avenue NW","city": "Washington","state": "DC"}}
anyOf
- Demo
- Schema
- UI Schema
- Data
schema.json
{"definitions": {"address": {"type": "object","title": "Address","properties": {"street_address": {"type": "string"},"city": {"type": "string"},"state": {"type": "string"}},"required": ["street_address","city","state"]},"user": {"type": "object","title": "User","properties": {"name": {"type": "string"},"mail": {"type": "string"}},"required": ["name","mail"]}},"type": "object","properties": {"addressOrUser": {"anyOf": [{"$ref": "#/definitions/address"},{"$ref": "#/definitions/user"}]}}}
uischema.json
{"type": "VerticalLayout","elements": [{"type": "Control","label": "Basic Information","scope": "#/properties/addressOrUser"}]}
{"addressOrUser": {"street_address": "1600 Pennsylvania Avenue NW","city": "Washington","state": "DC"}}
allOf
- Demo
- Schema
- UI Schema
- Data
schema.json
{"definitions": {"address": {"type": "object","title": "Address","properties": {"street_address": {"type": "string"},"city": {"type": "string"},"state": {"type": "string"}},"required": ["street_address","city","state"]},"user": {"type": "object","title": "User","properties": {"name": {"type": "string"},"mail": {"type": "string"}},"required": ["name","mail"]}},"type": "object","properties": {"addressOrUser": {"allOf": [{"$ref": "#/definitions/address"},{"$ref": "#/definitions/user"}]}}}
uischema.json
{"type": "VerticalLayout","elements": [{"type": "Control","label": "Basic Information","scope": "#/properties/addressOrUser"}]}
{"addressOrUser": {"street_address": "1600 Pennsylvania Avenue NW","city": "Washington","state": "DC"}}