http://rescs.org/dash/organization/OrganizationShape
An organization such as a school, NGO, corporation, club, etc.
Instances of schema:Organization can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
---|---|---|---|---|
schema:Organization | ||||
schema:address | 1 |
xsd:string
|
||
schema:contactPoint | 1 |
schema:ContactPoint
|
||
schema:department |
schema:Organization
|
|||
schema:email | 1 |
xsd:string
|
||
schema:funder | ||||
schema:keywords | ||||
schema:member | ||||
schema:parentOrganization |
schema:Organization
|
|||
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/organization/OrganizationShape> a sh:NodeShape ;
rdfs:label "Organization"^^xsd:string ;
rdfs:comment "An organization such as a school, NGO, corporation, club, etc."^^xsd:string ;
sh:and ( [ sh:node <http://rescs.org/dash/thing/ThingShape> ] [ sh:property [ sh:class schema:Organization ;
sh:description "The larger organization that this organization is a subOrganization of, if any." ;
sh:name "parentOrganization" ;
sh:nodeKind sh:IRI ;
sh:path schema:parentOrganization ],
[ sh:description "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals." ;
sh:name "member" ;
sh:or ( [ sh:class schema:Person ;
sh:nodeKind sh:IRI ] [ sh:class schema:Organization ;
sh:nodeKind sh:IRI ] ) ;
sh:path schema:member ],
[ sh:description "A person or organization that supports (sponsors) something through some kind of financial contribution." ;
sh:name "funder" ;
sh:or ( [ sh:class schema:Person ;
sh:nodeKind sh:IRI ] [ sh:class schema:Organization ;
sh:nodeKind sh:IRI ] ) ;
sh:path schema:funder ],
[ sh:datatype xsd:string ;
sh:description "Email address." ;
sh:maxCount 1 ;
sh:name "email" ;
sh:path schema:email ;
sh:pattern "^[^@\\s]+@[^@\\s]+\\.[^@\\s]+$" ],
[ sh:class schema:ContactPoint ;
sh:description "A contact point for a person or organization." ;
sh:maxCount 1 ;
sh:name "contactPoint" ;
sh:nodeKind sh:IRI ;
sh:path schema:contactPoint ],
[ sh:class schema:Organization ;
sh:description "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe." ;
sh:name "department" ;
sh:nodeKind sh:IRI ;
sh:path schema:department ],
[ sh:description "Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas." ;
sh:name "keywords" ;
sh:or ( [ sh:datatype xsd:string ] [ sh:datatype rdf:langString ] [ sh:nodeKind sh:IRI ] ) ;
sh:path schema:keywords ],
[ sh:datatype xsd:string ;
sh:description "Physical address of the item." ;
sh:maxCount 1 ;
sh:name "address" ;
sh:path schema:address ] ] ) ;
sh:targetClass schema:Organization .