Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Class names #72

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 16 additions & 10 deletions mod.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@prefix xml: <http://www.w3.org/XML/1998/namespace/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix adms: <http://www.w3.org/ns/adms#> .
@prefix dcat: <http://www.w3.org/ns/dca#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcmi: <http://purl.org/dc/dcmitype/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
Expand Down Expand Up @@ -300,7 +300,8 @@ mod:SemanticArtefactDistribution rdf:type owl:Class ;

### https://w3id.org/mod#SemanticArtefactCatalogRecord
mod:SemanticArtefactCatalogRecord rdf:type owl:Class ;
rdfs:subClassOf dcat:CatalogRecord .
rdfs:subClassOf dcat:CatalogRecord ;
rdfs:label "Semantic Artefact Catalog Record"@en .


### https://w3id.org/mod#Analytics
Expand Down Expand Up @@ -331,7 +332,7 @@ mod:Group rdf:type owl:Class ;

### https://w3id.org/mod#KnowledgeRepresentationParadigm
mod:KnowledgeRepresentationParadigm rdf:type owl:Class ;
rdfs:label "Knowledge representation paradigm"@en .
rdfs:label "Knowledge Representation Paradigm"@en .


### https://w3id.org/mod#SemanticArtefactEvaluation
Expand All @@ -341,32 +342,37 @@ mod:SemanticArtefactEvaluation rdf:type owl:Class ;

### https://w3id.org/mod#SemanticArtefactService
mod:SemanticArtefactService rdf:type owl:Class ;
rdfs:subClassOf dcat:DataService .
rdfs:subClassOf dcat:DataService ;
rdfs:label "Semantic Artefact Service"@en .


### https://w3id.org/mod#SemanticArtefactTask
mod:SemanticArtefactTask rdf:type owl:Class ;
rdfs:label "Semantic Artefact Task"@en .


### https://w3id.org/mod#SemanticArtfeactCatalog
mod:SemanticArtfeactCatalog rdf:type owl:Class ;
rdfs:subClassOf dcat:Catalog .
### https://w3id.org/mod#SemanticArtefactCatalog
mod:SemanticArtefactCatalog rdf:type owl:Class ;
rdfs:subClassOf dcat:Catalog ;
rdfs:label "Semantic Artefact Catalog"@en .


### https://w3id.org/mod#Taxonomy
mod:Taxonomy rdf:type owl:Class ;
rdfs:subClassOf mod:SemanticArtefact .
rdfs:subClassOf mod:SemanticArtefact ;
rdfs:label "Taxonomy"@en .


### https://w3id.org/mod#Terminology
mod:Terminology rdf:type owl:Class ;
rdfs:subClassOf mod:SemanticArtefact .
rdfs:subClassOf mod:SemanticArtefact ;
rdfs:label "Terminology"@en .


### https://w3id.org/mod#Thesaurus
mod:Thesaurus rdf:type owl:Class ;
rdfs:subClassOf mod:SemanticArtefact .
rdfs:subClassOf mod:SemanticArtefact ;
rdfs:label "Thesaurus"@en .


#################################################################
Expand Down
Loading