http://ontology.gtfs.org/reference#AreaShape
Instances of gtfs:Area can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| gtfs:Area | ||||
| gtfs:area_id | 1 |
xsd:string
|
||
| gtfs:area_name |
xsd:string
|
|||
@prefix gtfs: <http://ontology.gtfs.org/reference#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
gtfs:AreaShape a sh:NodeShape ;
sh:property [ sh:datatype xsd:string ;
sh:minCount 1 ;
sh:path gtfs:area_id ],
[ sh:datatype xsd:string ;
sh:path gtfs:area_name ] ;
sh:targetClass gtfs:Area .