rescs:dash/intangible/IntangibleShape leaf node


URI

http://rescs.org/dash/intangible/IntangibleShape

Label

Intangible

Description

A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.

Target Classes (1)

Shape Properties

Instances of schema:Intangible 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

Implementation

@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/intangible/IntangibleShape> a sh:NodeShape ;
    rdfs:label "Intangible"^^xsd:string ;
    rdfs:comment "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."^^xsd:string ;
    sh:and ( [ sh:node <http://rescs.org/dash/thing/ThingShape> ] ) ;
    sh:targetClass schema:Intangible .