http://rescs.org/dash/structuredvalue/StructuredValueShape
Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.
Instances of schema:StructuredValue can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
---|---|---|---|---|
schema:Thing | ||||
schema:alternateName |
xsd:string
|
|||
schema:description | 1 | |||
schema:identifier | 1 | |||
schema:image | 1 | |||
schema:name | 1 | 1 |
xsd:string
|
|
schema:sameAs | ||||
schema:url |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://rescs.org/dash/structuredvalue/StructuredValueShape> a sh:NodeShape ;
rdfs:label "Structured value"^^xsd:string ;
rdfs:comment "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing."^^xsd:string ;
sh:and ( [ sh:node <http://rescs.org/dash/intangible/IntangibleShape> ] ) ;
sh:targetClass schema:StructuredValue .