recipes-app/.gitapp/schemas/ingredients.json

31 lines
515 B
JSON

{
"$id": "ingredients",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"name",
"quantity"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"quantity": {
"type": "string"
},
"unit": {
"type": "string"
},
"notes": {
"type": "string"
},
"recipe": {
"type": "string",
"x-relation": {
"collection": "recipes",
"type": "single"
}
}
}
}