# imports: https://www.omg.org/spec/Commons/AnnotationVocabulary/ # imports: https://www.omg.org/spec/Commons/TextDatatype/ @prefix cmns-av: . @prefix cmns-dsg: . @prefix cmns-txt: . @prefix dct: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix skos: . @prefix xsd: . a owl:Ontology ; rdfs:label "Commons Designators Ontology" ; dct:abstract "The designators ontology defines commonly used concepts for naming, derived in part from the patterns defined in ISO 1087 for terminology work and ISO 11179-3, Metadata Registries. It includes several very high level semiotic relationships, including defines, describes, and denotes for associating designators with the concepts they reference." ; dct:contributor "Davide Sottara, Mayo Clinic" , "Dean Allemang, Working Ontologist" , "Elisa Kendall, Thematix Partners LLC" , "Pete Rivett, agnos.ai U.K. Ltd" ; dct:license "http://opensource.org/licenses/MIT"^^xsd:anyURI ; owl:imports , ; owl:versionIRI ; skos:note "The designators ontology conforms with the OWL 2 DL semantics, and is outside of OWL 2 RL due to the inclusion of one minimum cardinality constraint (which is tyically ignored, but is important - see note on the Designator class) and two value restrictions. These constraints can be removed if required to support OWL RL rule-based applications that cannot be extended to support them." ; cmns-av:copyright "Copyright (c) 2014-2022 Thematix Partners LLC" , "Copyright (c) 2021-2022 Mayo Clinic" , "Copyright (c) 2021-2022 Working Ontologist LLC" , "Copyright (c) 2021-2022 agnos.ai U.K. Ltd" , "Copyright (c) 2022 Object Management Group, Inc." ; . cmns-dsg:Designation a owl:Class ; rdfs:subClassOf [ a owl:Restriction ; owl:onProperty cmns-txt:hasTextValue ; owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; owl:onDataRange cmns-txt:Text ; ] , [ a owl:Restriction ; owl:onProperty cmns-dsg:denotes ; owl:someValuesFrom owl:Thing ; ] ; rdfs:label "designation" ; dct:source "ISO 1087 Terminology work and terminology science - Vocabulary, Second edition, 2019-09, clause 3.4.1" ; skos:definition "representation for someone or something by a sign that denotes it" ; skos:note "A designation can be a term including appellations, a proper name, or a symbol." , "A designation can be linguistic or non-linguistic. It can consist of various types of characters, but also punctuation marks such as hyphens and parentheses, governed by domain-, subject-, or language-specific conventions." , "Note that the use of the min 0 cardinality restriction in the definition of this class is provided as a reminder that designators are expected, in many cases, to have a text value associated with them. There are cases where this is not true, however, including symbols. And, there may be cases where the value is not known. Additionally, not all tools support rdf:langString, thus its use in the definition of the Text datatype may cause errors, for example in value and some number restrictions. Min 0 cardinality constraints are ignored by reasoners and other processors, so this allows us to say that the possible values for this property are likely either xsd:string or rdf:langString, but does not require it depending on the environment in which the ontology is deployed." ; cmns-av:synonym "designator" ; . cmns-dsg:Name a owl:Class ; rdfs:subClassOf cmns-dsg:Designation , [ a owl:Restriction ; owl:onProperty cmns-dsg:isNameOf ; owl:someValuesFrom owl:Thing ; ] ; rdfs:label "name" ; dct:source "ISO/IEC 11179-3 Information technology - Metadata registries (MDR) - Registry metamodel and basic attributes, Third edition, 2013-02-15" ; skos:definition "distinctive designation for an individual (person, organization or thing)" ; . cmns-dsg:defines a owl:ObjectProperty ; rdfs:label "defines" ; rdfs:seeAlso ; owl:inverseOf cmns-dsg:isDefinedIn ; skos:definition "specifies the meaning of something in terms of one or more of its essential qualities" ; skos:note "A quality is an elementary characteristic of something. An 'essential quality' is one that provides a necessary criteria for being that thing and differentiating criteria for not being something else." ; . cmns-dsg:denotes a owl:ObjectProperty ; rdfs:label "denotes" ; rdfs:domain cmns-dsg:Designation ; rdfs:seeAlso , ; skos:definition "serves as a sign for something" ; skos:note "Note that in some references, such as the semiotics ontology from Ontology Design Patterns,'denotes' can be used to talk about e.g. entities denoted by proper nouns: the proper noun 'Leonardo da Vinci' denotes the person Leonardo da Vinci; as well as to talk about sets of entities that can be described by a common noun: the common noun 'person' denotes the collection of all persons in a domain of discourse. Other references that may be useful for interpreting 'denotes' include OntoLex. The interpretation of 'denotes' in this context is more general, but intended to reflect its usage in the semiotic triangle." ; . cmns-dsg:describes a owl:ObjectProperty ; rdfs:label "describes" ; owl:inverseOf cmns-dsg:isDescribedBy ; skos:definition "conveys the nature of" ; . cmns-dsg:hasDescription a owl:DatatypeProperty ; rdfs:subPropertyOf cmns-txt:hasTextValue ; rdfs:label "has description" ; skos:definition "provides a textual statement, picture in words, or account that describes something" ; skos:note "Note that the hasDescription property defined herein has an implicit range of rdfs:Literal. This is purposeful, so that users can specify any element that has a name with or without a language tag without concern for conflicting datatypes (i.e., xsd:string vs. rdf:langString, which are logically disjoint)." ; . cmns-dsg:hasName a owl:ObjectProperty ; rdfs:subPropertyOf cmns-dsg:isSignifiedBy ; rdfs:label "has name" ; rdfs:range cmns-dsg:Name ; owl:inverseOf cmns-dsg:isNameOf ; skos:definition "is known by" ; . cmns-dsg:isDefinedIn a owl:ObjectProperty ; rdfs:label "is defined in" ; skos:definition "indicates something that specifies the meaning associated with the subject" ; skos:note "Typically, a concept, such as a classifier or identifier, will be defined in terms of a scheme, contract, specification, standard, or other reference." ; . cmns-dsg:isDescribedBy a owl:ObjectProperty ; rdfs:label "is described by" ; skos:definition "has general nature or description of" ; . cmns-dsg:isNameOf a owl:ObjectProperty ; rdfs:subPropertyOf cmns-dsg:denotes ; rdfs:label "is name of" ; rdfs:domain cmns-dsg:Name ; skos:definition "denotes in some context" ; . cmns-dsg:isSignifiedBy a owl:ObjectProperty ; rdfs:label "is signified by" ; rdfs:range cmns-dsg:Designation ; owl:inverseOf cmns-dsg:denotes ; skos:definition "has representation, denotation or sign of" ; .