14 lines
451 B
JSON
14 lines
451 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:TaxiService",
|
|
"title": "TaxiService",
|
|
"description": "A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "A service provided by an organization, e.g. delivery service, print services, etc.",
|
|
"$ref": "schema:Service"
|
|
}
|
|
]
|
|
}
|