24 lines
1.2 KiB
JSON
24 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:Car",
|
|
"title": "Car",
|
|
"description": "A car is a wheeled, self-powered motor vehicle used for transportation.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.",
|
|
"$ref": "schema:Vehicle"
|
|
}
|
|
],
|
|
"properties": {
|
|
"acrissCode": {
|
|
"description": "The ACRISS Car Classification Code is a code used by many car rental companies, for classifying vehicles. ACRISS stands for Association of Car Rental Industry Systems and Standards.",
|
|
"type": "string"
|
|
},
|
|
"roofLoad": {
|
|
"description": "The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]]\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
|
|
"$ref": "schema:QuantitativeValue"
|
|
}
|
|
}
|
|
}
|