https://w3id.org/standards/smart/ontologies/core/TermShape
Instances of smart:Term can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| smart:Term | ||||
| smart:hasPartOfSpeechType | 1 | 1 |
skos:Concept
smart:PartOfSpeechType |
|
| smart:hasTermFormType | 1 | 1 |
smart:TermFormType
skos:Concept |
|
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix smart: <https://w3id.org/standards/smart/ontologies/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
smart:TermShape a sh:NodeShape ;
sh:property [ sh:class skos:Concept,
smart:TermFormType ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path smart:hasTermFormType ],
[ sh:class skos:Concept,
smart:PartOfSpeechType ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path smart:hasPartOfSpeechType ] ;
sh:targetClass smart:Term .