{ "$schema": "http://json-schema.org/schema#", "$schemaVersion": "0.0.1", "$id": "https://smart-data-models.github.io/dataModels.UrbanMobility/GtfsAgency/schema.json", "title": "Smart Data Models. GTFS Schema - Agency", "description": "GTFS Agency", "type": "object", "allOf": [ { "$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/GSMA-Commons" }, { "$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/Location-Commons/properties/address" }, { "properties": { "type": { "type": "string", "enum": [ "GtfsAgency" ], "description": "Property. NGSI Entity Type: It has to be GtfsAgency" }, "entitySource": { "type": "string", "format": "uri", "description": "Property. A sequence of characters giving the original source of the Entity data as a URL. It shall point to the URL of the original GTFS feed used to generate this Entity. Model:'https://schema.org/URL'" }, "agencyName": { "type": "string", "description": "Property. Same as GTFS `agency_name`. Model:'https://schema.org/Text'" }, "page": { "$ref": "https://smart-data-models.github.io/dataModel.UrbanMobility/gtfs-schema.json#/definitions/GTFS-Stop-Commons/properties/page" }, "phone": { "type": "string", "description": "Property. Same as GFTS `agency_phone`. Model:'https://schema.org/Text'" }, "timezone": { "type": "string", "description": "Property. Same as GTFS `agency_timezone`. Model:'https://schema.org/Text'. See [GTFS](https://developers.google.com/transit/gtfs/reference/#agencytxt)" }, "language": { "type": "string", "description": "Property. Same as GTFS `agency_language`. Model:'https://schema.org/Text'. See [GTFS](https://developers.google.com/transit/gtfs/reference/#agencytxt)" } } } ], "required": [ "id", "type", "agencyName", "source" ] }