Skip to content

Commit

Permalink
Hotfix dsv.ttl (add artefact, remove AP)
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Klímek <jakub@jakubklimek.com>
  • Loading branch information
jakubklimek committed Jul 11, 2024
1 parent 451fa0a commit 0f3f21f
Showing 1 changed file with 70 additions and 80 deletions.
150 changes: 70 additions & 80 deletions dsv.ttl
Original file line number Diff line number Diff line change
@@ -1,80 +1,70 @@
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix : <https://w3id.org/dsv#>.

:ConceptualModel a owl:Class, rdfs:Class;
rdfs:label "Konceptuální model"@cs, "Conceptual model"@en;
rdfs:comment "Konceptuální model obsahující profily tříd a vlastností různých slovníků."@cs, "Conceptual model containing profiles of classes and properties of various vocabularies."@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>.
:Profile a owl:Class, rdfs:Class;
rdfs:label "Profil"@cs, "Profile"@en;
rdfs:comment "Profil entity. Umožňuje blíže specifikovat některé její vlastnost v kontextu aplikačního profilu."@cs, "Entity profile. Allows profile editors to specify context dependent information such as label, definition, usage note, cardinalities, etc."@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>.
:profileOf a rdf:Property, owl:ObjectProperty;
rdfs:label "profile of"@en;
rdfs:comment "Specifies a parent profile of the current profile."@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:domain :Profile;
rdfs:range :Profile.
:inheritsProperties a rdf:Property, owl:ObjectProperty;
rdfs:label "inherits properties"@en;
rdfs:comment "Specifies, which properties are inherited, i.e. not profiled."@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:domain :Profile;
rdfs:range rdf:Property.
:specializes a rdf:Property, owl:ObjectProperty;
rdfs:label "specializes"@en;
rdfs:comment "Specifies a profile specialized by this profile."@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:domain :Profile;
rdfs:range :Profile.
:ClassProfile a owl:Class, rdfs:Class;
rdfs:label "Profil třídy"@cs, "Class Profile"@en;
rdfs:comment "Profile of a class. Allows specification editors to specify profile specific names, definitions and usage notes."@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:subClassOf :Profile.
:class a rdf:Property, owl:ObjectProperty;
rdfs:label "profiled class"@en;
rdfs:comment "The profiled class."@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:domain :ClassProfile;
rdfs:range rdfs:Class.
:ObjectPropertyProfile a owl:Class, rdfs:Class;
rdfs:label "Profil objektové vlastnosti"@cs, "Object Property Profile"@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:subClassOf :PropertyProfile.
:range a rdf:Property, owl:ObjectProperty;
rdfs:label "range"@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:domain :ObjectPropertyProfile;
rdfs:range :ClassProfile.
:DatatypePropertyProfile a owl:Class, rdfs:Class;
rdfs:label "Profile atributu"@cs, "Datatype Property Profile"@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:subClassOf :PropertyProfile.
:datatype a rdf:Property, owl:ObjectProperty;
rdfs:label "datatype"@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:domain :DatatypePropertyProfile;
rdfs:range rdfs:Datatype.
:InvalidProfile a owl:Class, rdfs:Class;
rdfs:label "Nevalidní profil"@cs, "Invalid profile"@en;
rdfs:comment "Neplatný profil je profil, který porušuje pravidla pro správné profilování. To může být z dobrého důvodu, jako je dočasná nekonzistence, která se má teprve projevit na profilované entitě."@cs, "Invalid profile is a profile, which breaks profile compliance rules. This may be for a good reason such as temporary, to be propagated upstream, inconsistency."@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:subClassOf :Profile.
:PropertyProfile a owl:Class, rdfs:Class;
rdfs:label "Profil vlastnosti"@cs, "Property Profile"@en;
rdfs:comment "Profile of a property allows specification editors to specify profile specific name, definition, usage note, domain, range and cardinality."@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:subClassOf :Profile.
:domain a rdf:Property, owl:ObjectProperty;
rdfs:label "domain"@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:domain :PropertyProfile;
rdfs:range :ClassProfile.
:cardinality a rdf:Property, owl:ObjectProperty;
rdfs:label "kardinalita"@cs, "cardinality"@en;
rdfs:isDefinedBy <https://mff-uk.github.io/data-specification-vocabulary/>;
rdfs:domain :PropertyProfile;
rdfs:range rdfs:Resource.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix : <https://w3id.org/dsv#>.

