Skip to content

Commit

Permalink
Added artifacts for product content
Browse files Browse the repository at this point in the history
  • Loading branch information
FranckCo committed Sep 12, 2021
1 parent 76fc9cc commit f8067b3
Showing 1 changed file with 46 additions and 1 deletion.
47 changes: 46 additions & 1 deletion coos.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,11 @@ coos:ProductPresentation a owl:Class , rdfs:Class ;
skos:prefLabel "Product presentation"@en , "Présentation de produit"@fr ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .

coos:ProductContent a owl:Class , rdfs:Class ;
rdfs:seeAlso coos:productContents ;
skos:prefLabel "Product content"@en , "Contenu de produit"@fr ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .

# Classes related to the 'organizations' domain

coos:StatisticalOrganization a rdfs:Class , owl:Class ;
Expand Down Expand Up @@ -246,6 +251,7 @@ coos:InternationalAgency a rdfs:Class , owl:Class ;
owl:disjointWith coos:NationalStatisticalInstitute ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .


#################################################################
# Annotation properties
#################################################################
Expand Down Expand Up @@ -311,6 +317,16 @@ coos:presentation a rdfs:Property , owl:ObjectProperty ;
rdfs:range coos:ProductPresentation ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .

# Property for product content

coos:content a rdfs:Property , owl:ObjectProperty ;
rdfs:label "content"@en , "contenu"@fr ;
rdfs:comment "Type of content of a statistical product"@en , "Type de contenu d'un produit statistique"@fr ;
skos:definition "Type of content of a statistical product"@en , "Type de contenu d'un produit statistique"@fr ;
rdfs:domain coos:StatisticalProduct ;
rdfs:range coos:ProductContent ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .


#################################################################
# Individuals
Expand Down Expand Up @@ -816,4 +832,33 @@ coos:thematicMapPresentation a coos:ProductPresentation , skos:Concept ;
coos:interactivePresentation a coos:ProductPresentation , skos:Concept ;
skos:inScheme coos:productPresentations ;
skos:prefLabel "Interactive"@en , "Interactive"@fr ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .
rdfs:isDefinedBy <http://id.unece.org/def/coos> .

# Concept scheme for types of product content

coos:productContents a skos:ConceptScheme ;
rdfs:seeAlso coos:ProductContent ;
skos:hasTopConcept coos:dataContent , coos:metadataContent , coos:analysisContent , coos:modelContent ;
skos:notation "CL_PROD_CONT" ;
skos:prefLabel "Product contents"@en , "Contenus de produit"@fr ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .

coos:dataContent a coos:ProductContent , skos:Concept ;
skos:inScheme coos:productContents ;
skos:prefLabel "Data"@en , "Données"@fr ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .

coos:metadataContent a coos:ProductContent , skos:Concept ;
skos:inScheme coos:productContents ;
skos:prefLabel "Metadata"@en , "Métadonnées"@fr ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .

coos:analysisContent a coos:ProductContent , skos:Concept ;
skos:inScheme coos:productContents ;
skos:prefLabel "Analysis"@en , "Analyse"@fr ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .

coos:modelContent a coos:ProductContent , skos:Concept ;
skos:inScheme coos:productContents ;
skos:prefLabel "Model"@en , "Modèle"@fr ;
rdfs:isDefinedBy <http://id.unece.org/def/coos> .

0 comments on commit f8067b3

Please sign in to comment.