# imports: https://www.omg.org/spec/Commons/AnnotationVocabulary/ # imports: https://www.omg.org/spec/Commons/Collections/ # imports: https://www.omg.org/spec/Commons/Designators/ @prefix cmns-av: . @prefix cmns-cds: . @prefix cmns-col: . @prefix cmns-dsg: . @prefix dct: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix skos: . @prefix xsd: . a owl:Ontology ; rdfs:label "Commons Codes and Code Sets Ontology" ; dct:abstract "This ontology defines commonly used concepts for describing codes, including standardized codes such as ISO language, country, and other code sets, the North American Industry Classification System (NAICS) codes, and custom code sets that many organizations develop for various purposes, derived from the patterns specified in ISO 11179-3, Metadata Registries." ; dct:contributor "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 codes and code sets ontology conforms with the OWL 2 DL semantics, and is outside of OWL 2 RL due to (1) imported axioms from the designations ontology, and (2) the inclusion of a local some values constraint. The latter could be removed as needed to support OWL RL rule-based applications that cannot be extended to support it." , "This ontology was originally designed for use in the OMG Languages, Countries and Codes (LCC) specification as part of the broader LanguageRepresentation ontology. The concepts have also been used in the Financial Industry Business Ontology (FIBO) for representing currency codes, market identifiers (MIC codes), codes for corporate actions, and so forth." ; cmns-av:copyright "Copyright (c) 2014-2022 EDM Council, Inc." , "Copyright (c) 2014-2022 Thematix Partners LLC" , "Copyright (c) 2021-2022 agnos.ai U.K. Ltd" , "Copyright (c) 2022 Object Management Group, Inc." ; . cmns-cds:CodeElement a owl:Class ; rdfs:subClassOf cmns-dsg:Designation , [ a owl:Restriction ; owl:onProperty cmns-col:isMemberOf ; owl:someValuesFrom cmns-cds:CodeSet ; ] ; rdfs:label "code element" ; dct:source "ISO/IEC 11179-3 Information technology - Metadata registries (MDR) - Part 3: Registry metamodel and basic attributes, Third edition, 2013-02-15" ; skos:definition "sequence of characters denoting something for some purpose, within a specified context, according to some rule set" ; skos:example "An example of a code set that has multiple versions are the International Statistical Classification of Diseases and Related Health Problems (ICD) codes such as ICD-9, ICD-10, and so forth, that specify the same codes across multiple versions." ; skos:note "Note that codes may be included in multiple code lists, especially in cases where there are multiple versions of those code lists. ICD-9 and ICD-10 are examples of code sets that specify, in some cases, the same codes, but across different versions of those code sets." ; . cmns-cds:CodeSet a owl:Class ; rdfs:subClassOf cmns-col:Collection , [ a owl:Restriction ; owl:onProperty cmns-col:hasMember ; owl:allValuesFrom cmns-cds:CodeElement ; ] ; rdfs:label "code set" ; dct:source "ISO/IEC 11179-3 Information technology - Metadata registries (MDR) - Part 3: Registry metamodel and basic attributes, Third edition, 2013-02-15" ; skos:definition "system of alpha-numeric symbols, or combinations of symbols, that stand for specified values in some context" ; cmns-av:synonym "coding scheme" ; .