Lost in dicts
{ | |
"meal": { | |
"type": "array", | |
"title": "Meal", | |
"minItems": 1, | |
"items": { | |
"course": { | |
"type": "array", | |
"title": "Course", | |
"items": { | |
"minof": { | |
"type": "string", | |
"title": "Min number" | |
}, | |
"maxof": { | |
"type": "string", | |
"title": "Max number" | |
}, | |
"options": { | |
"type": "string", | |
"title": "Options", | |
"format": "text" | |
} | |
} | |
} | |
} | |
} | |
} |
{ | |
"type": "object", | |
"properties": { | |
"meal": { | |
"type": "array", | |
"title": "Meal", | |
"minItems": 1, | |
"items": { | |
"type": "object", | |
"properties": { | |
"course": { | |
"type": "array", | |
"title": "Course", | |
"items": { | |
"type": "object", | |
"properties": { | |
"minof": { | |
"type": "string", | |
"title": "Min number" | |
}, | |
"maxof": { | |
"type": "string", | |
"title": "Max number" | |
}, | |
"options": { | |
"type": "string", | |
"title": "Options", | |
"format": "text" | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment