ChangeRecordVocabulary.ttl 3.58 KB
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix chg: <http://data.15926.org/rdlif/chg#> .

<http://data.15926.org/rdlif/chg#> a owl:Ontology ;
	dc:title "The RDL Change Management Vocabulary (CM)"@en ;
	dc:description "This is the RDF schema for the CM vocabulary terms in the CHG namespace, defined in RDL Change Management."@en .

chg:ChangeRecord a rdfs:Class ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "Change Record"@en ;
	rdfs:subClassOf rdf:Bag ;
	rdfs:comment "The class of change records used to record change events relating to RDL entries, this is a bag of relationships identifying the changed RDL entries."@en .

chg:Severity a rdfs:Class ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "Severity"@en ;
	rdfs:comment "The severity classification of the change request from the change system."@en .

chg:Major a rdfs:Class, chg:Severity ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "Major"@en ;
	rdfs:comment "The change represents a change of significance that could have a big impact to dependent systems."@en .

chg:Minor a rdfs:Class, chg:Severity ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "Minor"@en ;
	rdfs:comment "The change is not considered to have a significant impact on dependent systems."@en .

chg:hasChangeID a rdf:Property ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "has change identity"@en ;
	rdfs:comment "The identity in the change management system of the change details."@en ;
	rdfs:domain chg:ChangeRecord ;
	rdfs:range xsd:string .

chg:hasChangeEntry a rdf:Property ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "has change entry"@en ;
	rdfs:comment "The change entry in the change management system of the change"@en ;
	rdfs:domain chg:ChangeRecord ;
	rdfs:range xsd:anyURI .

chg:severity a rdf:Property ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "severity"@en ;
	rdfs:comment "The potential impact of the change to dependent systems"@en ;
	rdfs:domain chg:ChangeRecord ;
	rdfs:range chg:Severity .

chg:newResources a rdf:Property ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "new resources"@en ;
	rdfs:comment "A bag of the new items created by this change"@en ;
	rdfs:domain chg:ChangeRecord ;
	rdfs:range rdf:Bag .

chg:changedResources a rdf:Property ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "changed resources"@en ;
	rdfs:comment "A bag of the items whose statements has been changed"@en ;
	rdfs:domain chg:ChangeRecord ;
	rdfs:range rdf:Bag .

chg:deletedResources a rdf:Property ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "deleted resources"@en ;
	rdfs:comment "A bag of the items deleted by this change"@en ;
	rdfs:domain chg:ChangeRecord ;
	rdfs:range rdf:Bag .

chg:hasBaseOntology a rdf:Property ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "has base ontology"@en ;
	rdfs:comment "The RDL version that the set of identified changes were applied to"@en ;
	rdfs:domain owl:Ontology ;
	rdfs:range xsd:anyURI .

chg:hasChangedOntology a rdf:Property ;
	rdfs:isDefinedBy <http://data.15926.org/rdlif/chg#> ;
	rdfs:label "has changed ontology"@en ;
	rdfs:comment "The RDL version published as a result of applying the set of identified changes to the base Ontology"@en ;
	rdfs:domain owl:Ontology;
	rdfs:range xsd:anyURI .