14 lines
319 B
JSON
14 lines
319 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:FastFoodRestaurant",
|
|
"title": "FastFoodRestaurant",
|
|
"description": "A fast-food restaurant.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "A food-related business.",
|
|
"$ref": "schema:FoodEstablishment"
|
|
}
|
|
]
|
|
}
|