big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,50 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:RestrictedDiet",
"title": "RestrictedDiet",
"description": "A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. ",
"type": "string",
"oneOf": [
{
"description": "A diet appropriate for people with diabetes.",
"const": "DiabeticDiet"
},
{ "description": "A diet exclusive of gluten.", "const": "GlutenFreeDiet" },
{
"description": "A diet conforming to Islamic dietary practices.",
"const": "HalalDiet"
},
{
"description": "A diet conforming to Hindu dietary practices, in particular, beef-free.",
"const": "HinduDiet"
},
{
"description": "A diet conforming to Jewish dietary practices.",
"const": "KosherDiet"
},
{
"description": "A diet focused on reduced calorie intake.",
"const": "LowCalorieDiet"
},
{
"description": "A diet focused on reduced fat and cholesterol intake.",
"const": "LowFatDiet"
},
{
"description": "A diet appropriate for people with lactose intolerance.",
"const": "LowLactoseDiet"
},
{
"description": "A diet focused on reduced sodium intake.",
"const": "LowSaltDiet"
},
{
"description": "A diet exclusive of all animal products.",
"const": "VeganDiet"
},
{
"description": "A diet exclusive of animal meat.",
"const": "VegetarianDiet"
}
]
}