http://ontology.gtfs.org/reference#LocationGroupShape
Instances of gtfs:LocationGroup can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| gtfs:LocationGroup | ||||
| gtfs:location_group_id | 1 |
xsd:string
|
||
| gtfs:location_group_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:LocationGroupShape a sh:NodeShape ;
sh:property [ sh:datatype xsd:string ;
sh:minCount 1 ;
sh:path gtfs:location_group_id ],
[ sh:datatype xsd:string ;
sh:path gtfs:location_group_name ] ;
sh:targetClass gtfs:LocationGroup .