:ConceptualModel a owl:Class, rdfs:Class;
rdfs:label "Konceptuální model"@cs, "Conceptual model"@en;
rdfs:comment "Konceptuální model obsahující profily tříd a vlastností různých slovníků."@cs, "Conceptual model containing profiles of classes and properties of various vocabularies."@en.
:Profile a owl:Class, rdfs:Class;
rdfs:label "Profil"@cs, "Profile"@en;
rdfs:comment "Profil entity. Umožňuje blíže specifikovat některé její vlastnost v kontextu aplikačního profilu."@cs, "Entity profile. Allows profile editors to specify context dependent information such as label, definition, usage note, cardinalities, etc."@en.
:profileOf a rdf:Property, owl:ObjectProperty;
rdfs:label "profile of"@en;
rdfs:comment "Specifies a parent profile of the current profile."@en;
rdfs:domain :Profile;
rdfs:range :Profile.
:inheritsProperties a rdf:Property, owl:ObjectProperty;
rdfs:label "inherits properties"@en;
rdfs:comment "Specifies, which properties are inherited, i.e. not profiled."@en;
rdfs:domain :Profile;
rdfs:range rdf:Property.
:specializes a rdf:Property, owl:ObjectProperty;
rdfs:label "specializes"@en;
rdfs:comment "Specifies a profile specialized by this profile."@en;
rdfs:domain :Profile;
rdfs:range :Profile.
:ClassProfile a owl:Class, rdfs:Class;
rdfs:label "Profil třídy"@cs, "Class Profile"@en;
rdfs:comment "Profile of a class. Allows specification editors to specify profile specific names, definitions and usage notes."@en;
rdfs:subClassOf :Profile.
:class a rdf:Property, owl:ObjectProperty;
rdfs:label "profiled class"@en;
rdfs:comment "The profiled class."@en;
rdfs:domain :ClassProfile;
rdfs:range rdfs:Class.
:ObjectPropertyProfile a owl:Class, rdfs:Class;
rdfs:label "Profil objektové vlastnosti"@cs, "Object Property Profile"@en;
rdfs:subClassOf :PropertyProfile.
:range a rdf:Property, owl:ObjectProperty;
rdfs:label "range"@en;
rdfs:domain :ObjectPropertyProfile;
rdfs:range :ClassProfile.
:DatatypePropertyProfile a owl:Class, rdfs:Class;
rdfs:label "Profile atributu"@cs, "Datatype Property Profile"@en;
rdfs:subClassOf :PropertyProfile.
:datatype a rdf:Property, owl:ObjectProperty;
rdfs:label "datatype"@en;
rdfs:domain :DatatypePropertyProfile;
rdfs:range rdfs:Datatype.
:InvalidProfile a owl:Class, rdfs:Class;
rdfs:label "Nevalidní profil"@cs, "Invalid profile"@en;
rdfs:comment "Neplatný profil je profil, který porušuje pravidla pro správné profilování. To může být z dobrého důvodu, jako je dočasná nekonzistence, která se má teprve projevit na profilované entitě."@cs, "Invalid profile is a profile, which breaks profile compliance rules. This may be for a good reason such as temporary, to be propagated upstream, inconsistency."@en;
rdfs:subClassOf :Profile.
:PropertyProfile a owl:Class, rdfs:Class;
rdfs:label "Profil vlastnosti"@cs, "Property Profile"@en;
rdfs:comment "Profile of a property allows specification editors to specify profile specific name, definition, usage note, domain, range and cardinality."@en;
rdfs:subClassOf :Profile.
:domain a rdf:Property, owl:ObjectProperty;
rdfs:label "domain"@en;
rdfs:domain :PropertyProfile;
rdfs:range :ClassProfile.
:cardinality a rdf:Property, owl:ObjectProperty;
rdfs:label "kardinalita"@cs, "cardinality"@en;
rdfs:domain :PropertyProfile;
rdfs:range rdfs:Resource.
:artefact a rdf:Property, owl:ObjectProperty;
rdfs:label "artefact"@en;
rdfs:comment "Artefact of the specification"@en;
rdfs:domain <http://purl.org/dc/terms/Standard>;
rdfs:range <http://www.w3.org/ns/dx/prof/ResourceDescriptor>.

0 comments on commit 0f3f21f

Please sign in to comment.