{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "schema:BusOrCoach", "title": "BusOrCoach", "description": "A bus (also omnibus or autobus) is a road vehicle designed to carry passengers. Coaches are luxury buses, usually in service for long distance travel.", "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" } } }