14 lines
379 B
JSON
14 lines
379 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:FoodService",
|
|
"title": "FoodService",
|
|
"description": "A food service, like breakfast, lunch, or dinner.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "A service provided by an organization, e.g. delivery service, print services, etc.",
|
|
"$ref": "schema:Service"
|
|
}
|
|
]
|
|
}
|