diff --git a/.github/deployment/sparql/no_parenthetical_labels.sparql b/.github/deployment/sparql/no_parenthetical_labels.sparql new file mode 100644 index 00000000..a6211634 --- /dev/null +++ b/.github/deployment/sparql/no_parenthetical_labels.sparql @@ -0,0 +1,28 @@ +# Title: +# No Parenthetical Labels +# Constraint Description: +# No label shall include a parenthetical, such as "tank (vehicle)" +# Severity: +# Error + +PREFIX rdf: +PREFIX rdfs: +PREFIX owl: + +SELECT ?class ?label ?warningMessage +WHERE { + ?class a owl:Class ; + rdfs:label ?label . + + FILTER (!ISBLANK(?class)) . + FILTER (REGEX(STR(?label), "\\([^\\)]*\\)")) . + + BIND ( + CONCAT( + "Warning: Class ", + STR(?label), + " has a parenthetical qualifier in its label." + ) + AS ?warningMessage + ) +} \ No newline at end of file diff --git a/.github/deployment/sparql/no_reflexive_subclassOf.sparql b/.github/deployment/sparql/no_reflexive_subclassOf.sparql new file mode 100644 index 00000000..a18aac6e --- /dev/null +++ b/.github/deployment/sparql/no_reflexive_subclassOf.sparql @@ -0,0 +1,31 @@ +# Title: +# No Reflexive SubclassOf +# Constraint Description: +# No class should be asserted as a subclass of itself. +# Severity: +# Error + +PREFIX rdfs: +PREFIX owl: + +SELECT ?class ?warningMessage +WHERE { + ?class a owl:Class . + + FILTER (!ISBLANK(?class)) . + + ?class rdfs:subClassOf ?class . + + OPTIONAL { + ?class rdfs:label ?label . + } + + BIND( + CONCAT( + "Warning: Class ", + COALESCE(STR(?label), STR(?class)), + " is explicitly asserted as a subclass of itself" + ) + AS ?warningMessage + ) +} \ No newline at end of file diff --git a/README.md b/README.md index c4af0fd4..18562bf6 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,13 @@ -# The Common Core Ontologies (CCO) +## RECENT NEWS +The modernization of repository artifacts, issues, and documentation is underway: +* Initial cleanup is expected to be completed by **June 30, 2026**. +* The first wave of major structural changes (3.0) is expected to be released by **December 31, 2026** and will incorporate GeoSPARQL, QUDT, and the refactoring of information. +* The second wave of major structural changes (4.0) is expected to be released **June 30, 2027**. -[![GitHub Actions](https://github.com/CommonCoreOntology/CommonCoreOntologies/actions/workflows/manage_release.yml/badge.svg)](https://github.com/CommonCoreOntology/CommonCoreOntologies/actions/workflows/manage_release.yml) -[![license](https://img.shields.io/static/v1?label=license&message=BSD%203.1&color=green&style=flat)](https://github.com/CommonCoreOntology/CommonCoreOntologies?tab=BSD-3-Clause-1-ov-file) -[![release](https://img.shields.io/static/v1?label=release&message=2.0&color=blue&style=flat)](https://github.com/CommonCoreOntology/CommonCoreOntologies/releases/tag/v2.0-2024-11-06) +It is the recommendation of the CCO Governance Board that users wait to update following 4.0 release. In the meantime, users who would like to use versions of CCO with the up-to-date changes, are directed to pull from the 'develop' branch. For a high-level overview of planned updates, see the milestones displayed below. See here for an accompanying [slide deck](https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/develop/documentation/user-guides/Beverley%20-%20P%26G%20CCO%20Modernization%20Brief.pptx). + +image -***IMPORTANT NOTE*** -Starting with version 2.0, CCO IRIs are using a new namespace and have opaque local identifiers for all ontology elements. -See [here](https://github.com/CommonCoreOntology/CommonCoreOntologies/tree/develop/documentation/mapping-new-iris) for the mapping file. ## What is CCO? diff --git a/documentation/briefs/NSOF CCO Modernization Brief.pdf b/documentation/briefs/NSOF CCO Modernization Brief.pdf new file mode 100644 index 00000000..02329e30 Binary files /dev/null and b/documentation/briefs/NSOF CCO Modernization Brief.pdf differ diff --git a/documentation/user-guides/Beverley - P&G CCO Modernization Brief.pptx b/documentation/user-guides/Beverley - P&G CCO Modernization Brief.pptx new file mode 100644 index 00000000..1298316c Binary files /dev/null and b/documentation/user-guides/Beverley - P&G CCO Modernization Brief.pptx differ diff --git a/no_multiple_parents.sparql b/no_multiple_parents.sparql new file mode 100644 index 00000000..918c0501 --- /dev/null +++ b/no_multiple_parents.sparql @@ -0,0 +1,43 @@ +# Title: +# No multiple inheritance +# Constraint Description: +# Classes have at most one immediate asserted parent. +# Severity: +# Error + +PREFIX rdf: +PREFIX rdfs: +PREFIX owl: + +SELECT ?class ?label + (COUNT(DISTINCT ?parent) AS ?parentCount) + (GROUP_CONCAT(DISTINCT STR(?parentLabel); separator=" | ") AS ?parentLabels) + ?warningMessage +WHERE { + ?class a owl:Class ; + rdfs:label ?label ; + rdfs:subClassOf ?parent . + + FILTER (!ISBLANK(?class)) . + FILTER (!ISBLANK(?parent)) . + FILTER (?parent != owl:Thing) . + FILTER (?parent != owl:Nothing) . + FILTER (?parent != ?class) . + + ?parent a owl:Class . + + OPTIONAL { + ?parent rdfs:label ?parentLabel . + } + + BIND ( + CONCAT( + "Warning: Class ", + STR(?label), + " has too many direct asserted superclass parents." + ) + AS ?warningMessage + ) +} +GROUP BY ?class ?label ?warningMessage +HAVING (COUNT(DISTINCT ?parent) > 2) \ No newline at end of file diff --git a/owl_classes_not_rdf_classes.sparql b/owl_classes_not_rdf_classes.sparql new file mode 100644 index 00000000..3557596a --- /dev/null +++ b/owl_classes_not_rdf_classes.sparql @@ -0,0 +1,30 @@ +# Title: +# No rdfs:Class only owl:Class +# Constraint Description: +# Classes must be declared using owl:Class rather than rdfs:Class +# Severity: +# Error + +PREFIX rdf: +PREFIX rdfs: +PREFIX owl: + +SELECT ?class ?label ?warningMessage +WHERE { + ?class a rdfs:Class . + + FILTER (!ISBLANK(?class)) . + + OPTIONAL { + ?class rdfs:label ?label . + } + + BIND ( + CONCAT( + "Warning: Entity ", + COALESCE(STR(?label), STR(?class)), + " is declared as rdfs:Class. Use owl:Class instead." + ) + AS ?warningMessage + ) +} \ No newline at end of file diff --git a/src/cco-extensions/README.md b/src/cco-extensions/README.md index 5bc5033c..08c1bacd 100644 --- a/src/cco-extensions/README.md +++ b/src/cco-extensions/README.md @@ -4,4 +4,6 @@ This directory contains extensions of CCO. ## The Contents of this Repository -* **Modal Relations Ontology** - The file contains modal counterparts to the object and data properties contained in CCO files and the bfo-core file. \ No newline at end of file +* **Modal Relations Ontology** - The file contains modal counterparts to the object and data properties contained in CCO files and the bfo-core file. +* **Barcode Ontology** - This ontology is designed to represent barcode information content entities. +* **Familial Relations Ontology** - This ontology is designed to represent familial relationships. \ No newline at end of file diff --git a/src/cco-extensions/candidates/MilitaryRanksOntology.owl b/src/cco-extensions/candidates/MilitaryRanksOntology.owl new file mode 100644 index 00000000..46f53492 --- /dev/null +++ b/src/cco-extensions/candidates/MilitaryRanksOntology.owl @@ -0,0 +1,63977 @@ + + + + It is well understood by the curator of this ontology that naval forces, including the U.S. Navy and British Royal Navy, use the term 'rate' rather than 'rank' for all sailors below the commissioned officers in the chain of command. + +That said, the entities referred to as 'rates' do not differ, ontologically, in kind from ranks. The enlisted rates of sailors in the Navy determine the order of precedence of those sailors within the Navy, and so they are properly classified as ranks. + +Similar points apply to the classification of Chief Petty Officer and Petty Officer rates under the class 'Non-Commissioned Officer Rank'. For instance, the British Navy does not refer to its Petty Officers and Chief Petty Officers as non-commissioned officers. But ontologically speaking, they fit the definition of non-commissioned officer, and so that is why they are so classified. + Barry Smith + Shane Babcock + The Military Ranks Ontology is an ontology of military ranks and the authority roles, duties and responsibilities associated with those ranks. It also covers related entities: information content entities such as promotion recommended lists, commissions, and eligibility requirements for advancement in rank; classes representing the promotion process. It is an extension of the Common Core Ontologies and the Joint Doctrine Ontology. + Various term labels make use of official abbreviations used within U.S. Armed Forces regulations. This was necessary to avoid overly lengthy labels in various cases. + +USAR = United States Army Reserve +RA = United States Regular Army +ARNG = Army National Guard + +REGEAF = (US) Regular Air Force +AFR = Air Force Reserve +ANG = Air National Guard + + + + + + + + + + + + + Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification. + Really of interest to developers only + BFO OWL specification label + + + + + + + + + Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2 + Person:Alan Ruttenberg + Really of interest to developers only + BFO CLIF specification label + + + + + + + + + editor preferred term + + The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English) + PERSON:Daniel Schober + GROUP:OBI:<http://purl.obolibrary.org/obo/obi> + + editor preferred term + + + + + + + + example + example of usage + + A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold. + PERSON:Daniel Schober + GROUP:OBI:<http://purl.obolibrary.org/obo/obi> + + example of usage + + + + + + + + has curation status + PERSON:Alan Ruttenberg + PERSON:Bill Bug + PERSON:Melanie Courtot + OBI_0000281 + has curation status + + + + + + + + definition + + The official OBI definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions. + The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions. + 2012-04-05: +Barry Smith + +The official OBI definition, explaining the meaning of a class or property: 'Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions' is terrible. + +Can you fix to something like: + +A statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property. + +Alan Ruttenberg + +Your proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can't be evaluated by those criteria. + +On the specifics of the proposed definition: + +We don't have definitions of 'meaning' or 'expression' or 'property'. For 'reference' in the intended sense I think we use the term 'denotation'. For 'expression', I think we you mean symbol, or identifier. For 'meaning' it differs for class and property. For class we want documentation that let's the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let's the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The 'intended reader' part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. + +Personally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. + +We also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. + PERSON:Daniel Schober + GROUP:OBI:<http://purl.obolibrary.org/obo/obi> + + definition + definition + textual definition + + + + + + + + editor note + + An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology. + PERSON:Daniel Schober + GROUP:OBI:<http://purl.obfoundry.org/obo/obi> + GROUP:OBI:<http://purl.obofoundry.org/obo/obi> + + editor note + + + + + + + + term editor + + Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people + 20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115. + PERSON:Daniel Schober + GROUP:OBI:<http://purl.obolibrary.org/obo/obi> + + term editor + + + + + + + + alternative term + + An alternative name for a class or property which means the same thing as the preferred name (semantically equivalent) + PERSON:Daniel Schober + GROUP:OBI:<http://purl.obolibrary.org/obo/obi> + + alternative term + + + + + + + + definition source + + Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007 + formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007 + PERSON:Daniel Schober + Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w + Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w + GROUP:OBI:<http://purl.obolibrary.org/obo/obi> + + definition source + + + + + + + + curator note + + An administrative note of use for a curator but of no use for a user + PERSON:Alan Ruttenberg + + curator note + + + + + + + + imported from + + For external terms/classes, the ontology from which the term was imported + PERSON:Alan Ruttenberg + PERSON:Melanie Courtot + GROUP:OBI:<http://purl.obolibrary.org/obo/obi> + + imported from + + + + + + + + elucidation + person:Alan Ruttenberg + Person:Barry Smith + Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms + + elucidation + + + + + + + + has associated axiom(nl) + Person:Alan Ruttenberg + Person:Alan Ruttenberg + An axiom associated with a term expressed using natural language + + has associated axiom(nl) + + + + + + + + has associated axiom(fol) + Person:Alan Ruttenberg + Person:Alan Ruttenberg + An axiom expressed in first order logic using CLIF syntax + + has associated axiom(fol) + + + + + + + + has axiom id + Person:Alan Ruttenberg + Person:Alan Ruttenberg + A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI + + has axiom label + + + + + + + + An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context. + temporal interpretation + https://github.com/oborel/obo-relations/wiki/ROAndTime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + An Alternative Label that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology + SI unit label + + + + + + + + + An Acronym that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology + SI unit symbol + + + + + + + + + An Alternative Label that consists of a shortened or abbreviated form of the rdfs:label and is used to denote the entity. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + acronym + + + + + + + + + A term or phrase that may be used in place of the stated rdfs:label to denote the entity in question. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + alternative label + + + + + + + + The name and description of the license under which the .owl file is released. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + code license + + + + + + + + The name and description of the license under which the ideas, concepts and other informational content expressed in the .owl file are released. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + content license + + + + + + + + An assertion of copyright + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + copyright + + + + + + + + A natural language explication of the meaning of the term. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + definition + + + + + + + + A citation of where all or some of the information used to create the term's Definition was acquired from. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + definition source + + + + + + + + A name or other identifier that is used to designate an individual. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + designator annotation + + + + + + + + An Acronym that is used by a Doctrinal Source to denote the entity. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + doctrinal acronym + + + + + + + + + A Definition that is taken directly from a Doctrinal Source. + There is only one definition for any given term in an ontology; however, a Doctrinal Definition may be provided in addition to the asserted Definition if the preservation of this information is important. When both a Definition and a Doctrinal Definition are provided for a term, the Definition takes precedence. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + doctrinal definition + + + + + + + + + An Alternative Label that consists of the preferred term or phrase used by a Doctrinal Source to denote the entity. + When the cco:doctrinal_label is identical to the rdfs:label, the cco:doctrinal_label annotation is superfluous. As a subclass of 'alternative label', 'doctrinal label' is intended to be used to provide additional information about the entity when its preferred doctrinal designator is ambiguous or otherwise inappropriate for use as the rdfs:label. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + doctrinal label + + + + + + + + + A Definition Source that consists of a formalized doctrine in which the term is authoritatively defined. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + doctrinal source + + + + + + + + + A clarification or further explanation of a term beyond what is included in the Definition or which is used when the term is primitive such that no non-circular definition can be given for it. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + elucidation + + + + + + + + A phrase, sentence or set of terms intended to convey the conventional usage of the term. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + example of usage + + + + + + + + A relation between an information content entity and a widely used measurement unit of the token used to express it. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + has token unit + + + + + + + + The text of an HTTP request that can be sent to a SPARQL Protocol service. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + http query string + + + + + + + + A interval measurement value of an instance of a quality, realizable or process profile + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + interval measurement annotation + + + + + + + + + An annotation property that links a class, property, or named individual to the URI of the ontology where it is located. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + is curated in ontology + + + + + + + + A relation between an information content entity and a widely used token used to express it. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + is tokenized by + + + + + + + + A measurement value of an instance of a quality, reazlizable or process profile + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + measurement annotation + + + + + + + + A nominal measurement value of an instance of a quality, realizable or process profile + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + nominal measurement annotation + + + + + + + + + An ordinal measurement value of an instance of a quality, realizable or process profile + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + ordinal measurement annotation + + + + + + + + + The text of a query that is associated with a class + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + query text + + + + + + + + A ratio measurement value of an instance of a quality, realizable or process profile + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + ratio measurement annotation + + + + + + + + + The name of the Term Editor who added the term to the ontology. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + term creator + + + + + + + + + The name of a person who contributed to the development or enhancement of the term. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + term editor + + + + + + + + + + + + + + + + + + + + label + + + + + + + + + + + + + + rank group + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + is part of + my brain is part of my body (continuant parthood, two material entities) + my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity) + this day is part of this year (occurrent parthood) + a core relation that holds between a part and its whole + Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other. + Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime + Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) + +A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'. + part_of + + + + + + + + + + + + + part of + + + http://www.obofoundry.org/ro/#OBO_REL:part_of + + + + + + + + + + has part + my body has part my brain (continuant parthood, two material entities) + my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity) + this year has part this day (occurrent parthood) + a core relation that holds between a whole and its part + Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part. + Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime + Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.) + +A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'. + has_part + + + + + has part + + + + + + + + + + + + + realized in + this disease is realized in this disease course + this fragility is realized in this shattering + this investigator role is realized in this investigation + is realized by + realized_in + [copied from inverse property 'realizes'] to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003]) + Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process + + realized in + + + + + + + + + + + + realizes + this disease course realizes this disease + this investigation realizes this investigator role + this shattering realizes this fragility + to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003]) + Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process + + realizes + + + + + + + + + + + occurs in + b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t + b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s� where & b spatially_projects_onto s at t& c is occupies_spatial_region s� at t& s is a proper_continuant_part_of s� at t + occurs_in + unfolds in + unfolds_in + + + + Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant + + occurs in + + + + + + + + site of + [copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t + [copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s� where & b spatially_projects_onto s at t& c is occupies_spatial_region s� at t& s is a proper_continuant_part_of s� at t + Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant + + contains process + + + + + + + + + has measurement unit label + + + + + + + + + + metadata complete + Relates a process to a time-measurement-datum that represents the duration of the process + Alan Ruttenberg + is duration of + + + + + + + + + inheres in + this fragility inheres in this vase + this red color inheres in this apple + a relation between a specifically dependent continuant (the dependent) and an independent continuant (the bearer), in which the dependent specifically depends on the bearer for its existence + A dependent inheres in its bearer at all times for which the dependent exists. + inheres_in + + inheres in + + + + + + + + + bearer of + this apple is bearer of this red color + this vase is bearer of this fragility + a relation between an independent continuant (the bearer) and a specifically dependent continuant (the dependent), in which the dependent specifically depends on the bearer for its existence + A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist. + bearer_of + is bearer of + + bearer of + + + + + + + + + + + + + participates in + this blood clot participates in this blood coagulation + this input material (or this output material) participates in this process + this investigator participates in this investigation + a relation between a continuant and a process, in which the continuant is somehow involved in the process + participates_in + participates in + + + + + + + + + + + + has participant + this blood coagulation has participant this blood clot + this investigation has participant this investigator + this process has participant this input material (or this output material) + a relation between a process and a continuant, in which the continuant is somehow involved in the process + Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time. + has_participant + http://www.obofoundry.org/ro/#OBO_REL:has_participant + has participant + + + + + + + + + + + + + A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant). + An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process). + A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants. + is concretized as + + + + + + + + + + + + A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant). + An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process). + A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant. + concretizes + + + + + + + + + + + this catalysis function is a function of this enzyme + a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence + A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists. + function_of + is function of + function of + + + + + + + + + + this red color is a quality of this apple + a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence + A quality inheres in its bearer at all times for which the quality exists. + is quality of + quality_of + quality of + + + + + + + + + + this investigator role is a role of this person + a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence + A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists. + is role of + role_of + role of + + + + + + + + + + + this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function) + a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence + A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists. + has_function + has function + + + + + + + + + + this apple has quality this red color + a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence + A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist. + has_quality + has quality + + + + + + + + + + + this person has role this investigator role (more colloquially: this person has this role of investigator) + a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence + A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists. + has_role + has role + + + + + + + + + + + + a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence + has disposition + + + + + + + + + inverse of has disposition + + disposition of + + + + + + + + + the surface of my skin is a 2D boundary of my body + a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity + A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts. + Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape. + 2D_boundary_of + boundary of + is 2D boundary of + is boundary of + + 2D boundary of + + + + + + + + + + my body has 2D boundary the surface of my skin + a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity + A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts. + Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape. + David Osumi-Sutherland + has boundary + has_2D_boundary + + has 2D boundary + + + + + + + + + + An organism that is a member of a population of organisms + is member of is a mereological relation between a item and a collection. + is member of + member part of + SIO + + member of + + + + + + + + + + has member is a mereological relation between a collection and an item. + SIO + + has member + + + + + + + + + + + Genetic information generically depend on molecules of DNA. + The novel *War and Peace* generically depends on this copy of the novel. + The pattern shared by chess boards generically depends on any chess board. + The score of a symphony g-depends on a copy of the score. + This pdf file generically depends on this server. + A generically dependent continuant *b* generically depends on an independent continuant *c* at time *t* means: there inheres in *c* a specifically deendent continuant which concretizes *b* at *t*. + [072-ISO] + g-depends on + generically depends on + + + + + + + + + + Molecules of DNA are carriers of genetic information. + This copy of *War and Peace* is carrier of the novel written by Tolstoy. + This hard drive is carrier of these data items. + *b* is carrier of *c* at time *t* if and only if *c* *g-depends on* *b* at *t* + [072-ISO] + is carrier of + + + + + + + + + + x agent_in y iff y is an instance of Process and x is an instance of Agent, such that x is causally active in y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + agent in + + + + + + + + + + + + + + + + + + x aggregate_bearer_of y iff x is an instance of Object Aggregate and y is an instance of Specifically Dependent Continuant and z is an instance of Object, such that z bearer of y, and all other members of x are bearers of a unique instance of the same type as y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + aggregate bearer of + + + + + + + + + + + + x aggregate_has_capability y iff x is an instance of Object Aggregate and y is an instance of Agent Capability, such that x is aggregate bearer of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + aggregate has capability + + + + + + + + + + + + x aggregate_has_disposition y iff x is an instance of Object Aggregate and y is an instance of Disposition, such that x aggregate_bearer_of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + aggregate has disposition + + + + + + + + + + + x aggregate_has_quality y iff x is an instance of Object Aggregate and y is an instance of Quality, such that x aggregate_bearer_of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + aggregate has quality + + + + + + + + + + + x aggregate_has_role y iff x is an instance of Object Aggregate and y is an instance of Role, such that x aggregate_bearer_of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + aggregate has role + + + + + + + + + + + + x capability_of y iff y is an instance of Agent and x is an instance of Agent Capability, such that x inheres in y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + capability of + + + + + + + + + + + x capability_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Agent Capability, such that x inheres in aggregate y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + capability of aggregate + + + + + + + + + + + x caused_by y iff x and y are instances of occurrents, and x is a consequence of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + caused by + + + + + + + + + + + + An immaterial entity im1 is connected with some immaterial entity im2 iff there exists some immaterial entity im3 that is common to both im1 and im2. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology + connected with + + + + + + + + + + + + + An instance of Geopolitical Entity gpe1 delimits some Organization o1 iff gpe1 is the area within which o1 can legally operate. + http://en.wikipedia.org/wiki/Delimitation + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + delimits + + + + + + + + + + + x described_by y iff y is an instance of Information Content Entity, and x is an instance of Entity, such that y is about the characteristics by which y can be recognized or visualized. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + described by + + + + + + + + + + x describes y iff x is an instance of Information Content Entity, and y is an instance of Entity, such that x is about the characteristics by which y can be recognized or visualized. + the content of a newspaper article describes some current event + the content of a visitor's log describes some facility visit + the content of an accident report describes some accident + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + It is possible that this relation should be a functional property, that is for all x, y, z if x describes y and x describes z then y = z. For example, if a financial report x describes the quarterly results of a company y and that same financial report describes the quarterly results of a company z, then it should be inferred that companies y and z are the same. We refrained from classifying the relation as a functional property on the concern that descriptions are multifaceted and so consequently it may be that the same report would contain descriptions of multiple entities. + describes + + + + + + + + + + + + x designated_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that given some context, y uniquely distinguishes x from other entities. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + designated by + + + + + + + + + + + x designates y iff x is an instance of an Information Content Entity, and y is an instance of an Entity, such that given some context, x uniquely distinguishes y from other entities. + a URL designates the location of a Web Page on the internet + a person's name designates that person + a vehicle identification number designates some vehicle + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + designates + + + + + + + + + + + x disposition_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Disposition, such that x disposition_of_aggregate y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + disposition of aggregate + + + + + + + + + + + + + + + + + + + + + + + + + + + x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + has affiliate + + + + + + + + + x has_agent y iff x is an instance of Process and y is an instance of Agent, such that y is causally active in x. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + has agent + + + + + + + + + + + x has_capability y iff x is an instance of Agent and y is an instance of Agent Capability, such that x bearer of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + has capability + + + + + + + + + + + + y has_input x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the begining of y is a necessary condition for the start of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + has input + + + + + + + + + + + + A Temporal Interval INT2 has inside interval some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + has inside interval + + + + + + + + + + An instance of an Object Aggregate 'has member of located in' an instance of some material entity if and only if every member of that Aggregate is located in the same instance of that material entity. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + has member of located in + + + + + + + + + + If p is a process and c is a continuant, then p has object c if and only if the c is part of the projected state that the agent intends to achieve by performing p. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + has object + + + + + + + + + + + x has_organizational_context y iff y is an instance of an Organization and x is an instance of a Role and z is an instance of a Person, such that z's affiliation with y is a prerequisite for z bearing x or y ascribes x to the bearer of x. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + has organizational context + + + + + + + + + + + + y has_output x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y. + https://en.wikipedia.org/wiki/IPO_model + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + has output + + + + + + + + + + + + x has_process_part y iff x and y are instances of Process, such that y occurs during the temporal interval of x, and y either provides an input to x or receives an output of x, or both. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + has process part + + + + + + + + + + + + + + y has_spatial_part x iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology + has spatial part + + + + + + + + + + + For all x,y,t: x has subordinate role y at t iff: x is an instance of bfo:BFO_0000023 (Role) at time t, and y is an instance of bfo:BFO_0000023 (Role) at time t, and there is some z such that x is realized by z and z is an instance of Act which creates, modifies, transfers, or eliminates some u such that u is an Action Regulation at time t, and u is addressed to the bearer of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + has subordinate role + + + + + + + + + + + + An Organization o1 has_subsidiary Organization o2 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies. + http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + has subsidiary + + + + + + + + + + + + + + + + + x inheres_in_aggregate y iff x is an instance of Specifically Dependent Continuant and y is an instance of Object Aggregate and z is an instance of Object, such that z bearer_of x, and all other members of y are bearers of a unique instance of the same type as x. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + inheres in aggregate + + + + + + + + + + + + A Temporal Interval INT1 is contained by some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, inst2 is before or identical to inst4, and it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + interval contained by + + + + + + + + + + + A Temporal Interval INT2 contains some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, and inst2 is before or identical to inst4, but it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + interval contains + + + + + + + + + + + + + + + + + A Temporal Interval INT1 is during some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + interval during + + + + + + + + + + + + A Temporal Interval INT2 is finished by some Temporal Interval INT1 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + interval finished by + + + + + + + + + + + A Temporal Interval INT1 finishes some Temporal Interval INT2 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + interval finishes + + + + + + + + + + + + A Temporal Interval INT2 is started by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + interval started by + + + + + + + + + + + A Temporal Interval INT1 starts some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + interval starts + + + + + + + + + + + + x is_a_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + This object property, as well as all of its children are typified as functional properties. This means that for instances x, y, and z if x is a measurement of y and x is a measurement of z, then y = z. + is a measurement of + + + + + + + + + + + A primitive relationship between an Information Content Entity and some Entity. + http://purl.obolibrary.org/obo/IAO_0000136 + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + is about + + + + + + + + + + + + + + + + + + + + + + + + + + x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + is affiliated with + + + + + + + + + + x is_cause_of y iff x and y are instances of occurrents, and y is a consequence of x. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + is cause of + + + + + + + + + + + + An instance of Organization o1 is_delimited_by some Geopolitical Entity gpe1 iff gpe1 is the area within which o1 can legally operate. + http://en.wikipedia.org/wiki/Delimitation + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + is delimited by + + + + + + + + + + + x is_input_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the begining of y is a necessary condition for the start of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + is input of + + + + + + + + + + + y is_measured_by x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + is measured by + + + + + + + + + If p is a process and c is a continuant, then c is object of p if and only if the c is part of the projected state that the agent intends to achieve by performing p. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + is object of + + + + + + + + + + x is_organizational_context_of y iff x is an instance of an Organization and y is an instance of a Role and z is an instance of a Person, such that z's affiliation with x is a prerequisite for z bearing y, or x ascribes y to the bearer of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + is organizational context of + + + + + + + + + + + x is_output_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + is output of + + + + + + + + + + + x is_part_of_process y iff x and y are instances of Process, such that x occurs during the temporal interval of y, and x either provides an input to y or receives an output of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + is part of process + + + + + + + + + + + + + + y is_permitted_by x at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent may be agent in y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + is permitted by + + + + + + + + + + + + + + y is_prohibited_by y at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent must not be agent in y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + is prohibited by + + + + + + + + + + + + + + y is_required_by x at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent must be agent in y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + is required by + + + + + + + + + + + + + + + + + + + x is_site_of y iff x is an instance of Site and y is an instance of Process, such that y occurs in x. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + is site of + + + + + + + + + A primitive relationship between an instance of an Entity and an instance of an Information Content Entity. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + is subject of + + + + + + + + + + For all x,y,t: y is subordinate role to x at t iff: x is an instance of bfo:BFO_0000023 (Role) at time t, and y is an instance of bfo:BFO_0000023 (Role) at time t, and there is some z such that x is realized by z and z is an instance of Act which creates, modifies, transfers, or eliminates some u such that u is an Action Regulation at time t, and u is addressed to the bearer of y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + is subordinate role to + + + + + + + + + + + An Organization o2 is_subsidiary_of Organization o1 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies. + http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html) + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + is subsidiary of + + + + + + + + + + + + A person p1 is supervised by a person p2 by virtue of p1 being directed, managed, or overseen by p2. + http://en.wiktionary.org/wiki/supervise) + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + is supervised by + + + + + + + + + + + x is_temporal_region_of y iff y is an instance of a process or process boundary and x is an instance of a temporal region, such that the duration of x temporally projects on y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + is temporal region of + + + + + + + + + + + + + + + + + + x occurs_at y iff x is an instance of Process and y is an instance of Site, such that x occurs in y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + occurs at + + + + + + + + + + x occurs_on y iff x is an instance of a process or process boundary and y is an instance of a temporal region, such that the duration of x temporally projects on y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + occurs on + + + + + + + + + + + + + x permits y at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent may be agent in y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + permits + + + + + + + + + + + x prescribed_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that y serves as a rule or guide for x if x is an Occurrent, or y serves as a model for x if x is a Continuant. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + prescribed by + + + + + + + + + + x prescribes y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x serves as a rule or guide for y if y an Occurrent, or x serves as a model for y if y is a Continuant. + a blueprint serves as a model of some Artifact or Facility + a professional code of conduct serves as a set of rules to be followed while acting in a role within that profession + an Operations Plan serves as a guide for the tasks that need to be performed to achieve the Objectives of the Operation + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + prescribes + + + + + + + + + + + + + x prohibits y at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent must not be agent in y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + prohibits + + + + + + + + + + + x quality_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Quality, such that x disposition_of_aggregate y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + quality of aggregate + + + + + + + + + + + + x represented_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that y presents the characteristics by which x can be recognized or visualized, and there exists a one-to-one correspondence between the components of x and y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + represented by + + + + + + + + + + + x represents y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x presents the characteristics by which y can be recognized or visualized, and there exists a one-to-one correspondence between the components of x and y. + The relationship that is being defined here is that between the content of a photographic image and its object, between the content of a video and its objects and events, between the content of an audio recording and the sounds or events generating those sounds, or between the content of a written transcript and the verbal event that it transcribes. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + represents + + + + + + + + + + + + + x requires y at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent must be agent in y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + requires + + + + + + + + + + + x role_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Role, such that x disposition_of_aggregate y. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology + role of aggregate + + + + + + + + + + + + + + + + + A person p1 supervises a person p2 by virtue of p1 directing, managing, or overseeing p2. + http://en.wiktionary.org/wiki/supervise + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + supervises + + + + + + + + + + + y uses_measurement_unit x iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y. + uses measurement unit + + + + + + + + This relation will eventually should be placed under 'is subject of', but need further guidance from CCO. + +It is not descriptive. But it is not designative, because when x designates y, x uniquely distinguishes y from other entities. But the same NATO code is used for different ranks. + has NATO Rank Scale Code + + + + + + + + + has U.S. uniformed services pay grade + + + + + + + + + + + has military rank + + + + + + + + + + + is superordinate to + For all x,y,t: x has subordinate person y at t iff: x is an instance of Person at time t, and y is an instance of Person at time t, and x is the bearer of some bfo:BFO_0000023 (Role) z at time t such that z has subordinate role some bfo:BFO_0000023 (Role) u at time t, and y is the bearer of u at time t. + Person x has subordinate-person Person y at t means: x and y at t have roles z and u, respectively, and z has subordinate role u. + has subordinate-person + + + + + + + + + + + For all x,y,t: x has subordinate military rank y at t iff: x is an instance of Military Rank at time t, and y is an instance of Military Rank at time t, and x describes some bfo:BFO_0000023 (Role) z at time t such that z has subordinate role some bfo:BFO_0000023 (Role) u at time t, and y describes u at time t. + Shane Babcock + Military Rank x has subordinate military rank Military Rank y means: x and y describe roles z and u, respectively, and z has subordinate role u. + The 'has subordinate rank' is not equivalent to the broader relation of being higher in rank. The 'has subordinate rank' relation does not hold between each succession of rank. For instance, cases where rank 1 is directly above rank 2 in a particular armed force, but there is no relation of authority. Where we have two non-commanding ranks where one is higher only because it has greater responsibilities. For instance, the low level Air Force ranks of Airman Basic, Airman, and Airman First Class. + has subordinate military rank + + + + + + + + I say 'participant in y' because in some cases, the agent is only a patient (rather than causually active) in y. For instance, a student is agent in the Acts by which she earns the A grade, but only the teacher is an agent in the act of giving the student the A grade. + x is a requirement condition for y at t iff x is an instance of Action Regulation at time t, y is an instance of Act at a later time u, and there is some z such that z is an instance of Act at t, and x prescribes that some agent must be agent in z in order for that agent to be particant in y at u. + The New York State driver's license requirement (x) is a requirement condition for me to drive unattended (y). x requires me to take a road test and obtain my driver's license (z) before I can drive unnattended. + is a requirement condition for + + + + + + + + + + + For example, it is said that a full admiral in the navy is equivalent in rank to a full general in the army. + +Need to flesh out the exact way in which ranks across separate forces are equivalent in authority. They have similar level of authority and responsibility, but obviously not the same exact responsibilities (given that they command different types of military forces). + has equal rank to + Could define along the lines of rank1 is equivalent in rank to rank 2 if: + +rank1 has same level of authority/responsibility as rank2 + +But this requires cashing out and classifying the notion of 'level of authority' (which I also think may need to be added to the definition of 'military rank'). + is equivalent in rank to + + + + + + + + + + + + x is higher military rank than y iff the authority or responsibilities described by x are greater than the authority or responsibilities described by y. + I don't think that standing in this relation implies in all cases a subordination relation (e.g. ranks with a non-command role) + Talk about precedence. + is higher military rank than + + + + + + + + + + + x is lower military rank than y iff the authority or responsibilities described by x are lesser than the authority or responsibilities described by y. + is lower military rank than + + + + + + + + + + + + x is military rank directly above y iff the authority or responsibilities described by x are the next highest in the chain of command after the authority or responsibilities described by y. + Responsibilities increase with each successive rank. So a general ranks directly above a lieutenant general because after the lieutenant general, the general has the next highest level of responsibility in the chain of command. + This relation holds between two ranks within the same military service (e.g. between 'Air Force General Rank' and 'Air Force Lieutenant General Rank'.) + +But we also need to be able to say that an Army General is one rank higher than the ranks of an Air Force Lieutenant General, Marine Corps Lieutenant General, Space Force Lieutenant General, as well as Navy Vice Admiral. Which is why I created the parent class 'is one rank higher than'. Saying that a rank is directly above another seems to imply (to me at least) a closer relationship, such as that between ranks within the same service. That said, I am willing to be convinced otherwise, in which case we would obsolete 'is one rank higher than' and only use 'is military rank directly above'. + is military rank directly above + + + + + + + + + + + x is military rank directly below y iff the authority or responsibilities described by y are the next highest in the chain of command after the authority or responsibilities described by x. + Responsibilities increase with each successive rank. So a lieutenant general ranks directly below a general because after the lieutenant general, the general has the next highest level of responsibility in the chain of command. + is military rank directly below + + + + + + + + + + + is military rank of + + + + + + + + + + + + This class was introduced so that we can assert axioms such as: + +Air Force Lieutenant General Rank isSubClassof: + +'is one rank higher' than SOME 'Marine Corps Major General Rank' + +'is one rank higher' than SOME 'Army Major General Rank' + +Given the transitivity of the parent class 'is higher military rank than', a DL query of, for example: + +'is higher military rank than' SOME 'Army Major General Rank' + +will return as results not only all of the Army ranks that are higher than 'Army Major General', but also all of the ranks within the other services that outrank 'Army Major General'. + +Technically, axioms involving 'is military rank directly above' could be used to achieve the same purpose, but I thought that relation should be distinguished from this one. See comment on that class. + is one military rank higher than + + + + + + + + + + + Where x is a Military Rank within military service branch t, y is a Military Rank within another military service branch u, z is some Military Rank within u which is equivalent in rank to x, and w is some Military Rank within t which is equivalent in rank to y: + +x is one rank below y iff: + +i) z is one rank below y. +and: +ii) x is one rank below w. + +Take for instance, the rank of Specialist (x) within the U.S. Army (t) and its equivalent rank of Senior Airman (z) within the Air Force (u). Senior Airman (z) is one rank below the rank of Staff Sergeant (y) within the Air Force. But the rank of U.S. Army Specialist (x) is not one rank below the Air Force Staff Sergeant Rank (y) because U.S. Army Specialist is not one rank below U.S. Army Sergeant (w) which is the equivalent of Air Force Staff Sergeant. + +--------------- + +Or: + +Where x is a Military Rank within military service branch t, y is a Military Rank within another military service branch u, z is some Military Rank within u which is equivalent in rank to x, and w is some Military Rank within t which is equivalent in rank to y: + +x is one rank below y iff: + +i) x is one rank below w +and: +ii) there is no intermediary rank between z and y within u. + +Let y be the rank of Army Sergeant within the Army (u), which is equivalent in rank to the Staff Sergeant rank (w) within the Air Force (t). The Air Force Senior Airman rank (x) is equivalent in rank to the Army Specialist rank (z), and the Senior Airman rank (x) is one rank below the Staff Sergeant Rank (w). But Senior Airman (x) is not one rank below Army Sergeant (y) because within the Army (u) there is an intermediary rank, Army Corporal, between Army Specialist (z) and Army Sergeant (y). Thus, Senior Airman is two ranks below Army Sergeant as it is equivalent to a rank two ranks below Army Sergeant. + +By contrast, consider the rank of Navy Seaman (x), and let y be the rank of Marine Corps Corporal within the Marine Corps (u), which is equivalent to the rank of Petty Officer Third Class (w) within the the Navy (t). The Navy Seaman Rank (x) is equivalent in rank to the Marine Corps Lance Corporal Rank (z), and the Navy Seaman Rank is one rank below Petty Officer Third Class (w). Furthermore, there is no intermediary rank between M.C. Lance Corporal (z) and M.C. Corporal (y) within the Marine Corps (u). And so Navy Seaman is one rank below M.C. Corporal because its Marine Corps equivalent is one rank below M.C. Corporal. + +The above principle has the complementary principle: + +Let y be the rank of Army Corporal within the Army (u), which is equivalent in rank to the Marine Corps Corporal rank (w) within the Marine Corps (t). The rank of Marine Corps Lance Corporal (x) is equivalent in rank to the Private First Class Rank (z) within the Army, and Marine Corps Lance Corporal (x) is one rank below the rank of Marine Corps Corporal (w). But Marine Corps Lance Corporal is not one rank below the Army Corporal rank (y). And this is because there is an intermediary rank, namely Army Specialist, between Army Private First Class (z) and Army Corporal (y). Thus, Marine Corps Lance Corporal is two ranks below Army Corporal (it being one rank below Army Specialist, which is one rank below Army Corporal). + +This principle is also applicable to the ranks of Navy and Coast Guard Seaman, which are also equivalent to Army Private First Class. These ranks are both one rank below the Navy and Coast Guard Petty Officer Third Class Ranks, the latter of which are both equivalents of the Army Corporal Rank. But the Navy and Coast Guard Seaman Ranks are two ranks below Army Corporal rank for the same reasons as above. + +------------- + +Where x is a Military Rank within military service branch t, + y is a Military Rank within another military service branch u, + z is some Military Rank within u which is equivalent in rank to x, + w is some Military Rank within t which is equivalent in rank to y, z is one rank below y, + and there is no Military Rank within t which is equivalent in rank to y: + +x is one rank below y iff: + +There is no rank v within t, such that v is a higher rank than x and v is a lower rank lower than y. + +Thus consider the Air Force Airman First Class Rank (x) within the Air Force (t), and the rank of Marine Corps Corporal (y) in the Marine Corps (u). There is no military rank within the Air Force that is equivalent in rank to the Marine Corps Corporal Rank. The Lance Corporal Rank (z) is the military rank within the Marine Corps (u) which is equivalent in rank to the Airman First Class rank (x), and the Lance Corporal Rank (z) is one rank below the Marine Corps Corporal Rank (y). But the Airman First Class rank is not one rank lower than the Marine Corps Corporal rank because there is a rank v, namely the Air Force Senior Airman Rank that is one rank higher than Airman First Class and one rank lower than Marine Corps Corporal. And for that reason, although its Marine Corps equivalent, the Lance Corporal rank, is one rank lower than the Marine Corps Corporal rank, the Airman First Class is TWO ranks lower than Marine Corps Corporal rank. + +Consider by contrast the rank of Senior Airman (x) within the Air Force (t) and its relation to the rank of Army Corporol (y) within the Army (u). There is no military rank within the Air Force which is equivalent in rank to the Army Corporal rank. Within the Army (u) the rank of Army Specialist (z) is equivalent in rank to the Senior Airman Rank (x), and Army Specialist (z) is one rank below the rank of Army Corporal (y). But there is no rank v within the Air Force that is higher than Senior Airman and lower than Army Corporal. And so Senior Airman is one rank below that of Army Corporal. + is one military rank lower than + + + + + + + + + + + For all x,y,t: y is person subordinate to x at t iff: x is an instance of Person at time t, and y is an instance of Person at time t, and y is the bearer of some bfo:BFO_0000023 (Role) z at time t such that z is subordinate role to some bfo:BFO_0000023 (Role) u at time t, and x is the bearer of u at time t. + Person x is person subordinate to Person y at t means: x and y at t have roles z and u, respectively, and z is subordinate role to u. + is person subordinate to + + + + + + + + + + For all x,y,t: x is military rank subordinate to y at t iff: x is an instance of Military Rank at time t, and y is an instance of Military Rank at time t, and x describes some bfo:BFO_0000023 (Role) z at time t such that z is subordinate role to some bfo:BFO_0000023 (Role) u at time t, and y describes u at time t. + Military Rank x is military rank subordinate to Military Rank y means: x and y describe roles z and u, respectively, and z is subordinate role to u. + is military rank subordinate to + + + + + + + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + has integer value + + + + + + + + + + + + + + Act of U.S. Military Service wherein some Person serves as a member of the U.S. Air Force. + Act of U.S. Air Force Service + + + + + + + + + Act of U.S. Military Service wherein some Person serves as a member of the U.S. Coast Guard. + Act of U.S. Coast Guard Service + + + + + + + + + + + + + + + + + + + Act of U.S. Navy Service wherein some Person serves in the O-10 pay grade, at the U.S. Navy Admiral Rank. + Act of U.S. Navy Service at Pay Grade O-10 + + + + + + + + + + + + + + + + + + + Act of U.S. Navy Service wherein some Person serves in the O-8 pay grade, at the U.S. Navy Rear Admiral Rank. + Act of U.S. Navy Service at Pay Grade O-8 + + + + + + + + + + + + + + + + + + + Act of U.S. Navy Service wherein some Person serves in the O-9 pay grade, at the U.S. Navy Vice Admiral Rank. + Act of U.S. Navy Service at Pay Grade O-9 + + + + + + + + + Act of U.S. Military Service wherein some Person serves as a member of the U.S. Space Force. + Act of U.S. Space Force Service + + + + + + + + + entity + Entity + Julius Caesar + Verdi’s Requiem + the Second World War + your body mass index + BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81 + Entity doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example Werner Ceusters 'portions of reality' include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, 'How to track absolutely everything' at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf + An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001]) + + entity + + + + + Entity doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example Werner Ceusters 'portions of reality' include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, 'How to track absolutely everything' at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf + + per discussion with Barry Smith + + + + + + An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001]) + + + + + + + + + + + + + + + + + continuant + Continuant + An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts. + BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240 + Continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster's other portions of reality, questions are raised as to whether universals are continuants + A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002]) + if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001]) + if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002]) + if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002]) + (forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] + (forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] + (forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] + (forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] + + continuant + + + + + Continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster's other portions of reality, questions are raised as to whether universals are continuants + + + + + + A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002]) + + + + + + if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001]) + + + + + + if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002]) + + + + + + if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002]) + + + + + + (forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] + + + + + + (forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] + + + + + + (forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] + + + + + + (forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] + + + + + + + + + + + + + + + + occurrent + Occurrent + An entity that has temporal parts and that happens, unfolds or develops through time. + BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region + BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players. + Occurrent doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process. + Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by 'spn[e]' and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write 'spr[e]' and `spl[e]' respectively for the spread and spell of e, omitting mention of the frame. + An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002]) + Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001]) + b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001]) + (forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] + (forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] + + occurrent + + + + + Occurrent doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process. + + per discussion with Barry Smith + + + + + Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by 'spn[e]' and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write 'spr[e]' and `spl[e]' respectively for the spread and spell of e, omitting mention of the frame. + + + + + + An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002]) + + + + + + Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001]) + + + + + + b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001]) + + + + + + (forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] + + + + + + (forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] + + + + + + + + + + + + ic + IndependentContinuant + a chair + a heart + a leg + a molecule + a spatial region + an atom + an orchestra. + an organism + the bottom right portion of a human torso + the interior of your mouth + A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything. + b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002]) + For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001]) + For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002]) + (forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] + (forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] + (iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] + + independent continuant + + + + + b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002]) + + + + + + For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001]) + + + + + + For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002]) + + + + + + (forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] + + + + + + (forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] + + + + + + (iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] + + + + + + + + + + + + s-region + SpatialRegion + BFO 2 Reference: Spatial regions do not participate in processes. + Spatial region doesn't have a closure axiom because the subclasses don't exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn't overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional. + A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001]) + All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001]) + (forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] + (forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] + + spatial region + + + + + Spatial region doesn't have a closure axiom because the subclasses don't exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn't overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional. + + per discussion with Barry Smith + + + + + A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001]) + + + + + + All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001]) + + + + + + (forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] + + + + + + (forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] + + + + + + + + + + + + + t-region + TemporalRegion + Temporal region doesn't have a closure axiom because the subclasses don't exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn't overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional + A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001]) + All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001]) + Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002]) + (forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] + (forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] + (forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] + + temporal region + + + + + Temporal region doesn't have a closure axiom because the subclasses don't exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn't overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional + + per discussion with Barry Smith + + + + + A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001]) + + + + + + All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001]) + + + + + + Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002]) + + + + + + (forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] + + + + + + (forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] + + + + + + (forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] + + + + + + + + + + + 2d-s-region + TwoDimensionalSpatialRegion + an infinitely thin plane in space. + the surface of a sphere-shaped part of space + A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001]) + (forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] + + two-dimensional spatial region + + + + + A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001]) + + + + + + (forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] + + + + + + + + + + st-region + SpatiotemporalRegion + the spatiotemporal region occupied by a human life + the spatiotemporal region occupied by a process of cellular meiosis. + the spatiotemporal region occupied by the development of a cancer tumor + A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001]) + All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001]) + Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001]) + Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001]) + Every spatiotemporal region occupies_spatiotemporal_region itself. + Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002]) + (forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] + (forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] + (forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] + (forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] + (forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] + + spatiotemporal region + + + + + A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001]) + + + + + + All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001]) + + + + + + Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001]) + + + + + + Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001]) + + + + + + Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002]) + + + + + + (forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] + + + + + + (forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] + + + + + + (forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] + + + + + + (forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] + + + + + + (forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] + + + + + + + + + + process + Process + a process of cell-division, \ a beating of the heart + a process of meiosis + a process of sleeping + the course of a disease + the flight of a bird + the life of an organism + your process of aging. + An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. + p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003]) + BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war) + (iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] + + process + + + + + p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003]) + + + + + + (iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] + + + + + + + + + + + disposition + Disposition + an atom of element X has the disposition to decay to an atom of element Y + certain people have a predisposition to colon cancer + children are innately disposed to categorize objects in certain ways. + the cell wall is disposed to filter chemicals in endocytosis and exocytosis + BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type. + b is a disposition means: b is a realizable entity & b’s bearer is some material entity & b is such that if it ceases to exist, then its bearer is physically changed, & b’s realization occurs when and because this bearer is in some special physical circumstances, & this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002]) + If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002]) + (forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] + (forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] + + disposition + + + + + b is a disposition means: b is a realizable entity & b’s bearer is some material entity & b is such that if it ceases to exist, then its bearer is physically changed, & b’s realization occurs when and because this bearer is in some special physical circumstances, & this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002]) + + + + + + If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002]) + + + + + + (forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] + + + + + + (forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] + + + + + + + + + + + realizable + RealizableEntity + the disposition of this piece of metal to conduct electricity. + the disposition of your blood to coagulate + the function of your reproductive organs + the role of being a doctor + the role of this boundary to delineate where Utah and Colorado meet + A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances. + To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002]) + All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002]) + (forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] + (forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] + + realizable entity + + + + + (forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] + + + + + + To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002]) + + + + + + All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002]) + + + + + + (forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] + + + + + + + + + + + 0d-s-region + ZeroDimensionalSpatialRegion + A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001]) + (forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] + + zero-dimensional spatial region + + + + + A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001]) + + + + + + (forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] + + + + + + + + + + quality + Quality + the ambient temperature of this portion of air + the color of a tomato + the length of the circumference of your waist + the mass of this piece of gold. + the shape of your nose + the shape of your nostril + a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001]) + If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001]) + (forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] + (forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] + + quality + + + + + a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001]) + + + + + + If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001]) + + + + + + (forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] + + + + + + (forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] + + + + + + + + + + + sdc + SpecificallyDependentContinuant + Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key + of one-sided specifically dependent continuants: the mass of this tomato + of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates. + the disposition of this fish to decay + the function of this heart: to pump blood + the mutual dependence of proton donors and acceptors in chemical reactions [79 + the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction + the pink color of a medium rare piece of grilled filet mignon at its center + the role of being a doctor + the shape of this hole. + the smell of this portion of mozzarella + A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same. + b is a relational specifically dependent continuant = Def. b is a specifically dependent continuant and there are n &gt; 1 independent continuants c1, … cn which are not spatial regions are such that for all 1 i &lt; j n, ci and cj share no common parts, are such that for each 1 i n, b s-depends_on ci at every time t during the course of b’s existence (axiom label in BFO2 Reference: [131-004]) + b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003]) + Specifically dependent continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. We're not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc. + (iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] + + specifically dependent continuant + + + + + b is a relational specifically dependent continuant = Def. b is a specifically dependent continuant and there are n &gt; 1 independent continuants c1, … cn which are not spatial regions are such that for all 1 i &lt; j n, ci and cj share no common parts, are such that for each 1 i n, b s-depends_on ci at every time t during the course of b’s existence (axiom label in BFO2 Reference: [131-004]) + + + + + + b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003]) + + + + + + Specifically dependent continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. We're not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc. + + per discussion with Barry Smith + + + + + (iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] + + + + + + + + + + role + Role + John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married. + the priest role + the role of a boundary to demarcate two neighboring administrative territories + the role of a building in serving as a military target + the role of a stone in marking a property boundary + the role of subject in a clinical trial + the student role + A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts. + BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives. + b is a role means: b is a realizable entity & b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be& b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001]) + (forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] + + role + + + + + b is a role means: b is a realizable entity & b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be& b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001]) + + + + + + (forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] + + + + + + + + + + fiat-object-part + FiatObjectPart + or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29 + the FMA:regional parts of an intact human body. + the Western hemisphere of the Earth + the division of the brain into regions + the division of the planet into hemispheres + the dorsal and ventral surfaces of the body + the upper and lower lobes of the left lung + BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions + b is a fiat object part = Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004]) + (forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] + + fiat object part + + + + + b is a fiat object part = Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004]) + + + + + + (forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] + + + + + + + + + + + 1d-s-region + OneDimensionalSpatialRegion + an edge of a cube-shaped portion of space. + A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001]) + (forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] + + one-dimensional spatial region + + + + + A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001]) + + + + + + (forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] + + + + + + + + + + object-aggregate + ObjectAggregate + a collection of cells in a blood biobank. + a swarm of bees is an aggregate of members who are linked together through natural bonds + a symphony orchestra + an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team) + defined by fiat: the aggregate of members of an organization + defined through physical attachment: the aggregate of atoms in a lump of granite + defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container + defined via attributive delimitations such as: the patients in this hospital + the aggregate of bearings in a constant velocity axle joint + the aggregate of blood cells in your body + the nitrogen atoms in the atmosphere + the restaurants in Palo Alto + your collection of Meissen ceramic plates. + An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects + BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee). + ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, 'A Theory of Granular Partitions', in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158. + b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004]) + (forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (= y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] + + object aggregate + + + + + An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects + + + + + + An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects + + + + + + ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, 'A Theory of Granular Partitions', in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158. + + + + + + b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004]) + + + + + + (forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (= y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] + + + + + + + + + + 3d-s-region + ThreeDimensionalSpatialRegion + a cube-shaped region of space + a sphere-shaped region of space, + A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001]) + (forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] + + three-dimensional spatial region + + + + + A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001]) + + + + + + (forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] + + + + + + + + + + site + Site + Manhattan Canyon) + a hole in the interior of a portion of cheese + a rabbit hole + an air traffic control region defined in the airspace above an airport + the Grand Canyon + the Piazza San Marco + the cockpit of an aircraft + the hold of a ship + the interior of a kangaroo pouch + the interior of the trunk of your car + the interior of your bedroom + the interior of your office + the interior of your refrigerator + the lumen of your gut + your left nostril (a fiat part – the opening – of your left nasal cavity) + b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002]) + (forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] + + site + + + + + b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002]) + + + + + + (forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] + + + + + + + + + + object + Object + atom + cell + cells and organisms + engineered artifacts + grain of sand + molecule + organelle + organism + planet + solid portions of matter + star + BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting. + BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below). + BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47 + BFO 2 Reference: an object is a maximal causally unified material entity + BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74 + b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above & is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001]) + + object + + + + + b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above & is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001]) + + + + + + + + + + gdc + GenericallyDependentContinuant + The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity. + the pdf file on your laptop, the pdf file that is a copy thereof on my laptop + the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule. + A continuant that is dependent on one or other independent continuant bearers. For every instance of A requires some instance of (an independent continuant type) B but which instance of B serves can change from time to time. + Continuant that is dependent on one or other independent continuant bearers. For every instance of A requires some instance of (an independent continuant type) B but which instance of B serves can change from time to time. + b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001]) + (iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] + + generically dependent continuant + + + + + b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001]) + + + + + + (iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] + + + + + + + + + + function + Function + the function of a hammer to drive in nails + the function of a heart pacemaker to regulate the beating of a heart through electricity + the function of amylase in saliva to break down starch into sugar + BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc. + A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001]) + (forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] + + function + + + + + A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001]) + + + + + + (forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] + + + + + + + + + + p-boundary + ProcessBoundary + the boundary between the 2nd and 3rd year of your life. + p is a process boundary =Def. p is a temporal part of a process & p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001]) + Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002]) + (forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] + (iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] + + process boundary + + + + + p is a process boundary =Def. p is a temporal part of a process & p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001]) + + + + + + Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002]) + + + + + + (forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] + + + + + + (iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] + + + + + + + + + + + 1d-t-region + OneDimensionalTemporalRegion + the temporal region during which a process occurs. + BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks). + A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001]) + (forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] + + one-dimensional temporal region + + + + + A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001]) + + + + + + (forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] + + + + + + + + + + + material + MaterialEntity + a flame + a forest fire + a human being + a hurricane + a photon + a puff of smoke + a sea wave + a tornado + an aggregate of human beings. + an energy wave + an epidemic + the undetached arm of a human being + An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time. + BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60 + BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity. + BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here. + A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002]) + Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002]) + every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002]) + (forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] + (forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] + (forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] + + material entity + + + + + A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002]) + + + + + + Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002]) + + + + + + every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002]) + + + + + + (forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] + + + + + + (forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] + + + + + + (forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] + + + + + + + + + + cf-boundary + ContinuantFiatBoundary + b is a continuant fiat boundary = Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001]) + BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions. + BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29 + Continuant fiat boundary doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn't overlap it. The situation is analogous to temporal and spatial regions. + Every continuant fiat boundary is located at some spatial region at every time at which it exists + (iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] + + continuant fiat boundary + + + + + b is a continuant fiat boundary = Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001]) + + + + + + Continuant fiat boundary doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn't overlap it. The situation is analogous to temporal and spatial regions. + + + + + + (iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] + + + + + + + + + + immaterial + ImmaterialEntity + BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10 + + immaterial entity + + + + + + + + + + + 1d-cf-boundary + OneDimensionalContinuantFiatBoundary + The Equator + all geopolitical boundaries + all lines of latitude and longitude + the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin. + the median sulcus of your tongue + a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001]) + (iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] + + one-dimensional continuant fiat boundary + + + + + a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001]) + + + + + + (iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] + + + + + + + + + + + process-profile + ProcessProfile + On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels + One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance. + The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on. + b is a process_profile =Def. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002]) + b process_profile_of c holds when b proper_occurrent_part_of c& there is some proper_occurrent_part d of c which has no parts in common with b & is mutually dependent on b& is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005]) + (forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] + (iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] + + process profile + + + + + b is a process_profile =Def. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002]) + + + + + + b process_profile_of c holds when b proper_occurrent_part_of c& there is some proper_occurrent_part d of c which has no parts in common with b & is mutually dependent on b& is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005]) + + + + + + (forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] + + + + + + (iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] + + + + + + + + + + 2d-cf-boundary + TwoDimensionalContinuantFiatBoundary + a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001]) + (iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] + + two-dimensional continuant fiat boundary + + + + + a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001]) + + + + + + (iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] + + + + + + + + + + 0d-cf-boundary + ZeroDimensionalContinuantFiatBoundary + the geographic North Pole + the point of origin of some spatial coordinate system. + the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet + zero dimension continuant fiat boundaries are not spatial points. Considering the example 'the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet' : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona. + a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001]) + (iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] + + zero-dimensional continuant fiat boundary + + + + + zero dimension continuant fiat boundaries are not spatial points. Considering the example 'the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet' : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona. + + requested by Melanie Courtot + + + + + + a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001]) + + + + + + (iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] + + + + + + + + + + 0d-t-region + ZeroDimensionalTemporalRegion + a temporal region that is occupied by a process boundary + right now + the moment at which a child is born + the moment at which a finger is detached in an industrial accident + the moment of death. + temporal instant. + A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001]) + (forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] + + zero-dimensional temporal region + + + + + A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001]) + + + + + + (forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] + + + + + + + + + + history + History + A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001]) + + history + + + + + A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001]) + + + + + + + + + + Bangladesh Navy Able Seaman Rank + + + + + + + + + Bangladesh Navy Acting Sub-lieutenant Rank + + + + + + + + + Bangladesh Navy Admiral Rank + + + + + + + + + Bangladesh Navy Captain Rank + + + + + + + + + Bangladesh Navy Chief Petty Officer Rank + + + + + + + + + Bangladesh Navy Commander Rank + + + + + + + + + https://en.wikipedia.org/wiki/Military_ranks_of_Bangladesh#Commissioned_officers + Bangladesh Navy Commissioned Officer Rank + + + + + + + + + Bangladesh Navy Commodore Rank + + + + + + + + + Bangladesh Navy Flag Officer Rank + + + + + + + + + Bangladesh Navy Junior Commissioned Officer Rank + + + + + + + + + Bangladesh Navy Junior Enlisted Rank + + + + + + + + + Bangladesh Navy Junior Officer Rank + + + + + + + + + Bangladesh Navy Leading Seaman Rank + + + + + + + + + Bangladesh Navy Lieutenant Commander Rank + + + + + + + + + Bangladesh Navy Lieutenant Rank + + + + + + + + + Bangladesh Navy Master Chief Petty Officer Rank + + + + + + + + + Bangladesh Navy Non-Commissioned Officer Rank + + + + + + + + + Bangladesh Navy Ordinary Seaman Rank + + + + + + + + + Bangladesh Navy Petty Officer Rank + + + + + + + + + Bangladesh Navy Rear Admiral Rank + + + + + + + + + Bangladesh Navy Senior Chief Petty Officer Rank + + + + + + + + + Bangladesh Navy Senior Officer Rank + + + + + + + + + Bangladesh Navy Sub-lieutenant Rank + + + + + + + + + Bangladesh Navy Vice Admiral Rank + + + + + + + + + Chinese officers are graded within two parallel systems. Both according to rank (Western style) and the job or Grade system. + +Ranky system has only been consistently used since 1988. + +Up until recently (2021) the Grade system took preference. There are both promotions in rank and promotions in grade. + +Note that 'grade' doesn't mean here the same as it means in the U.S. military, clearly. + +Info from: https://www.youtube.com/watch?v=6vRLXC-hhXo&list=WL&index=11 + Chinese Army Commissioned Officer Rank + + + + + + + + + Chinese Army Company Grade Commissioned Officer Rank + + + + + + + + + Chinese Army Field Grade Commissioned Officer Rank + + + + + + + + + Chinese Army General Officer Rank + + + + + + + + + Chinese Army Senior Colonel Rank + There are only 3 general officers in the Chinese Army, and 4 Field grade ranks, which is different than most militaries. So this rank is technically mapped to the Brigadier General Rank in the U.S. Army, but it is not a general officer rank. + +Chinese: Da xiao + Chinese Army Great Field Officer Rank + + + + + + + + + They are typically technical specialists, or administrators. + +Have taken over many jobs given to officers in the past, serving as technicians in units. + +Intermediate NCOs have obtained a senior technical degree, which can be obtained in an army NCO school. + +From: https://www.youtube.com/watch?v=6vRLXC-hhXo&list=WL&index=11 + Chinese Army Intermediate Non-Commissioned Officer Rank + + + + + + + + + Chinese Army 2nd Lieutenant Rank + Equivalent to the rank of 2nd Lieutenant in U.S. Army. + +Chinese: Shao wei + Chinese Army Junior Company Officer Rank + + + + + + + + + Rank is only given after completing boot camp, so should perhaps make this a variant rank. + Will not normally need to know about the details of higher ranks. See this video: https://www.youtube.com/watch?v=6vRLXC-hhXo&list=WL&index=11 + +Suggests that the chain of command is not that important for the junior soldiers in the Chinese Army. In contrast with the expectation of Western armies that the junior enlisted know the chain of command--and in the case of the U.S., the NCO support channel) + Chinese Army Junior Enlisted Rank + + + + + + + + + Chinese Army Major Rank + Equivalent to the rank of Major in U.S. Army. + +Chinese: Shao xiao + Chinese Army Junior Field Officer Rank + + + + + + + + + Chinese Army Major General Rank + Chinese: Shao jiang + Chinese Army Junior General Rank + + + + + + + + + They fill junior leadership roles, but this is a relatively new phenomenon in Chinese military. Prior to the late 1990's, 2nd year conscripts typically filled small unit leadership roles instead. + +By regulation junior NCOs need at least a high school equivalent education. + +Information taken from: https://www.youtube.com/watch?v=6vRLXC-hhXo&list=WL&index=11 + Chinese Army Junior Non-Commissioned Officer Rank + + + + + + + + + Chinese Army Corporal Rank + Chinese: Xia shi + Lowest Junior NCO rank. Sometimes translated as corporal (reflecting more common term for lowest NCO). + +Usually hold junior leadership roles such as deputy squad commander, or the driver on infantry fighting vehicles. + +Eligible for promotion to sergeant after 3 years. + +https://www.youtube.com/watch?v=6vRLXC-hhXo&list=WL&index=11 + Chinese Army Junior Sergeant Rank + + + + + + + + + Chinese: Yi ji jun shi zhang + Chinese Army Master Sergeant 1st Class Rank + + + + + + + + + Chinese: Er ji jun shi zhang + Chinese Army Master Sergeant 2nd Class Rank + + + + + + + + + Chinese: San ji jun shi zhang + Chinese Army Master Sergeant 3rd Class Rank + + + + + + + + + Chinese: Si ji jun shi zhang + Chinese Army Master Sergeant 4th Class Rank + + + + + + + + + Chinese Army First Lieutenant Rank + Equivalent to the rank of 1st Lieutenant in U.S. Army. + +Chinese: Zhong wei + Chinese Army Middle Company Officer Rank + + + + + + + + + Chinese Army Lieutenant Colonel Rank + Equivalent to the rank of Lieutenant Colonel in U.S. Army. + +Chinese: Zhong xiao + Chinese Army Middle Field Officer Rank + + + + + + + + + Chinese Army Lieutenant General Rank + Chinese: Zhong jiang + Chinese Army Middle General Rank + + + + + + + + + Chinese Army Non-Commissioned Officer Rank + + + + + + + + + Typically held during first year of service as a conscript. + +Chinese: Lie bing + Chinese Army Private Rank + + + + + + + + + Chinese Army Captain Rank + Equivalent to the rank of Captain in U.S. Army. + +Chinese: Shang wei + Chinese Army Senior Company Officer Rank + + + + + + + + + Chinese Army Colonel Rank + Equivalent to the rank of Colonel in U.S. Army. + +Chinese: Shang xiao + Chinese Army Senior Field Officer Rank + + + + + + + + + Chinese Army General Rank + Chinese: Shang jiang + Chinese Army Senior General Rank + + + + + + + + + They are typically technical specialists, or administrators. + +Senior NCOs have obtained a Bachelors degree (likely must be obtained through civilian institutions unlike technical degree obtained by intermediate NCOs in army NCO schools). + +Have taken over many jobs given to officers in the past, serving as technicians in units. + +From: https://www.youtube.com/watch?v=6vRLXC-hhXo&list=WL&index=11 + +{he mentions squad leaders being elevated to chief NCO roles in their units...Later he makes clear that Sergeants have the role of squad leader.} + Chinese Army Senior Non-Commissioned Officer Rank + + + + + + + + + Chinese Army Private First Class Rank + Typically in their 2nd year as a conscript soldier. + +If they qualify they can volunteer to become Junior NCOs in their second term of service (first term being those served as junior enlisted soldier). + +Chinese: Shang deng bing + Chinese Army Senior Private Rank + + + + + + + + + Chinese: Shang shi + Typically the chief NCO within an infantry company. + Chinese Army Senior Sergeant Rank + + + + + + + + + Chinese: Zhong shi + Usually fills squad leader billets, as usual for this sort of rank. + Chinese Army Sergeant Rank + + + + + + + + + + + + + + + Used in calvary and armour units. + +Equivalent to 'Lance Naik' rank used in infantry and other arms units. + +https://en.wikipedia.org/wiki/Army_ranks_and_insignia_of_India#Non_commissioned_officers + Indian Army Acting Lance Daffadar Rank + + + + + + + + + Indian Army Brigadier Rank + + + + + + + + + Indian Army Captain Rank + + + + + + + + + Indian Army Colonel Rank + + + + + + + + + Indian Army Commissioned Officer Rank + + + + + + + + + + + + + + + Used in calvary and armour units. + +Equivalent to 'Havildar' rank used in infantry and other arms units. + +https://en.wikipedia.org/wiki/Army_ranks_and_insignia_of_India#Non_commissioned_officers + Indian Army Daffadar Rank + + + + + + + + + Indian Army Field Marshal Rank + + + + + + + + + Indian Army General Rank + + + + + + + + + + + + + + + Indian Army Sergeant Rank + Used in infantry and other arms units. + +Equivalent to 'Daffadar' rank used in calvary and armour units. + +https://en.wikipedia.org/wiki/Army_ranks_and_insignia_of_India#Non_commissioned_officers + Indian Army Havildar Rank + + + + + + + + + "Junior commissioned officers are promoted from non-commissioned officers and are broadly equivalent to warrant officers in Western armies. Senior non-commissioned officers are promoted to JCO rank on the basis of merit and seniority, restricted by the number of vacancies. In between the Commissioned Officer and the NCOs lies the Junior Commissioned Officers. They are treated with great respect as they have a minimum of 28 yrs and over service and are referred to as Sahab by all ranks." + +https://en.wikipedia.org/wiki/Army_ranks_and_insignia_of_India#Junior_commissioned_officers + Indian Army Junior Commissioned Officer Rank + + + + + + + + + Indian Army Junior Enlisted Rank + + + + + + + + + + + + + + + Used in calvary and armour units. + +Equivalent to 'Naik' rank used in infantry and other arms units. + +https://en.wikipedia.org/wiki/Army_ranks_and_insignia_of_India#Non_commissioned_officers + Indian Army Lance Daffadar Rank + + + + + + + + + + + + + + + Used in infantry and other arms units. + +Equivalent to 'Acting Lance Daffadar' rank used in calvary and armour units. +https://en.wikipedia.org/wiki/Army_ranks_and_insignia_of_India#Non_commissioned_officers + Indian Army Lance Naik Rank + + + + + + + + + Indian Army Lieutenant Colonel Rank + + + + + + + + + Indian Army Lieutenant General Rank + + + + + + + + + Indian Army Lieutenant Rank + + + + + + + + + Indian Army Major General Rank + + + + + + + + + Indian Army Major Rank + + + + + + + + + + + + + + + Indian Army Naib Risaldar Rank + + + + + + + + + + + + + + + lowest JCO + Indian Army Naib Subedar Rank + + + + + + + + + + + + + + + Equivalent to 'Corporal' in other rank systems. + Used in infantry and other arms units. + +Equivalent to 'Lance Daffadar' rank used in calvary and armour units. + +https://en.wikipedia.org/wiki/Army_ranks_and_insignia_of_India#Non_commissioned_officers + Indian Army Naik Rank + + + + + + + + + Indian Army Non-Commissioned Officer Rank + + + + + + + + + + + + + + + Indian Army Risaldar Major Rank + + + + + + + + + + + + + + + Indian Army Risaldar Rank + + + + + + + + + + + + + + + Used in infantry and other arms units. + +Equivalent to 'Sowar' rank used in calvary and armour units. + +https://en.wikipedia.org/wiki/Army_ranks_and_insignia_of_India#Soldiers + Indian Army Sepoy Rank + + + + + + + + + + + + + + + Used in calvary and armour units. + +Equivalent to 'Sepoy' rank used in infantry and other arms units. + +https://en.wikipedia.org/wiki/Army_ranks_and_insignia_of_India#Soldiers + Indian Army Sowar Rank + + + + + + + + + + + + + + + highest JCO + Indian Army Subedar Major Rank + + + + + + + + + + + + + + + 2nd highest JCO + Indian Army Subedar Rank + + + + + + + + + Indian Navy Admiral Rank + + + + + + + + + Indian Navy Admiral of the Fleet Rank + + + + + + + + + Indian Navy Captain Rank + + + + + + + + + Indian Navy Commander Rank + + + + + + + + + https://en.wikipedia.org/wiki/Naval_ranks_and_insignia_of_India + Indian Navy Commissioned Officer Rank + + + + + + + + + Indian Navy Commodore Rank + + + + + + + + + Indian Navy Flag Officer Rank + + + + + + + + + Indian Navy Junior Commissioned Officer Rank + + + + + + + + + Indian Navy Junior Enlisted Rank + + + + + + + + + Indian Navy Junior Officer Rank + + + + + + + + + Wiki says this is not an NCO, but need to make sure. + Indian Navy Leading Seaman Rank + + + + + + + + + Indian Navy Lieutenant Commander Rank + + + + + + + + + Indian Navy Lieutenant Rank + + + + + + + + + Indian Navy Master Chief Petty Officer 1st Class Rank + + + + + + + + + Indian Navy Master Chief Petty Officer 2nd Class Rank + + + + + + + + + Indian Navy Master Chief Petty Officer Rank + + + + + + + + + Indian Navy Midshipman Rank + + + + + + + + + Indian Navy Non-Commissioned Officer Rank + + + + + + + + + Indian Navy Ordinary Seaman Rank + + + + + + + + + Indian Navy Petty Officer Rank + + + + + + + + + Indian Navy Rear Admiral Rank + + + + + + + + + Indian Navy Senior Officer Rank + + + + + + + + + Indian Navy Sub-lieutenant Rank + + + + + + + + + Historically, this type of rank derives from the 'Viceroy's Commissioned Officer Rank' used in the British Indian Army. https://en.wikipedia.org/wiki/Viceroy%27s_commissioned_officer + +Junior Commissioned Officers are in a class between enlisted and full commissioned officers. In that respect, they are roughly equivalent to the Warrant Officers of the U.S. Armed Forces. https://en.wikipedia.org/wiki/Junior_commissioned_officer + Junior Commissioned Officer Rank + + + + + + + + + 'Guardian' is the general term for members of the Space Force (such as Soldier in the Army). + Time in Grade Requirement for Promotion in Military Rank that requires some U.S. Space Force Guardian to complete some temporal interval of work within their current U.S. Department of Defense Pay Grade in order to be promoted to the next higher grade of U.S. Space Force Rank. + Time in Grade Requirement for Promotion in U.S. Space Force Rank + + + + + + + + + Time in Grade Requirement for Promotion in U.S. Space Force Rank that requires a U.S. Space Force Specialist 1 to have served a minimum of 6 months at their current rank in the E-1 pay grade, in order to be automatically promoted to the U.S. Space Force Specialist 2 Rank. + https://www.military.com/space-force/enlisted-ranks.html + +Note: Definition source requires review. Need to find official documentation. + +TIG requirements were the same as that for promotion to the equivalent Air Force rank. + Time in Grade Requirement for Promotion to U.S. Space Force Specialist 2 Rank + + + + + + + + + Time in Grade Requirement for Promotion in U.S. Space Force Rank that requires a U.S. Space Force Specialist 2 to have served a minimum of 10 months at their current rank in the E-2 pay grade, in order to be {automatically?} promoted to the U.S. Space Force Specialist 3 Rank. + https://www.military.com/space-force/enlisted-ranks.html + +Note: Definition source requires review. Need to find official documentation. + +TIG requirements were the same as that for promotion to the equivalent Air Force rank. + Time in Grade Requirement for Promotion to U.S. Space Force Specialist 3 Rank + + + + + + + + + Time in Grade Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Space Force Specialist 3 to have completed either: i) a minimum of 28 months in the E-3 Pay Grade, or; ii) a minimum of 36 months time in service and a minimum of 20 months in the E-3 Pay Grade, whichever occurs first, in order to be eligible for promotion to the U.S. Sapce Force Specialist 4 Rank. + https://www.military.com/space-force/enlisted-ranks.html + +Note: Definition source requires review. Need to find official documentation. + +TIG requirements were the same as that for promotion to the equivalent Air Force rank. + Time in Grade Requirement for Promotion to U.S. Space Force Specialist 4 Rank + + + + + + + + + + + + + + + + + + + U.S. Air Force Non-Commissioned Officer Rank Insignia that bears some U.S. Air Force Chief Master Sergeant Rank. + U.S. Air Force Chief Master Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Air Force Non-Commissioned Officer Rank Insignia that bears some Chief Master Sergeant of the Air Force Rank. + U.S. Air Force Chief Master Sergeant of the Air Force Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Air Force Non-Commissioned Officer Rank Insignia that bears some U.S. Air Force Command Chief Master Sergeant Rank. + U.S. Air Force Command Chief Master Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + Commissioned Officer Rank Insignia that bears some U.S. Air Force Commissioned Officer Rank. + U.S. Air Force Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + Commissioned Officer Rank Insignia Quality Pattern, inhering in some U.S. Air Force Commissioned Officer Rank Insignia, that concretizes some U.S. Air Force Commissioned Officer Rank. + U.S. Air Force Commissioned Officer Rank Insignia Quality Pattern + + + + + + + + + + + + + + + + + + + U.S. Air Force Non-Commissioned Officer Rank Insignia that bears some U.S. Air Force Master Sergeant Rank. + U.S. Air Force Master Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + Non-Commissioned Officer Rank Insignia that bears some U.S. Air Force Non-Commissioned Officer Rank. + U.S. Air Force Non-Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Air Force Non-Commissioned Officer Rank Insignia that bears some U.S. Air Force Senior Master Sergeant Rank. + U.S. Air Force Senior Master Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Air Force Non-Commissioned Officer Rank Insignia that bears some U.S. Air Force Staff Sergeant Rank. + U.S. Air Force Staff Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Air Force Non-Commissioned Officer Rank Insignia that bears some U.S. Air Force Technical Sergeant Rank. + U.S. Air Force Technical Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Army Non-Commissioned Officer Rank Insignia that bears some U.S. Army Command Sergeant Major Rank. + U.S. Army Command Sergeant Major Rank Insignia + + + + + + + + + + + + + + + + + + + Commissioned Officer Rank Insignia that bears some U.S. Army Commissioned Officer Rank. + U.S. Army Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + Commissioned Officer Rank Insignia Quality Pattern, inhering in some U.S. Army Commissioned Officer Rank Insignia, that concretizes some U.S. Army Commissioned Officer Rank. + U.S. Army Commissioned Officer Rank Insignia Quality Pattern + + + + + + + + + + + + + + + + + + + U.S. Army Non-Commissioned Officer Rank Insignia that bears some U.S. Army Corporal Rank. + U.S. Army Corporal Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Army Non-Commissioned Officer Rank Insignia that bears some U.S. Army First Sergeant Rank. + U.S. Army First Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + Junior Enlisted Rank Insignia that bears some U.S. Army Junior Enlisted Rank. + The U.S. Army Private (E-1) wears no rank insignia. + U.S. Army Junior Enlisted Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Army Non-Commissioned Officer Rank Insignia that bears some U.S. Army Master Sergeant Rank. + U.S. Army Master Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + Non-Commissioned Officer Rank Insignia that bears some U.S. Army Non-Commissioned Officer Rank. + U.S. Army Non-Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Army Non-Commissioned Officer Rank Insignia that bears some U.S. Army Sergeant First Class Rank. + U.S. Army Sergeant First Class Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Army Non-Commissioned Officer Rank Insignia that bears some U.S. Army Sergeant Major Rank. + U.S. Army Sergeant Major Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Army Non-Commissioned Officer Rank Insignia that bears some Sergeant Major of the Army Rank. + U.S. Army Sergeant Major of the Army Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Army Non-Commissioned Officer Rank Insignia that bears some U.S. Army Sergeant Rank. + U.S. Army Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Army Junior Enlisted Rank Insignia that bears some U.S. Army Specialist Rank. + U.S. Army Specialist Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Army Non-Commissioned Officer Rank Insignia that bears some U.S. Army Staff Sergeant Rank. + U.S. Army Staff Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Non-Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Chief Petty Officer Rank. + U.S. Coast Guard Chief Petty Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Non-Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Command Master Chief Petty Officer Rank. + U.S. Coast Guard Command Master Chief Petty Officer Rank Insignia + + + + + + + + + + + + + + + + + + + Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Commissioned Officer Rank. + U.S. Coast Guard Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Non-Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Master Chief Petty Officer Rank. + U.S. Coast Guard Master Chief Petty Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Non-Commissioned Officer Rank Insignia that bears some Master Chief Petty Officer of the Coast Guard Rank. + U.S. Coast Guard Master Chief Petty Officer of the Coast Guard Rank Insignia + + + + + + + + + + + + + + + + + + + Non-Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Non-Commissioned Officer Rank. + U.S. Coast Guard Non-Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Non-Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Petty Officer First Class Rank. + U.S. Coast Guard Petty Officer First Class Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Non-Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Petty Officer Second Class Rank. + U.S. Coast Guard Petty Officer Second Class Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Non-Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Petty Officer Third Class Rank. + U.S. Coast Guard Petty Officer Third Class Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Non-Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Senior Chief Petty Officer Rank. + U.S. Coast Guard Senior Chief Petty Officer Rank Insignia + + + + + + + + + + + + + + + + + + + Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Commissioned Officer Rank. + U.S. Marine Corps Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Corporal Rank. + U.S. Marine Corps Corporal Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Rank Insignia that bears some U.S. Marine Corps First Sergeant Rank. + U.S. Marine Corps First Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Gunnery Sergeant Rank. + U.S. Marine Corps Gunnery Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + Junior Enlisted Rank Insignia that bears some U.S. Marine Corps Junior Enlisted Rank. + The U.S. Marine Corps Private (E-1) wears no rank insignia. + U.S. Marine Corps Junior Enlisted Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Master Gunnery Sergeant Rank. + U.S. Marine Corps Master Gunnery Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Master Sergeant Rank. + U.S. Marine Corps Master Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + Non-Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Non-Commissioned Officer Rank. + U.S. Marine Corps Non-Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Sergeant Major Rank. + U.S. Marine Corps Sergeant Major Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Rank Insignia that bears some Sergeant Major of the Marine Corps Rank. + U.S. Marine Corps Sergeant Major of the Marine Corps Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Sergeant Rank. + U.S. Marine Corps Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Staff Sergeant Rank. + U.S. Marine Corps Staff Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Seaman Apprentice Rank Insignia that bears the U.S. Navy Seaman Apprentice Rank and which indicates that its wearer belongs to the Navy's aviation community. + A black square-shaped insignia with two diagonal green stripes. [See: https://en.wikipedia.org/wiki/Seaman_apprentice] + U.S. Navy Airman Apprentice Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Seaman Rank Insignia that bears the U.S. Navy Seaman Rank and which indicates that its wearer belongs to the Navy's aviation community. + A black square-shaped insignia with three diagonal green stripes. See: https://en.wikipedia.org/wiki/Seaman_(rank)#United_States + U.S. Navy Airman Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Navy Non-Commissioned Officer Rank Insignia that bears some U.S. Navy Chief Petty Officer Rank. + U.S. Navy Chief Petty Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Navy Non-Commissioned Officer Rank Insignia that bears some U.S. Navy Command Master Chief Petty Officer Rank. + There are variations on this rank insignia. Need to check whether these are insignia representing a particular Command Master Chief Petty Officer role, as opposed to a separate rank. + +See: https://www.defense.gov/Resources/Insignia/ + U.S. Navy Command Master Chief Petty Officer Rank Insignia + + + + + + + + + + + + + + + + + + + Commissioned Officer Rank Insignia that bears some U.S. Navy Commissioned Officer Rank. + U.S. Navy Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Seaman Apprentice Rank Insignia that bears the U.S. Navy Seaman Apprentice Rank and which indicates that its wearer belongs to the Navy's Seabees (construction) community. + A black square-shaped insignia with two diagonal light blue stripes. [See: https://en.wikipedia.org/wiki/Seaman_apprentice] + U.S. Navy Constructionman Apprentice Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Seaman Rank Insignia that bears the U.S. Navy Seaman Rank and which indicates that its wearer belongs to the Navy's Seabees (construction) community. + A black square-shaped insignia with three diagonal light blue stripes. See: https://en.wikipedia.org/wiki/Seaman_(rank)#United_States + U.S. Navy Constructionman Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Seaman Apprentice Rank Insignia that bears the U.S. Navy Seaman Apprentice Rank and which indicates that its wearer belongs to the Navy's engineering and hull community. + A black square-shaped insignia with two diagonal red stripes. [See: https://en.wikipedia.org/wiki/Seaman_apprentice] + U.S. Navy Fireman Apprentice Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Seaman Rank Insignia that bears the U.S. Navy Seaman Rank and which indicates that its wearer belongs to the Navy's engineering and hull community. + A black square-shaped insignia with three diagonal red stripes. See: https://en.wikipedia.org/wiki/Seaman_(rank)#United_States + U.S. Navy Fireman Rank Insignia + + + + + + + + + not sure about this one + U.S. Navy Hospitalman Apprentice Rank Insignia + + + + + + + + + U.S. Navy Hospitalman Rank Insignia + + + + + + + + + + + + + + + + + + + E-1 U.S. Navy Seaman Recruits wear no rank insignia. + +Some of the subclasses of this class will require review. + +Sailors holding the Seaman Apprentice (E-2) and Seaman (E-3) wear slightly different rank insignia depending upon the rating (or job) community to which they belong. These communities include: + +the deck and administration community, +engineering and hull community (firemen), +hospital corpsmen community, +aviation community (airmen), +Seabees community (constructionmen). + +The same basic stripe pattern is used. The difference lies in the color of the stripes. + Junior Enlisted Rank Insignia that bears some U.S. Navy Junior Enlisted Rank + U.S. Navy Junior Enlisted Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Navy Non-Commissioned Officer Rank Insignia that bears some U.S. Navy Master Chief Petty Officer Rank. + There are variations on this rank insignia. Need to check whether these are insignia representing a particular Master Chief Petty Officer role, as opposed to a separate rank. + +See: https://www.defense.gov/Resources/Insignia/ + U.S. Navy Master Chief Petty Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Navy Non-Commissioned Officer Rank Insignia that bears some Master Chief Petty Officer of the Navy Rank. + U.S. Navy Master Chief Petty Officer of the Navy Rank Insignia + + + + + + + + + + + + + + + + + + + Non-Commissioned Officer Rank Insignia that bears some U.S. Navy Non-Commissioned Officer Rank + U.S. Navy Non-Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Navy Non-Commissioned Officer Rank Insignia that bears some U.S. Navy Petty Officer First Class Rank. + U.S. Navy Petty Officer First Class Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Navy Non-Commissioned Officer Rank Insignia that bears some U.S. Navy Petty Officer Second Class Rank. + U.S. Navy Petty Officer Second Class Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Navy Non-Commissioned Officer Rank Insignia that bears some U.S. Navy Petty Officer Third Class Rank. + U.S. Navy Petty Officer Third Class Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Seaman Apprentice Rank Insignia that bears the U.S. Navy Seaman Apprentice Rank and which indicates that its wearer belongs to the Navy's general deck and administrative community. + A black square-shaped insignia with two diagonal white stripes. [See: https://en.wikipedia.org/wiki/Seaman_apprentice] + U.S. Navy Seaman Apprentice Deck and Administrative Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Navy Junior Enlisted Rank Insignia that bears some U.S. Navy Seaman Apprentice Rank. + U.S. Navy Seaman Apprentice Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Seaman Rank Insignia that bears the U.S. Navy Seaman Rank and which indicates that its wearer belongs to the Navy's general deck and administrative community. + A black square-shaped insignia with three diagonal white stripes. See: https://en.wikipedia.org/wiki/Seaman_(rank)#United_States + U.S. Navy Seaman Deck and Administrative Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Navy Junior Enlisted Rank Insignia that bears some U.S. Navy Seaman Rank. + U.S. Navy Seaman Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Navy Non-Commissioned Officer Rank Insignia that bears some U.S. Navy Senior Chief Petty Officer Rank. + U.S. Navy Senior Chief Petty Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Non-Commissioned Officer Rank Insignia that bears some U.S. Space Force Chief Master Sergeant Rank. + U.S. Space Force Chief Master Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Non-Commissioned Officer Rank Insignia that bears some Chief Master Sergeant of the Space Force Rank. + U.S. Space Force Chief Master Sergeant of the Space Force Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Non-Commissioned Officer Rank Insignia that bears some U.S. Space Force Command Chief Master Sergeant Rank. + U.S. Space Force Command Chief Master Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + Commissioned Officer Rank Insignia that bears some U.S. Space Force Commissioned Officer Rank. + U.S. Space Force Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + Junior Enlisted Rank Insignia that bears some U.S. Space Force Junior Enlisted Rank. + The U.S. Space Force is unique amongst the services in assigning a rank insignia for its E-1 grade junior enlisted personnel. + U.S. Space Force Junior Enlisted Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Non-Commissioned Officer Rank Insignia that bears some U.S. Space Force Master Sergeant Rank. + U.S. Space Force Master Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + Non-Commissioned Officer Rank Insignia that bears some U.S. Space Force Non-Commissioned Officer Rank. + U.S. Space Force Non-Commissioned Officer Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Non-Commissioned Officer Rank Insignia that bears some U.S. Space Force Senior Master Sergeant Rank. + U.S. Space Force Senior Master Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Non-Commissioned Officer Rank Insignia that bears some U.S. Space Force Sergeant Rank. + U.S. Space Force Sergeant Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Junior Enlisted Rank Insignia that bears some U.S. Space Force Specialist 1 Rank. + U.S. Space Force Specialist 1 Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Junior Enlisted Rank Insignia that bears some U.S. Space Force Specialist 2 Rank. + U.S. Space Force Specialist 2 Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Junior Enlisted Rank Insignia that bears some U.S. Space Force Specialist 3 Rank. + U.S. Space Force Specialist 3 Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Junior Enlisted Rank Insignia that bears some U.S. Space Force Specialist 4 Rank. + U.S. Space Force Specialist 4 Rank Insignia + + + + + + + + + + + + + + + + + + + U.S. Space Force Non-Commissioned Officer Rank Insignia that bears some U.S. Space Force Technical Sergeant Rank. + U.S. Space Force Technical Sergeant Rank Insignia + + + + + + + + + 2 years in O-1. Based on AFI 36-2504 + Time in Grade Requirement for Promotion to U.S. Air Force Captain Rank (AFR) + + + + + + + + + TIG is 5yrs. Note that this is 3 years longer than in the US AFR and the REGAF. + Time in Grade Requirement for Promotion to U.S. Air Force Captain Rank (ANG) + + + + + + + + + TIG is 3 yrs at O-5 (the same as in REGAF): AFI 36-2504 + Time in Grade Requirement for Promotion to U.S. Air Force Colonel Rank (AFR) + + + + + + + + + TIG is 3 yrs at O-5 (the same as in REGAF): AFI 36-2504 + Time in Grade Requirement for Promotion to U.S. Air Force Colonel Rank (ANG) + + + + + + + + + TIG at O-1 is 2 years. Note that this is longer than the 18 months required by US Code 619. + +Based on AFI 36-2501 (link broken). + +See https://www.rand.org/paf/projects/dopma-ropma/promotion-and-appointments/promotion-timing-zones-and-opportunity.html + Time in Grade Requirement for Promotion to U.S. Air Force First Lieutenant (REGAF) + + + + + + + + + 2 years in O-1. Based on AFI 36-2504 + Time in Grade Requirement for Promotion to U.S. Air Force First Lieutenant Rank (AFR) + + + + + + + + + 2 years in O-1. Based on AFI 36-2504 + Time in Grade Requirement for Promotion to U.S. Air Force First Lieutenant Rank (ANG) + + + + + + + + + TIG is 7 years in O-4: AFI 36-2504 + Time in Grade Requirement for Promotion to U.S. Air Force Lieutenant Colonel Rank (AFR) + + + + + + + + + TIG is 7 years in O-4: AFI 36-2504 + Time in Grade Requirement for Promotion to U.S. Air Force Lieutenant Colonel Rank (ANG) + + + + + + + + + TIG is 7 years at O-3, as opposed to 3 years in RA. +Per AFI 36-2504 + Time in Grade Requirement for Promotion to U.S. Air Force Major Rank (AFR) + + + + + + + + + TIG is 7 years at O-3, as opposed to 3 years in RA. +Per AFI 36-2504 + Time in Grade Requirement for Promotion to U.S. Air Force Major Rank (ANG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires a U.S. First Lieutenant serving in the Army National Guard to have served a minimum of 2 years at their current rank in the O-2 pay grade, in order to be eligible for promotion to the U.S. Army Captain Rank. + Time in Grade Requirement for Promotion to U.S. Army Captain Rank (ARNG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires a U.S. Army Lieutenant Colonel serving in the Army National Guard to have served a minimum of 3 years at their current rank in the O-5 pay grade, in order to be eligible for promotion to the U.S. Army Colonel Rank. + Time in Grade Requirement for Promotion to U.S. Army Colonel Rank (ARNG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires a U.S. Army Second Lieutenant serving in the Army National Guard to have served a minimum of 2 years at their current rank in the O-1 pay grade, in order to be eligible for promotion to the U.S. Army First Lieutenant Rank. + Note that TIG requirement is longer than the 18 months prescribed by 10 U.S. Code 619. + Time in Grade Requirement for Promotion to U.S. Army First Lieutenant Rank (ARNG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires a U.S. Army Major serving in the Army National Guard to have served a minimum of 4 years at their current rank in the O-4 pay grade, in order to be eligible for promotion to the U.S. Army Lieutenant Colonel Rank. + Time in Grade Requirement for Promotion to U.S. Army Lieutenant Colonel Rank (ARNG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires a U.S. Army Captain serving in the Army National Guard to have served a minimum of 4 years at their current rank in the O-3 pay grade, in order to be eligible for promotion to the U.S. Army Major Rank. + Time in Grade Requirement for Promotion to U.S. Army Major Rank (ARNG) + + + + + + + + + + + + + + + + + + + + + Definition Source: ADDED + Definition: A Person who is the bearer of some command[1]. + Commander_CCO + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) The Office of the Secretary of Defense, the Military Departments, the Chairman of the Joint Chiefs of Staff and the Joint Staff, the combatant commands, the Office of the Inspector General of the Department of Defense, the Department of Defense agencies, Department of Defense field activities, and all other organizational entities in the Department of Defense. + Department of Defense components + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) One of the departments within the Department of Defense created by the National Security Act of 1947, which are the Department of the Army, the Department of the Navy, and the Department of the Air Force. Also called MILDEP. See also Department of the Air Force; Department of the Army; Department of the Navy. + Military Department + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) A branch of the Armed Forces of the United States, established by act of Congress, which are: the Army, Marine Corps, Navy, Air Force, and Coast Guard. + Service + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) A command consisting of the Service component commander and all those Service forces, such as individuals, units, detachments, organizations, and installations under that command, including the support forces that have been assigned to a combatant command or further assigned to a subordinate unified command or joint task force. See also component; functional component command. + Service component command + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) Direction or exercise of authority over subordinate or other organizations in respect to administration and support. Also called ADCON. + administrative control + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) The succession of commanding officers from a superior to a subordinate through which command is exercised. Also called command channel. + chain of command + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) A unified or specified command with a broad continuing mission under a single commander established and so designated by the President, through the Secretary of Defense and with the advice and assistance of the Chairman of the Joint Chiefs of Staff. Also called CCMD. See also specified combatant command; unified command. + combatant command + + + + + + + + + Definition Source: JP 3-0 + Definition: (DOD) A commander of one of the unified or specified combatant commands established by the President. Also called CCDR. See also combatant command; specified combatant command; unified combatant command. + combatant commander + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) The exercise of authority and direction by a properly designated commander over assigned and attached forces in the accomplishment of the mission. Also called C2. + command and control + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) A term used to indicate a delegation of authority by the Secretary of Defense or Deputy Secretary of Defense to a subordinate to act on behalf of the Secretary of Defense. Also called EA. + executive agent + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) A command normally, but not necessarily, composed of forces of two or more Military Departments which may be established across the range of military operations to perform particular operational missions that may be of short duration or may extend over a period of time. See also component; Service component command. + functional component command + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) Authorized training performed by a member of a Reserve Component not on active duty or active duty for training and consisting of regularly scheduled unit training assemblies, additional training assemblies, periods of appropriate duty or equivalent training, and any special additional duties authorized for Reserve Component personnel by the Secretary concerned, and performed by them in connection with the prescribed activities of the organization in which they are assigned with or without pay. Also called IDT. See also active duty for training. + inactive duty training + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) A command, normally composed of forces from a single Military Department, that has a broad, continuing mission, normally functional, and is established and so designated by the President through the Secretary of Defense with the advice and assistance of the Chairman of the Joint Chiefs of Staff. + specified combatant command + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) A command consisting of the commander and all those individuals, units, detachments, organizations, or installations that have been placed under the command by the authority establishing the subordinate command. + subordinate command + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) A command established by commanders of unified commands, when so authorized by the Secretary of Defense through the Chairman of the Joint Chiefs of Staff, to conduct operations on a continuing basis in accordance with the criteria set forth for unified commands. See also area command; functional component command; operational control; subordinate command; unified command. + subordinate unified command + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) See unified command. + unified combatant command + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) A command with a broad continuing mission under a single commander and composed of significant assigned components of two or more Military Departments that is established and so designated by the President, through the Secretary of Defense with the advice and assistance of the Chairman of the Joint Chiefs of Staff. Also called unified combatant command. See also combatant command; subordinate unified command. + unified command + + + + + + + + + Definition Source: JP 3-0 + Definition: (DOD) The operation of all forces under a single responsible commander who has the requisite authority to direct and employ those forces in pursuit of a common purpose. + unity of command + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) Nontransferable command authority, which cannot be delegated, of a combatant commander to perform those functions of command over assigned forces involving organizing and employing commands and forces; assigning tasks; designating objectives; and giving authoritative direction over all aspects of military operations, joint training, and logistics necessary to accomplish the missions assigned to the command. Also called COCOM. See also combatant command; combatant commander; operational control; tactical control. + combatant command (command authority) + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) 1. The authority that a commander in the armed forces lawfully exercises over subordinates by virtue of rank or assignment. + command[1] + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) 2. An order given by a commander; that is, the will of the commander expressed for the purpose of bringing about a particular action. + command[2] + + + + + + + + + DEFINED CLASS + Definition Source: JP 1 + Definition: (DOD) 3. A unit or units, an organization, or an area under the command of one individual. Also called CMD. See also area command; combatant command; combatant command (command authority). + command[3] + + + + + + + + + Definition Source: JP 3-0 + Definition: (DOD) A clear and concise expression of the purpose of the operation and the desired military end state that supports mission command, provides focus to the staff, and helps subordinate and supporting commanders act to achieve the commander’s desired results without further orders, even when the operation does not unfold as planned. See also assessment; end state. + commander's intent + + + + + + + + + Definition Source: JP 1 + Definition: (DOD) 1. Authority that may be less than full command exercised by a commander over part of the activities of subordinate or other organizations. + control[1] + + + + + + + + + A Process in which at least one Agent plays a causative role. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act + + + + + + + + + An Act of Directive Communication performed by providing advice or counsel to another agent. + http://www.dictionary.com/browse/advising + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Advising + + + + + + + + + An Act of Declarative Communication in which rights held by one party (the assignor) are transferred to another party (the assignee) with regard to a particular entity as specified by the details of the assignment, which is often prescribed by a contract. + https://en.wikipedia.org/wiki/Assignment_%28law%29 + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Assignment + + + + + + + + + A Social Act wherein an Agent unites with some other Agent in an Intentional Act, enterprise or business. + http://en.wiktionary.org/wiki/associate + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Association + + + + + + + + + An Act of Commanding that involves the exercise of Authority and direction by a properly designated Military Commander over assigned and attached forces in the accomplishment of a Military Mission. + C2 + (DOD) The exercise of authority and direction by a properly designated commander over assigned and attached forces in the accomplishment of the mission. Also called C2. + command and control + JP 1 + http://www.ontologyrepository.com/CommonCoreOntologies/Domain/MilitaryCommandAndControlOntology + Act of Command and Control + + + + + + + + + An Act of Directive Communication that exercises authoritative control or power over another agent's actions. + http://wordnetweb.princeton.edu/perl/webwn?s=commanding (Edited 08-22-2016) + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Commanding + + + + + + + + + An Act of Communication that commits a speaker to some future action. + Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Examples: agreeing, betting, guaranteeing, inviting, offering, promising, swearing, volunteering + Act of Commissive Communication + + + + + + + + + An Intentional Act in which some Information Content Entity is transferred from some Agent to Another. + http://en.wikipedia.org/wiki/Communication + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Communication + + + + + + + + + An Act of Promising having a lawful object entered into voluntarily by two or more agents with legal capacity, each of whom intends to create one or more legal obligations between them. + http://en.wikipedia.org/wiki/Contract#Formation + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Contract Formation + + + + + + + + + An Act of Communication that changes the reality in accord with the proposition of the declaration. + Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Examples: Baptism, Sentencing a person to imprisonment, Pronouncing a couple husband and wife, Declaring war + Act of Declarative Communication + + + + + + + + + An Act of Communication that is intended to cause the hearer to take a particular action. + Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Examples: advising, admonishing, asking, begging, dismissing, excusing, forbidding, instructing, ordering, permitting, requesting, requiring, suggesting, urging, warning + Act of Directive Communication + + + + + + + + + An Act of Training Acquisition performed by an Agent by acquiring knowledge of a curriculum from an Agent or communication medium that realizes a capacity derived from its affiliation with some Educational Organization. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Educational Training Acquisition + + + + + + + + + An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Educational Organization by imparting knowledge of a curriculum to an Agent either directly or indirectly through some communication medium. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Educational Training Instruction + + + + + + + + + An Act of Association wherein an Organization assigns a set of activities to some Person to be performed in exchange for financial compensation. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Employment + + + + + + + + + An Act of Intelligence Gathering involving the obtaining of information that is considered secret or confidential without the permission of the holder of the information. + http://en.wikipedia.org/wiki/Espionage + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Espionage + + + + + + + + + An Intentional Act that is initiated or supported by some Geopolitical Entity and enforced by some Government Agent. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Government + + + + + + + + + An Intentional Act of producing and/or gathering information by a government or other Organization to guide decisions and actions by answering questions or obtaining advance warning of events and movements deemed to be important or otherwise relevant. + http://en.wikipedia.org/wiki/Intelligence_(information_gathering) + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Intelligence Gathering + + + + + + + + + An Act of Commissive Communication performed by requesting the presence or participation of the audience, and which may include offering an incentive or inducement. + http://www.merriam-webster.com/dictionary/invite + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Inviting + + + + + + + + + An Intentional Act of employing a Military Force to achieve some desired result. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Military Force + + + + + + + + + An Act of Commanding that places one or more units or personnel in an organization where such placement is relatively permanent, or where such organization controls and administers the units or personnel for the primary function, or greater portion of the functions, of the unit or personnel. + (DOD) 1. To place units or personnel in an organization where such placement is relatively permanent, and/or where such organization controls and administers the units or personnel for the primary function, or greater portion of the functions, of the unit or personnel. + assign_1 + JP 3-0 + http://www.ontologyrepository.com/CommonCoreOntologies/Domain/MilitaryCommandAndControlOntology + Act of Military Personnel Assignment + + + + + + + + + An Act of Commanding that places one or more units or personnel in an organization where such placement is relatively temporary. + (DOD) 1. The placement of units or personnel in an organization where such placement is relatively temporary. + attach_1 + JP 3-0 + http://www.ontologyrepository.com/CommonCoreOntologies/Domain/MilitaryCommandAndControlOntology + Act of Military Personnel Attachment + + + + + + + + + An Act of Employment wherein a Person serves as a member of a Military Force, whether voluntarily or by conscription. + http://www.collinsdictionary.com/dictionary/english/military-service + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Military Service + + + + + + + + + An Act of Commanding that details one or more individuals to a specific task, duty, or function that is primary and/or relatively permanent. + (DOD) 2. To detail individuals to specific duties or functions where such duties or functions are primary or relatively permanent. See also attach. + assign_2 + JP 3-0 + http://www.ontologyrepository.com/CommonCoreOntologies/Domain/MilitaryCommandAndControlOntology + Act of Military Task Assignment + + + + + + + + + An Act of Commanding that details one or more individuals to a specific task, duty, or function that is secondary or relatively temporary. + (DOD) 2. The detailing of individuals to specific functions where such functions are secondary or relatively temporary. See also assign. + attach_2 + JP 3-0 + http://www.ontologyrepository.com/CommonCoreOntologies/Domain/MilitaryCommandAndControlOntology + Act of Military Task Attachment + + + + + + + + + An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of Military Operations from an Agent or communication medium that realizes a capacity derived from its affiliation with a Military Organization. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Military Training Acquisition + + + + + + + + + An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Military Organization by imparting knowledge of the tactics, techniques, and/or strategies of Military Operations to an Agent either directly or indirectly through some communication medium. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Military Training Instruction + + + + + + + + + An Act of Commanding in which an Agent is given a Mission to fulfill. + http://www.ontologyrepository.com/CommonCoreOntologies/Domain/MilitaryCommandAndControlOntology + Note: This definition assumes that an Artifact can be an Agent such that, for example, an Unmanned Spacecraft can be assigned a Spacecraft Mission. + Act of Mission Assignment + + + + + + + + + An Act of Commissive Communication performed by stating or promising, usually calling upon something or someone that the oath maker considers sacred. + http://en.wikipedia.org/wiki/Oath + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Oath Taking + + + + + + + + + An Act of Declarative Communication in which an Agent records some information for official use by another Agent. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Official Documentation + + + + + + + + + An Act of Commissive Communication performed by declaring that the promising agent will do, or refrain from doing, the specified action. + http://www.merriam-webster.com/dictionary/promise + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Promising + + + + + + + + + An Act of Intelligence Gathering used to determine an Agent's disposition and intention; the composition and capabilities of Equipment and Facilities, and the surrounding landforms and weather conditions. + http://en.wikipedia.org/wiki/Reconnaissance + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Reconnaissance + + + + + + + + + An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tenets and/or practices of a religion from an Agent or communication medium that realizes a capacity derived from its affiliation with a Religious Organization. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Religious Training Acquisition + + + + + + + + + An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Religious Organization by imparting knowledge of the tenets and/or practices of a religion to an Agent either directly or indirectly through some communication medium. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Religious Training Instruction + + + + + + + + + An Act of Directive Communication performed by asking for something. + http://www.merriam-webster.com/dictionary/request + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Requesting + + + + + + + + + An Intentional Act wherein some Agent maintains one or more entities as the objects of potential action given some operational requirement. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Targeting + + + + + + + + + An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature from an Agent or communication medium that realizes a capacity derived from its affiliation with a Terrorist Organization. + http://wordnetweb.princeton.edu/perl/webwn?s=terrorism + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Terrorist Training Acquisition + + + + + + + + + An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Terrorist Organization by imparting knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature to an Agent either directly or indirectly through some communication medium. + http://wordnetweb.princeton.edu/perl/webwn?s=terrorism + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Terrorist Training Instruction + + + + + + + + + An Intentional Act in which knowledge, skills or values are imparted from one or more Agents to at least one other Agent. + http://en.wikipedia.org/wiki/Education + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Training + + + + + + + + + An Act of Training performed by an Agent by acquiring knowledge from another Agent. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Training Acquisition + + + + + + + + + An Act of Training performed by an Agent by imparting knowledge to another Agent. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Training Instruction + + + + + + + + + An Act of Training Acquisition performed by an Agent by acquiring skills required for a specific occupation in industry, agriculture or trade from an Agent or communication medium that realizes a capacity derived from its affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider. + http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Vocational Training Acquisition + + + + + + + + + An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider by imparting skills required for a specific occupation in industry, agriculture or trade to an Agent either directly or indirectly through some communication medium. + http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Vocational Training Instruction + + + + + + + + + An Act of Commissive Communication performed by voluntarily undertaking or expressing a willingness to undertake a service. + http://www.merriam-webster.com/dictionary/volunteer + entering into military service voluntarily + rendering a service voluntarily + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Volunteering + + + + + + + + + An Act of Directive Communication performed by indicating a possible or impending danger, problem, or other unpleasant situation. + http://www.merriam-webster.com/dictionary/warning + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Act of Warning + + + + + + + + + + + + + + + + + + + + Authorization + License + An Action Regulation that permits some Act. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Action Permission + + + + + + + + + + + + + + + + + + + + An Action Regulation that prohibits some Act. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Action Prohibition + + + + + + + + + A Directive Information Content Entity that prescribes an Act as required, prohibited, or permitted, and is the output of an Act which realizes some Authority Role. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Action Regulation + + + + + + + + + + + + + + + + + + + + Duty + Obligation + An Action Regulation that requires some Act. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Action Requirement + + + + + + + + + + + + + + + + + + + + + + + + + A Material Entity that is capable of performing Intentional Acts. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Agent + + + + + + + + + A Realizable Entity that inheres in an Agent to the extent of that Agent's capacity to realize it in Intentional Acts of a certain type. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Agent Capability + + + + + + + + + A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by air travel. + https://en.wikipedia.org/wiki/Aircraft + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + Aircraft + + + + + + + + + A Role that inheres in an Agent by virtue of the support it has committed to provide to another Agent when that Agent is involved in a conflict. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Allegiance Role + + + + + + + + + + + + + + + A Person who is the bearer of some Ally Role. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Allied Person + + + + + + + + + An Allegiance Role that inheres in an Agent in virtue of that Agent's commitment to perform Acts that support the Objectives of a particular Agent or Group of Agents. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Ally Role + + + + + + + + + An Organism that is multicellular, eukaryotic, heterotrophic, and capable of motility for part of its life. + https://en.wikipedia.org/wiki/Animal + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Animal + + + + + + + + + An Organization having the Objective to further the foreign and domestic policies of a Government and to defend that body and the nation it represents from external and internal aggressors. + https://en.wikipedia.org/wiki/Armed_forces + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Armed Force + + + + + + + + + An Object that was designed by some Agent to realize a certain Function. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + Artifact + + + + + + + + + + + + + + + A Function that inheres in some Artifact in virtue of that Artifact being designed to be used in processes that require that Function to be realized. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + Artifact Function + + + + + + + + + A Role that is realized by Acts which create, modify, transfer, or eliminate Action Regulations or other Authority Roles, and inheres in an Agent in virtue of collective acceptance of that Agent's ability to issue binding directives. + Authority Roles are externally grounded in a social group's collective acceptance of the binding force of the agent's directives. This acceptance can be direct or indirect (e.g., by accepting a procedure for deputizing authority). Such collective acceptance need not be explicit or cognized; rather, collective acceptance can be expressed in the dispositions and attitudes of people toward that agent's directives. In many cases, the directives issued by Authority Roles are backed by threats of punishment or sanction for failure to comply, but the issuing of a directive plus a threat is not sufficient for authority. Rather, an agent's authority must be accepted either directly or indirectly through the acceptance of a procedure for bestowing authority (e.g., elections). + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Authority Role + + + + + + + + + An Act in which an Independent Continuant participates as an Agent in response to external or internal stimuli and following some pattern which is dependent upon some combination of that Independent Continuant's internal state and external conditions. + http://purl.obolibrary.org/obo/GO_0007610 + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Behavior + + + + + + + + + An Act composed of the Life Events that occur during the course of existence of an Agent (i.e. Person or Organization). + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Biographical Life + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A Date Identifier that designates some Day by using a combination of Day, Week, Month, or Year Identifiers formatted according to an implementation of a Calendar System. + January 1, 2018; 1 January 2018; 01/01/18; 01Jan18 + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Calendar Date Identifier + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A Day that begins and ends concurrently with the Seconds specified by a Calendar System to be the first and last Seconds of the Day. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + Calendar Day + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A Week that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Week. + http://wordnetweb.princeton.edu/perl/webwn?s=calendar+week + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + Calendar Week + + + + + + + + + A Military Force that is trained and equipped to conduct air operations while embarked on an aircraft carrier. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Carrier Air Wing + + + + + + + + + A Process in which some independent continuant endures and 1) one or more of the dependent entities it bears increase or decrease in intensity, 2) the entity begins to bear some dependent entity or 3) the entity ceases to bear some dependent entity. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Change + + + + + + + + + + + + + + + A Person who is the bearer of some Citizen Role. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Citizen + + + + + + + + + A Role that inheres in a Person who is legally recognized as a member of a particular state, with associated rights and obligations. + http://en.wikitionary.org/wiki/citizen + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Citizen Role + + + + + + + + + + + + + + + + + + + + An Organization that is not commercial or military and is the bearer of a Civilian Role. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Civil Organization + + + + + + + + + A Role that inheres in an Agent or Group of Agents who is not a member of either an Armed Force or police force. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Civilian Role + + + + + + + + + + + + + + + + + + + + An Organization that is the bearer of a Commercial Role and whose primary objective is to make a profit from the provision of goods or services. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Commercial Organization + + + + + + + + + A Role that inheres in an Organization by virtue of its establishment as a for-profit business. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Commercial Role + + + + + + + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + Day Identifier + A Temporal Interval Identifier that designates some Day. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Date Identifier + + + + + + + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A One-Dimensional Temporal Region that is equal to the approximate length of time required for an Astronomical Body to complete one rotation around its Rotational Axis as specified relative to a particular Temporal Reference System. + http://wordnetweb.princeton.edu/perl/webwn?s=day + Unless otherwise specified, a Day is assumed to be relative to the rotational motion of the Earth and is approximately equal to a twenty-four hour temporal region for which the start and end times are specified by the Temporal Reference System used. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + Day + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A One-Dimensional Temporal Region that is equal to a period of ten consecutive Years. + http://wordnetweb.princeton.edu/perl/webwn?s=decade + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + Decade + + + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + Descriptive ICE + An Information Content Entity that consists of a set of propositions that describe some Entity. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Descriptive Information Content Entity + + + + + + + + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + Designative ICE + An Information Content Entity that consists of a set of symbols that denote some Entity. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Designative Information Content Entity + + + + + + + + + + + + + + + Directive ICE + An Information Content Entity that consists of a set of propositions or images (as in the case of a blueprint) that prescribe some Entity. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Directive Information Content Entity + + + + + + + + + + + + + + + + A Geospatial Region that is a fiat division of a Geopolitical Entity and not a Geopolitical Entity. + Flatbush, French Quarter, Western New York, Texas Panhandle, Greater Montreal Area of Quebec, Pacific Northwest, southwest area of Al Anbar Province, Northern Iraq. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology + Instances of this class are not proper geopolitical entities, but in some cases may have an organization that exercises some control over the region, such as the homeowners' association for a neighborhood. + Division of Geopolitical Entity + + + + + + + + + An Information Bearing Artifact that is designed to bear some specific Information Content Entity in a series of paragraphs of text or diagrams in the form of physical pieces of paper or an electronic word processor file. + https://en.wikipedia.org/wiki/Document + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + Document + + + + + + + + + An Information Bearing Entity that is a part of some document into which bearers of prescribed information can be writted or selected. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + Document Field + + + + + + + + + An Organization whose purpose is to provide training or otherwise facilitate learning or the acquisition of knowledge, Skills, values, beliefs, or habits. + https://en.wikipedia.org/wiki/Education + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Educational Organization + + + + + + + + + + + + + + + A Person who is the bearer of some Enemy Role. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Enemy + + + + + + + + + An Allegiance Role that inheres in an Agent by virtue of that Agent having committed offensive Acts or exhibited intent to perform such Acts towards a particular Agent or Group of Agents or has been declared as hostile by some appropriate authority. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Enemy Role + + + + + + + + + A Change in which an Independent Continuant becomes the bearer or carrier of some Dependent Continuant. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Gain of Dependent Continuant + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A Geospatial Region that delimits the authority of a formally constituted Government to exercise its control within the bounded area. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology + Geopolitical Entity + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies + A Site at or near the surface of the Earth. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology + Geospatial Region + + + + + + + + + + + + + + + An Organization that exercises executive, legislative, or judicial authority over a Geopolitical Entity. + https://en.wikipedia.org/wiki/Government + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Government + + + + + + + + + + + + + + + An Organization that is part of a Government and is responsible for the oversight and administration of specific governmental functions. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Government Agency + + + + + + + + + + + + + + + + + + + + + + + An Object Aggregate that has only Agents as parts. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Group of Agents + + + + + + + + + + + + + + + + + + + + + A Group of Agents that has only Organizations as parts. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Group of Organizations + + + + + + + + + + + + + + + + + + + + + A Group of Agents that has only Persons as parts. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Group of Persons + + + + + + + + + An Information Content Entity that consists of a collection of claims about how some part of the world is or should be and which is accepted as true by an Agent or Group of Agents such that it forms the basis of their beliefs, goals, expectations, and motivations. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Ideology + + + + + + + + + Corporation + An Organization formed by an Act of Incorporation that consists of an association of individuals, created by law or under authority of law, having a continuous existence independent of the existences of its members and owners, and having powers and liabilities distinct from those of its members and owners. + http://www.dictionary.com/browse/corporation + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Incorporated Organization + + + + + + + + + + + + + + + + + + + + + An Artifact that carries an Information Content Entity and is designed to do so using a particular format or structure. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + Information Bearing Artifact + + + + + + + + + + + + + + + IBE + An Object upon which an Information Content Entity generically depends. + http://purl.obolibrary.org/obo/IAO_0000178 + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Information Bearing Entity + + + + + + + + + + + + + + + ICE + A Generically Dependent Continuant that generically depends on some Information Bearing Entity and stands in relation of aboutness to some Entity. + http://purl.obolibrary.org/obo/IAO_0000030 + Information Content Entity is here intended to be a class of Entities whose instances are the informational content of Information Bearing Entities. For example, three instances of information bearers -- such as a bar chart, color-coded map, and a written report -- each of which lists the GDP of Countries for the year 2010 are each different carriers of the same information content. It is this content that is generically dependent upon its carrier. This treatment of Informational Content Entity (cf. the Information Artifact Ontology) leads to a principle of subtyping based upon the relationship that ICE's have with the Entity they are about rather than characteristics such as format, language, measurement scale, or media. The latter are treated here as being Qualities of bearers. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Information Content Entity + + + + + + + + + An Artifact that is designed to have some Information Bearing Artifact as part. + A magnetic hard drive + A notebook + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + An empty notebook, when manufactured, is a medium but not yet a carrier of information content. However, a book, in the sense of a novel or collection of philosophical essays or poems, depends necessarily on it carrying some information content. Thus, there are no empty books. Likewise, there are no empty databases, only portions of digital storage that have not yet been configured to carry some information content according to a database software application. + Information Medium Artifact + + + + + + + + + + + + + + + IQE + A Quality that concretizes some Information Content Entity. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Typically, an IQE will be a complex pattern made up of multiple qualities joined together spatially. + Information Quality Entity + + + + + + + + + An Act in which at least one Agent plays a causative role and which is prescribed by some Directive Information Content Entity held by at least one of the Agents. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Intentional Act + + + + + + + + + A Skill that is realized by an Act which is prescribed by a Language. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Language Skill + + + + + + + + + An Artifact that is designed as a formally executed written document that can be formally attributed to its author, records and formally expresses a legally enforceable act, process, or contractual duty, obligation, or right, and therefore evidences that act, process, or agreement. + https://en.wikipedia.org/wiki/Legal_instrument + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + Legal Instrument + + + + + + + + + + + + + + + + Measurement ICE + A Descriptive Information Content Entity that describes the extent, dimensions, quantity, or quality of an Entity relative to some standard. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Measurement Information Content Entity + + + + + + + + + A Descriptive Information Content Entity that describes a definite magnitude of a physical quantity, defined and adopted by convention and/or by law, that is used as a standard for measurement of the same physical quantity. + http://en.wikipedia.org/wiki/Measurement_unit + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Measurement Unit + + + + + + + + + A Measurement Unit used in measurements of temporal regions. + second, minute, hour, day + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology + Measurement Unit of Time + + + + + + + + + Military Command Directive Information Content Entity + Military Order + A Directive Information Content Entity expressed by a commander to a subordinate that realizes the commander's authority and directs the subordinate to act accordingly. + (DOD) 2. An order given by a commander; that is, the will of the commander expressed for the purpose of bringing about a particular action. + command_2 + JP 1 + http://www.ontologyrepository.com/CommonCoreOntologies/Domain/MilitaryCommandAndControlOntology + Military Command Directive + + + + + + + + + An Armed Force authorized to use deadly force, and weapons, to support the interests of the Government and some or all of its Citizens. + https://en.wikipedia.org/wiki/Military + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Military Personnel Force + + + + + + + + + + + + + + + A One-Dimensional Temporal Region that is based on the approximate length of time required for a Natural Satellite to complete one cycle of its rotational motion around its Primary Body. + http://wordnetweb.princeton.edu/perl/webwn?s=month + Unless otherwise specified, it is assumed that a Month is specified relative to the Rotational Motion of the Moon around the Earth. Earth Months are approximately equal to four consecutive Weeks or 30 consecutive Days. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + Month + + + + + + + + + An Allegiance Role that inheres in an Agent by virtue of that Agent not performing or being committed to perfoming Acts that have as their Objective to either support or undermine the Objectives of an Agent or Group of Agents involved in some conflict. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Neutral Role + + + + + + + + + A Directive Information Content Entity that prescribes some projected state that some Agent intends to achieve. + http://en.wikipedia.org/wiki/Objective_(goal) + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Objective + + + + + + + + + An Object that is an Animal or Plant. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Organism + + + + + + + + + A Group of Agents which can be the bearer of roles, has members, and has a set of organization rules. + http://purl.obolibrary.org/obo/OBI_0000245 + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Members of organizations are either Organizations themselves or individual Persons. Members can bear specific Organization Member Roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the Organization by the organization members. + Organization + + + + + + + + + + + + + + + An Agent Capability that inheres in an Organization to the extent of that Organization's capacity to realize it in Intentional Acts of a certain type. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Organization Capability + + + + + + + + + + + + + + + + + + + + + A Person who is affiliated with some Organization by being a member of that Organization. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Organization Member + + + + + + + + + A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill as a member of some Organization. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Organization Member Role + + + + + + + + + An Armed Force whose organizational structure, training, subculture, and (often) function are similar to those of a professional Military, and which is not included as part of a Government's formal Armed Forces. + https://en.wikipedia.org/wiki/Paramilitary + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Paramilitary Force + + + + + + + + + Human + An Animal that is a member of the species Homo sapiens. + https://en.wikipedia.org/wiki/Human + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Person + + + + + + + + + + + + + + + A Directive Information Content Entity that prescribes some set of intended Intentional Acts through which some Agent expects to achieve some Objective. + http://en.wikipedia.org/wiki/Plan + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Plan + + + + + + + + + An Ideology that characterizes the political thinking of an Agent or Group of Agents, usually with respect to the political environment within a particular nation. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Political Orientation + + + + + + + + + A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the starting instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Process Beginning + + + + + + + + + A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the ending instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Process Ending + + + + + + + + + + + + + + + A Descriptive Information Content Entity that consists of a set of propositions or the content of an image that represents some Entity. + the content of a court transcript represents a courtroom proceeding + the content of a photograph of the Statue of Liberty represents the Statue of Liberty + the content of a video of a sporting event represents that sporting event + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Representational Information Content Entity + + + + + + + + + + + + + + + An Agent Capability that inheres in a Person to the extent of that Person's capacity to realize it in Intentional Acts of a certain type. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Skill + + + + + + + + + An Intentional Act having an objective that affects, is performed by, or is performed on behalf of, a community or group of Persons. + http://en.wiktionary.org/wiki/commually + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Social Act + + + + + + + + + A Group of Agents that are connected in dyadic relations by similar personal or career interests, activities, backgrounds, or real-life connections. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Social Network + + + + + + + + + A Process in which one or more Independent Continuants endure in an unchanging condition. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Stasis + + + + + + + + + A Stasis in which some Independent Continuant bears some Generically Dependent Continuant that remains unchanged during a Temporal Interval. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Stasis of Generically Dependent Continuant + + + + + + + + + A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Quality that remains unchanged during a Temporal Interval. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Stasis of Quality + + + + + + + + + A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Realizable Entity that remains unchanged during a Temporal Interval. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Stasis of Realizable Entity + + + + + + + + + A Stasis in which some Independent Continuant bears some Specifically Dependent Continuant that remains unchanged during a Temporal Interval. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Stasis of Specifically Dependent Continuant + + + + + + + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + One-Dimensional Temporal Region Identifier + A Temporal Region Identifier that designates some One-Dimensional Temporal Region. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Temporal Interval Identifier + + + + + + + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A Designative Information Content Entity that designates some Temporal Region. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology + Temporal Region Identifier + + + + + + + + + A Legal Instrument that is designed as evidence of ownership. + https://en.wikipedia.org/wiki/Title_(property) + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + Title Document + + + + + + + + + + + + + + + A Person who is the bearer of some Neutral Role. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology + Neutral + + + + + + + + + An Act in which at least one Agent plays a causative role and which is not prescribed by some Objective held by any of the Agents. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Unintentional Act + + + + + + + + + An Artifact that is designed to facilitate the movement of material entities from one location to another by conveying them there. + https://en.wikipedia.org/wiki/Vehicle + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + Vehicle + + + + + + + + + A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by water travel. + https://en.wikipedia.org/wiki/Watercraft + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology + Watercraft + + + + + + + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A One-Dimensional Temporal Region that is equal to seven consecutive Days. + http://wordnetweb.princeton.edu/perl/webwn?s=week + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + Week + + + + + + + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A One-Dimensional Temporal Region that is equal to the approximate length of time required for an Astronomical Body to complete one Orbital Revolution around its Primary Body as specified relative to a particular Temporal Reference System. + http://wordnetweb.princeton.edu/perl/webwn?s=year + Unless otherwise specified, a Year is assumed to be relative to the Orbiting of the Earth around the Sun and is approximately equal to 12 Months or 365 Days. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + Year + + + + + + + + + Note here that 'airman' is used here as a general term for any member of the Air Force, and not for someone holding one of the E-1 to E-4 Airman ranks. All reference to those ranks, or the holder of those ranks, will involved capitalization, as in the labels for the corresponding classes. + A Technical Training Requirement for Promotion in Military Rank that requires some U.S. Air Force airman to have achieved a certain AFSC skill level, as a condition for promotion to some U.S. Air Force Military Rank. + U.S. Air Force Skill Level Requirement for Promotion in Military Rank + + + + + + + + + A U.S. Air Force Skill Level Requirement for Promotion in Military Rank that requires a U.S. Air Force Airman First Class to have achieved a skill level of 3 (Apprentice) in their primary Air Force specialty code as of the promotion eligibility cut off date in order to be promoted to the U.S. Air Force Senior Airman Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Skill Level Requirement for Promotion to U.S. Air Force Senior Airman Rank + + + + + + + + + A U.S. Air Force Skill Level Requirement for Promotion in Military Rank that requires a U.S. Air Force Senior Airman to have achieved a skill level of 5 (Journeyman) in their primary Air Force specialty code as of the promotion eligibility cut off date in order to be promoted to the U.S. Air Force Staff Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Skill Level Requirement for Promotion to U.S. Air Force Staff Sergeant Rank + + + + + + + + + A U.S. Air Force Skill Level Requirement for Promotion in Military Rank that requires a U.S. Air Force Staff Sergeant to have achieved a skill level of 7 (Craftsman) in their primary Air Force specialty code as of the promotion eligibility cut off date in order to be promoted to the U.S. Air Force Technical Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + A U.S. Air Force Staff Sergeant may test and compete for the U.S. Air Force Technical Sergeant Rank if they have a skill level of 5 as of the promotion eligibility cut off date. But they must have a 7 skill level before promotion. + +See AIR FORCE INSTRUCTION 36-2502, Table 2.1., Note 5. + Skill Level Requirement for Promotion to U.S. Air Force Technical Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S Army Physical Fitness Requirement for Promotion in Military Rank that requires some U.S. Army Corporal to have completed an Army Physical Fitness Test with a current passing record APFT score, in accordance with applicable regulations and field manuals, as a condition of promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-3: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + APFT Requirement for Promotion Pin-on to U.S. Army Sergeant Rank + + + + + + + + + A U.S Army Physical Fitness Requirement for Promotion in Military Rank that requires some U.S. Army Sergeant to have completed an Army Physical Fitness Test with a current passing record APFT score, in accordance with applicable regulations and field manuals, as a condition of promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-3: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + APFT Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank + + + + + + + + + + + + + + + APFT Requirement for Promotion to U.S. Army Brigadier General Rank + + + + + + + + + + + + + + + APFT Requirement for Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Physical Fitness Requirement for Promotion in Military Rank that requires some U.S. Army Corporal to have completed an Army Physical Fitness Test with a current passing record APFT score, in accordance with applicable regulations and field manuals, as a condition of recommendation for promotion to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + APFT Requirement for Recommendation to U.S. Army Sergeant Rank + + + + + + + + + A U.S Army Physical Fitness Requirement for Promotion in Military Rank that requires some U.S. Army Sergeant to have completed an Army Physical Fitness Test with a current passing record APFT score, in accordance with applicable regulations and field manuals, as a condition of recommendation for promotion to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + APFT Requirement for Recommendation to U.S. Army Staff Sergeant Rank + + + + + + + + + A U.S. Army Promotion Approval Authority is any commander holding the U.S. Army Lieutenant Colonel Rank or higher, or who is frocked at the LTC Rank, and is authorized to promote an officer to the LTC rank or temporary CW2 rank. + An Act of Promotion to U.S. Army First Lieutenant Rank in which some U.S. Army Promotion Approval Authority uses an automated promotion system to permanently advance some U.S. Army Second Lieutenant who is under their command to the U.S. Army First Lieutenant Rank. + Army Regulation 600–8–29, Section II, §1-7: + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Army Regulation 600–8–29, Section IV, §3-17: + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Unlike officer promotions to the ranks of CPT - MG, promotions to the rank of 1LT are not centralized, but are rather processed at the unit level by the 2LT's commanding officer. Promotions to the rank of 1LT do not require the convening of centralized promotion selection boards. Promotions are pretty much automatic for all 2LTs if they have performed their duties exceptionally and meet the TIG requirement. + +If the automated system has recommended an officer for promotion, but the promotion approval authority does not consider the officer to be qualified for promotion, then they must flag the officer in the automated system in order to disapprove of promotion and avoid an inadverdent promotion. See AR600-8-29, 3-17d-e. + +If the automated system has not recommended an officer for promotion, then if promotion approval authority considers the officer to be qualified, they must process a DA Form 78 (Recommendation for Promotion to 1LT/CW2). See AR600-8-29, 3-17b. + Act of Automated Promotion to U.S. Army First Lieutenant Rank + + + + + + + + + An Act of Promotion to U.S. Army Private First Class Rank wherein the Human Resources staff of some U.S. Army Battalion, or equivalent echelon, uses an automated personnel system to advance to the U.S. Army Private First Class Rank, on the next automatic promotion date, each U.S. Army Private Second Class within that unit's command who is registered in the system as meeting the promotion eligibility requirements for that rank. + Army Regulation 600–8–19, +Paragraph 1-9c.(1) and Chapter 2 "Decentralized Promotions" + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Act of Automatic Promotion to U.S. Army Private First Class Rank + + + + + + + + + Need some clause about the Flag transaction which blocks the automatic promotion of soldiers who are declined for promotion by the unit commander? + One could argue that the definition should say that the soldiers promoted were approved for promotion by the unit commander. I am not so sure. + +Suppose that there is an HR error, and some soldier who is registered in the system as meeting the TIS and TIG requirements for promotion to the next rank is not listed on the enlisted advancement report. The commander therefore doesn't approve or deny the promotion. In this case, assuming the ommission is undetected, the soldier in question will be automatically promoted. + +Of course, it may be the case that had the commander seen the soldier's name on the list, he may have denied the promotion, assuming he had some reason for thinking the soldier was otherwise unpromotable. But given the automated nature of these promotions, I think it should still be counted as a promotion. In this case, we would just have a promotion that is made in error. Army Regulation 600–8–19 already has rules for correcting erroneous promotions (Ch. 2, Sction IV). + +Or imagine that due to negligence on the part of HR, the appropriate procedures for reviewing the advancement report are not carried out. The system therefore automatically promotes all the soldiers it recognizes as meeting the eligibility requirements. There may be many soldiers that were, for whatever reason, not promotable. But this would just be another case of erroneous promotion. + An Act of Promotion to U.S. Army Private Second Class Rank wherein the Human Resources staff of some U.S. Army Battalion, or equivalent echelon, uses an automated personnel system to advance to the U.S. Army Private Second Class Rank, on the next automatic promotion date, each U.S. Army Private within that unit's command who is registered in the system as meeting the promotion eligibility requirements for that rank. + Army Regulation 600–8–19, +Paragraph 1-9c.(1) and Chapter 2 "Decentralized Promotions" + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + While the Human Resources staff that processes the actual promotion (using the automated system) it is the unit commander who is the promotion authority (see paragraphs 1-8c., 1-10b., and 1-10f.(1) of Army Regulation 600–8–19). While typically any soldier in the grade of E-1, E-2 or E-3 will be automatically promoted to the next rank once they satisfy the time in service and time in grade requirements, the unit commander has the authority to deny automatic promotions. But they also have the authority to promote exceptional soldiers earlier than normal, using certain waiver provisions. + +On the 2nd to 5th day of the month prior to the promotion month, HR generates a unit advancement report, and screens it for any necessary corrections before sending it to the unit commander for review. The commander then selects eligible soldiers from the report for promotion by either annotating 'yes' to select, or 'no' for denial of promotion. Then, in the case of the soldiers denied for promotion by the commander, an HR specialist submits a Flag transaction into the personnel system to block their automatic promotion. [See Army Regulation 600–8–19, paragraphs 2-3d-e. and Table 2-1]. + Act of Automatic Promotion to U.S. Army Private Second Class Rank + + + + + + + + + An Act of Promotion to U.S. Army Specialist Rank wherein the Human Resources staff of some U.S. Army Battalion, or equivalent echelon, uses an automated personnel system to advance to the U.S. Army Specialist Rank, on the next automatic promotion date, each U.S. Army Private First Class within that unit's command who is registered in the system as meeting the promotion eligibility requirements for that rank. + Act of Automatic Promotion to U.S. Army Specialist Rank + + + + + + + + + A Temporary Promotion to U.S. Army Captain Rank, executed during wartime, in which some U.S. Army Lieutenant Colonel appoints a Soldier within their command to a vacant position authorized for the U.S. Army Captain Rank, and advances the Soldier to that rank for the duration of their service in the qualifying position. + Army Regulation 600–8–29, Section II, §1-8(2)(c)(1-4): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Shane Babcock + Act of Battlefield Promotion to U.S. Army Captain Rank + + + + + + + + + A Temporary Promotion to U.S. Army Colonel Rank, executed during wartime, in which some U.S. Army Major General appoints a Soldier within their command to a vacant position authorized for the U.S. Army Colonel Rank, and advances the Soldier to that rank for the duration of their service in the qualifying position. + Army Regulation 600–8–29, Section II, §1-8(2)(c)(1-4): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Battlefield Promotion to U.S. Army Colonel Rank + + + + + + + + + Requires review + A Temporary Promotion to U.S. Army First Lieutenant Rank, executed during wartime, in which some U.S. Army Lieutenant Colonel appoints a Soldier within their command to a vacant position authorized for the U.S. Army First Lieutenant Rank, and advances the Soldier to that rank for the duration of their service in the qualifying position. + Army Regulation 600–8–29, Section II, §1-8(2)(c)(1-4): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Battlefield Promotion to U.S. Army First Lieutenant + + + + + + + + + A Temporary Promotion to U.S. Army Lieutenant Colonel Rank, executed during wartime, in which some U.S. Army Major General appoints a Soldier within their command to a vacant position authorized for the U.S. Army Lieutenant Colonel Rank, and advances the Soldier to that rank for the duration of their service in the qualifying position. + AR600-8-29 "Officer Promotions", §3–23, "Temporary (brevet) promotions" + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Army Regulation 600–8–29, Section II, §1-8(2)(c)(1-4): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Battlefield Promotion to U.S. Army Lieutenant Colonel Rank + + + + + + + + + A Temporary Promotion to U.S. Army Major Rank, executed during wartime, in which some U.S. Army Major General appoints a Soldier within their command to a vacant position authorized for the U.S. Army Major Rank, and advances the Soldier to that rank for the duration of their service in the qualifying position. + Army Regulation 600–8–29, Section II, §1-8(2)(c)(1-4): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Battlefield Promotion to U.S. Army Major Rank + + + + + + + + + In AR600-8-29, at §3-23c(1)(a) it says an officer is eligible for brevet promoton if they "possess the knowledge, skills, behaviors and preferences for assignment to a designated critical position." At §3-23c(1)(c) "To be considered for temporary promotion, eligible officers must be serving in, or on orders to, one of the designated critical positions." + +I am not sure I follow understand the reference to "preferences for assignment". The second quoted sentence implies that 1LTs are only brevet promoted if they are either already serving in a critical position designated for the MAJ rank, or on order to serve in one. Preference and orders seem at odds. + +I know that temporary promotions are terminated once the officer leaves a qualifying position. Does it have something to do with the Army preferring not to brevet promote officers who are ordered to take on a critical position but do not have a preference for it? + A Temporary Promotion to U.S. Army Captain Rank in which some U.S. Army First Lieutenant who: i) is serving in, or on orders to, a designated critical position, authorized for the U.S. Army Captain Rank; and ii) possesses critical skills required for the designated position, is appointed by the President, with the advise and consent of the Senate, to the U.S. Army Captain Rank for the duration of his or her continued service in a designated critical position. + A Temporary Promotion to U.S. Army Captain Rank in which some U.S. Army First Lieutenant who: i) is serving in, or on orders to, a position which the Secretary of the Army has designated as a critical position and as one to be held by a U.S. Army Captain; and ii) possesses a skill which the Secretary of the Army has determined to be in critically short supply and has designated as a requirement for the position, is appointed by the President, with the advise and consent of the Senate, to the U.S. Army Captain Rank for the duration of their continued service in a qualifying position. + 10 USC 605, "Promotion to certain grades for officers with critical skills: colonel, lieutenant colonel, major, captain; captain, commander, lieutenant commander, lieutenant" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section605&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + AR600-8-29 "Officer Promotions", §3–23, "Temporary (brevet) promotions" + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Brevet promotions are part of a system. The Commanding General, Human Resources Command (CG, HRC) issues a message to unit commanders for nominations of crucial positions. They then submit reports containing their nominations to the Secretary of the Army (SECARMY). In these reports, commander provide updated information concerning the knowledge, skills, and behavior required for the position. The Director of Military Personnel and Management (DMPM) then orchestrates an HRC panel to confirm the positions as crucial. Once the SECARMY approves these confirmations, he/she designates the positions as critical on a list published by DMPM on the HRC website. Then U.S. Army First Lieutenants who possess the appropriate skills, and who either serve or will be serving in the designated critical positions, are recommended by unit commanders for brevet promotion. Brevet promotion selection boards are then held, in which the board nominates officers based on the alignment of the officer’s knowledge, skills and behavior with the requirements of the critical position. Those nominated officers who are approved for promotion by the SECARMY are then temporarily appointed by the President, with the advise and consent of the Senate, to the rank of CPT. + +While serving temporarily that the rank of CPT, the officer serves concurrently in their permanent grade. This means brevet-promoted officer can be considered for permanent promotion to the rank of CPT. + +Temporary promotions to CPT are terminated when a modification of an officer's orders render the officer no longer eligible for that rank, on the date the officer leaves the qualifying position. + +[See AR600-8-29 "Officer Promotions", §3–23, "Temporary (brevet) promotions"] + Positions are designated as critical, and are determined to be authorized for the U.S. Army Captain Rank, by the Secretary of the Army. Such position are designated as critical when there is a critical shortage of officers at the rank of Captain who possess the skills required to serve in those positions. Thus, lower ranked officers who possess the required skills are temporarily promoted to the rank of Captain to alleviate the shortage. + Shane Babcock + Act of Brevet Promotion to U.S. Army Captain Rank + + + + + + + + + A Temporary Promotion to U.S. Army Colonel Rank in which some U.S. Army Lieutenant Colonel who: i) is serving in, or on orders to, a designated critical position, authorized for the U.S. Army Colonel Rank; and ii) possesses critical skills required for the designated position, is appointed by the President, with the advise and consent of the Senate, to the U.S. Army Colonel Rank, for the duration of their service in a designated critical position. + A Temporary Promotion to U.S. Army Colonel Rank in which some U.S. Army Lieutenant Colonel who: i) is serving in, or on orders to, a position which the Secretary of the Army has designated as a critical position and as one to be held by a U.S. Army Colonel; and ii) possesses a skill which the Secretary of the Army has determined to be in critically short supply and has designated as a requirement for the position, is appointed by the President, with the advise and consent of the Senate, to the U.S. Army Colonel Rank, but only for the duration of their service in a qualifying position. + 10 USC 605, "Promotion to certain grades for officers with critical skills: colonel, lieutenant colonel, major, captain; captain, commander, lieutenant commander, lieutenant" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section605&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + AR600-8-29 "Officer Promotions", §3–23, "Temporary (brevet) promotions" + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Brevet Promotion to U.S. Army Colonel Rank + + + + + + + + + A Temporary Promotion to U.S. Army Lieutenant Colonel Rank in which some U.S. Army Major who: i) is serving in, or on orders to, a designated critical position, authorized for the U.S. Army Lieutenant Colonel Rank; and ii) possesses critical skills required for the designated position, is appointed by the President, with the advise and consent of the Senate, to the U.S. Army Lieutenant Colonel Rank, for the duration of their service in a designated critical position. + A Temporary Promotion to U.S. Army Lieutenant Colonel Rank in which some U.S. Army Major who: i) is serving in, or on orders to, a position which the Secretary of the Army has designated as a critical position and as one to be held by a U.S. Army Lieutenant Colonel; and ii) possesses a skill which the Secretary of the Army has determined to be in critically short supply and has designated as a requirement for the position, is appointed by the President, with the advise and consent of the Senate, to the U.S. Army Lieutenant Colonel Rank, but only for the duration of their service in a qualifying position. + 10 USC 605, "Promotion to certain grades for officers with critical skills: colonel, lieutenant colonel, major, captain; captain, commander, lieutenant commander, lieutenant" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section605&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + AR600-8-29 "Officer Promotions", §3–23, "Temporary (brevet) promotions" + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Brevet Promotion to U.S. Army Lieutenant Colonel Rank + + + + + + + + + A Temporary Promotion to U.S. Army Major Rank in which some U.S. Army Captain who: i) is serving in, or on orders to, a designated critical position, authorized for the U.S. Army Major Rank; and ii) possesses critical skills required for the designated position, is appointed by the President, with the advise and consent of the Senate, to the U.S. Army Major Rank, for the duration of their service in a designated critical position. + A Temporary Promotion to U.S. Army Major Rank in which some U.S. Army Captain who: i) is serving in, or on orders to, a position which the Secretary of the Army has designated as a critical position and as one to be held by a U.S. Army Major; and ii) possesses a skill which the Secretary of the Army has determined to be in critically short supply and has designated as a requirement for the position, is appointed by the President, with the advise and consent of the Senate, to the U.S. Army Major Rank, but only for the duration of their service in a qualifying position. + 10 USC 605, "Promotion to certain grades for officers with critical skills: colonel, lieutenant colonel, major, captain; captain, commander, lieutenant commander, lieutenant" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section605&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + AR600-8-29 "Officer Promotions", §3–23, "Temporary (brevet) promotions" + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Brevet Promotion to U.S. Army Major Rank + + + + + + + + + An Act of Promotion to U.S. Army Brigadier General Rank in which Human Resources Command publishes a promotion order declaring that some U.S. Army Colonel, who has been approved for advancement to the U.S. Army Brigadier General Rank by the President (or the President's designee) with the advise and consent of the Senate, is advanced to that rank effective on the date announced in the order. + 10 USC, 624: https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section624&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + AR600-8-29, Chapter 3, Managing Promotions: +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Shane Babcock + Act of Centralized Promotion to U.S. Army Brigadier General Rank + + + + + + + + + Part of the U.S. Army's centralized officer promotion process + Promotions to the rank of CPT, unlike the rank of MAJ or above, only require the approval of the President and not the Senate. + Act of Promotion to U.S. Army Captain Rank in which Human Resources Command publishes a promotion order which declares that some U.S. Army First Lieutenant, who has been approved for advancement to the U.S. Army Captain Rank by the President (or the President's designee), is advanced to that rank effective on the date announced in the order. + Army Regulation 600–8–29, Chapter 3, Managing Promotions: +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Section 624, Title 10, United States Code (10 USC 624): + There are two sorts of centralized promotion to the U.S. Army Captain Rank. + +The first uses the same procedure as in other commissioned officer promotions. A promotion selection board (PSB) is convened and the board recommends eligible U.S. Army First Lieutenants for promotion. Once the board's recommendations are approved by the Secretary of the Army (SECARMY) and by the President (or the President's designee) the eligible officers are placed on a Centralized Officer Promotion List, from which they are subsequently promoted according to the needs of the Army. + +The second procedure is slightly different in that promotion selection boards are not convened. From AR600-8-29, 2-13a: "When the needs of the Army require, the SECARMY may recommend the promotion of all 1LTs in the promotion zone who are fully qualified for promotion to CPT using an all-qualified officers list in lieu of convening a PSB." The records of all eligible 1LTs are reviewed by a promotion screening authority, and then the screening authority places the names of officers on a recommended all-fully qualified officers list unless the officer's file contains on or more of the documents listed in AR600-8-29, 2-13a(2)(a-e). The list is then sent to the SECARMY for approval before being transmitted to the President for approval. Once approved by the President, all the 1LTs named on the list may then be promoted from the list. This procedure is used only in cases where the SECARMY has determined that all officers named on the list are needed in the grade of CPT in order to accomplish mission objectives. See 10 USC 624(a)(3)(A-E). + Shane Babcock + Act of Centralized Promotion to U.S. Army Captain Rank + + + + + + + + + Part of the U.S. Army's centralized officer promotion process + An Act of Promotion to U.S. Army Colonel Rank in which Human Resources Command publishes a promotion order which declares that some U.S. Army Lieutenant Colonel, who has been approved for advancement to the U.S. Army Colonel Rank by the President (or the President's designee) with the advise and consent of the Senate, is advanced to that rank effective on the date announced in the order. + 10 USC, 624: https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section624&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Army Regulation 600–8–29, Chapter 3, Managing Promotions: +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Centralized Promotion to U.S. Army Colonel Rank + + + + + + + + + An Act of Promotion to U.S. Army Lieutenant Colonel Rank in which Human Resources Command publishes a promotion order which declares that some U.S. Army Major, who has been approved for advancement to the U.S. Army Lieutenant Colonel Rank by the President (or the President's designee) with the advise and consent of the Senate, is advanced to that rank effective on the date announced in the order. + An Act of Promotion to U.S. Army Lieutenant Colonel Rank in which some U.S. Army Major, who is named on a centralized officer promotion list for the U.S. Army Lieutenant Colonel Rank, is advanced to that rank by Human Resources Command via publication of a Department of the Army promotion order, with the approval of the President and confirmation of the U.S. Senate. + Act of Centralized Promotion to U.S. Army Lieutenant Colonel Rank + + + + + + + + + An Act of Promotion to U.S. Army Major General Rank in which Human Resources Command publishes a promotion order declaring that some U.S. Army Brigadier General, who has been approved for advancement to the U.S. Army Major General Rank by the President (or the President's designee) with the advise and consent of the Senate, is advanced to that rank effective on the date announced in the order. + 10 USC, 624: https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section624&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + AR600-8-29, Chapter 3, Managing Promotions: +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Centralized Promotion to U.S. Army Major General Rank + + + + + + + + + Part of the U.S. Army's centralized officer promotion process. + An Act of Promotion to U.S. Army Major Rank in which Human Resources Command publishes a promotion order which declares that some U.S. Army Captain, who has been approved for advancement to the U.S. Army Major Rank by the President (or the President's designee) with the advise and consent of the Senate, is advanced to that rank effective on the date announced in the order. + 10 USC, 624: https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section624&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + AR600-8-29, Chapter 3, Managing Promotions: +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Centralized Promotion to U.S. Army Major Rank + + + + + + + + + An Act of U.S. Army Commissioned Officer Promotion in which some U.S. Army Commissioned Officer, who holds a rank above the U.S. Army Second Lieutenant Rank but below the U.S. Army Major General Rank, and who has been approved by the President (or the President's designee) for advancement to the next higher U.S. Army Commissioned Officer Rank, is advanced to that rank via publication of a Human Resources Command promotion order, effective the date announced in the order. Promotions to the U.S. Army Major Rank and above are made with the advice and consent of the Senate. + 10 USC, 624: https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section624&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Army Regulation 600–8–29, Chapter 3, Managing Promotions: +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + The act of promotion should be distinguished from the act of promotion pin-on, a ceremonial procedure in which the rank insignia is physically pinned on, typically by another officer who is senior in rank, or by a family member of the officer promoted. This ceremony is sometimes conducted before the effective date announced in the promotion order. + +The effective date of the promotion may often be retroactive to the date the promotion order was published. + +Promotions can be revoked if: + +-The officer declines the promotion prior to the effective date of the promotion order. + +-It is subsequently determined that the officer is not qualified for promotion. + Shane Babcock + DEFINED CLASS + Act of Centralized U.S. Army Commissioned Officer Promotion + + + + + + + + + This is meant to be a defined class. + An Act of U.S. Army Enlisted Promotion in which some Enlisted Soldier is assigned some U.S. Army Military Rank of the grade E-7, E-8, or E-9, after being selected for that rank by centralized promotion selection board conducted at some army personnel headquarters. + Act of Centralized U.S. Army Enlisted Promotion + + + + + + + + + An Act of U.S. Army Warrant Officer Promotion in which some U.S. Army Chief Warrant Officer 2, 3 or 4, who is named in a centralized promotion list for the next highest U.S. Army Warrant Officer Rank, is advanced to that rank by Human Resources Command via publication of a Department of the Army promotion order. + AR600-8-29, Officer Promotions, Chapter 3, Managing Promotions +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + The officer is advanced to the next rank effective on the Active Date of Rank that is prescribed in the promotion order. See AR600-8-29, Officer Promotions, Chapter 3, Managing Promotions, Paragraph 3-3. + Act of Centralized U.S. Warrant Officer Promotion + + + + + + + + + + + + + + + Should be in a higher level ontology. + An Act of Official Documentation in which some head of state, or some other Agent authorized to act in the name of that head of state, appoints another Agent to some high office, and which has as output some Commission. + https://en.wikipedia.org/wiki/Commission_(document) + Act of Commissioning + + + + + + + + + + + + + + + An Act of Commissioning through which some head of state, or some other Agent authorized to act in the name of that head of state, appoints an Agent to some Commissioned Officer Rank, and which has as output some Military Commission. + https://en.wikipedia.org/wiki/Commission_(document) + Act of Military Commissioning + + + + + + + + + I have avoided language like 'soldier fully eligible for promotion' in the definitions for Acts of Promotion. + +Military regulations do prescribe that only fully eligible soldiers are to be promoted. But erroneous promotions -- promotions of soldiers who were in fact not fully qualified -- do happen. Such language would falsely exlclude such instances. + An Act of Promotion in which an Agent, realizing an Authority Role derived from that Agent's position within some Government, Military Department, or Armed Force, advances another Agent, who holds a Military Rank within some Armed Force, to a higher Military Rank. + A Government can be an Agent in act of promotion, for instance in the case of the President approving promotions to the commissioned officer ranks of Major and above, by and with the advice and consent of the Senate. The various civilian led Military Departments serve as Agents in acts of military promotion that are centralized at the headquarters of the respective military departments. But promotions also occur at the unit level, where the promotion authority is a unit commander. + +According to 10 USC 603: Appointments in time of war or national emergency: + +"In time of war, or of national emergency declared by the Congress or the President after November 30, 1980, the President may appoint any qualified person (whether or not already a member of the armed forces) to any officer grade in the Army, Navy, Air Force, Marine Corps, or Space Force, except that appointments under this section may not be made in grades above major general or rear admiral. Appointments under this section shall be made by the President alone, except that an appointment in the grade warrant officer, W–1, shall be made by warrant by the Secretary concerned." + +This provision allows the President to appoint to some grade of military rank a person that is not already a member of an armed force. This is not a counterexample to the definition, for an original appointment in this sense is not a promotion in military rank, just as the assignment of a newly enlisted U.S. army soldier to the rank of Private is not a promotion in rank. Similarly, when an ROTC officer cadet is newly commissioned as an officer in the U.S. Army and assumes the rank of Second Lieutenant, this is not a case of a promotion in Military Rank. It is referred to only as an appointment. [The same applies the appointment of soldiers to the rank of Warrant Officer 1?] + +The exclusion of such cases seem to be accounted for in relevant military regulations. For instance, the AIR FORCE INSTRUCTION 36-2501, 'Officer Promotions and Selective Continuation': explicitly defines 'promotion' in its terms list as "An advancement in grade that is not the result of a new original appointment." (see p. 91) + +This of course raises an issue. Officer cadets have ranks, and are technically, taking on a higher Military Rank. The definition may need refinement so that it does not count this as a case of promotion. + Shane Babcock + Act of Military Rank Promotion + + + + + + + + + 10/14/2021: I am not in love with the current label for this class, but I am unsure what would be better. + +It is a sister class of 'Act of Battlefield Promotion to U.S. Army First Lieutenant Rank'. + +I call it normal because it is part of a normal promotion procedure (recommendation via automated system or processing of DA Form 78), but it is also a decentralized form of promotion, as promotions are made by a commander at the unit level rather than at HQDA. And technically, battlefield promotion is also a decentralized promotion executed by a LTC at the unit level. + A U.S. Army Promotion Approval Authority is any commander holding the U.S. Army Lieutenant Colonel Rank or higher, or who is frocked at the LTC Rank, and is authorized to promote an officer to the LTC rank or temporary CW2 rank. + An Act of Promotion to U.S. Army First Lieutenant Rank in which some U.S. Army Second Lieutenant recommended for promotion to the U.S. Army First Lieutenant Rank, either via the Army's automated promotion system or via Department of the Army Form 78, is advanced to that rank, with the approval of the President, by some local commander of the promotee who is a U.S. Army Promotion Approval Authority. + Army Regulation 600–8–29, Section II, §1-7: + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Army Regulation 600–8–29, Section IV, §3-17: + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Normal Promotion to U.S. Army First Lieutenant Rank + true + + + + + + + + + Should be in a higher ontology. + Since Agents can be either individual person's, or an organization, the Agent in question may be a promotion board. + An Act of Declarative Communication in which an Agent, realizing an Authority Role derived from that Agent's rank or position within some Organization, advances a Person within that Organization, or related Organization, to a higher rank or position. + Act of Promotion + + + + + + + + + Act of Promotion to U.S. Air Force Chief Master Sergeant Rank + + + + + + + + + Act of Promotion to U.S. Air Force Master Sergeant Rank + + + + + + + + + Act of Promotion to U.S. Air Force Senior Master Sergeant Rank + + + + + + + + + An Act of U.S. Army Commissioned Officer Promotion in which some U.S. Army Soldier of a lower rank is assigned the U.S. Army Brigadier General Rank. + Shane Babcock + Act of Promotion to U.S. Army Brigadier General Rank + + + + + + + + + An Act of U.S. Army Commissioned Officer Promotion in which some U.S. Army Soldier of a lower rank is assigned the U.S. Army Captain Rank. + Shane Babcock + Act of Promotion to U.S. Army Captain Rank + + + + + + + + + Commanders in grade of LTC or above, or frocked to LTC, are authorized to promote officers to CW2. +AR600-8-29, 1-7 + +PAM600-3, 5-10b. The officer's local commander is approves promotion to CW2. + Act of Promotion to U.S. Army Chief Warrant Officer 2 Rank + + + + + + + + + An Act of Centralized U.S. Army Warrant Officer Promotion in which some U.S. Army Chief Warrant Officer 2, who is named on a centralized promotion list for the U.S. Army Chief Warrant Officer 3 Rank, is advanced to that rank by Human Resources Command via publication of a Department of the Army promotion order. + AR600-8-29 'Officer Promotions', Chapter 3; especially 3-2f, 3-3b, 3-4c. +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + CWO-2's who are eligible for promotion to the Chief Warrant Officer 3 Rank are considered for promotion at the convening of a Headquarters, Department of the Army centralized selection board. The board then recommends for promotion those officers whom it considers best qualified for promotion. Once the board's report has been reviewed and approved of by the Secretary of the Army, the Secretary places the names of the CWO-2's approved for promotion on a single promotion list in the order of their seniority on the active-duty list. When additional warrant officers are needed to fill vacancies at the Chief Warrant Officer 3 Rank, officers are promoted from the list according to the order they appear on the list. Officers on a given promotion list are only promoted following the promotion of all CWO-2's from the previous promotion list. The effective date of promotion is the effective Active Date of Rank prescribed in the promotion order. + +See 10 USC Chapter 33A and AR600-8-29 'Officer Promotions', Chapter 3, Managing Promotions. + +The promotion ceremony may be conducted before the effective date of promotion, but only under certain conditions. See AR600-8-29, 3-12. + Act of Promotion to U.S. Army Chief Warrant Officer 3 Rank + + + + + + + + + An Act of Centralized U.S. Army Warrant Officer Promotion in which some U.S. Army Chief Warrant Officer 3, who is named on a centralized promotion list for the U.S. Army Chief Warrant Officer 4 Rank, is advanced to that rank by Human Resources Command via publication of a Department of the Army promotion order. + AR600-8-29 'Officer Promotions', Chapter 3; especially 3-2f, 3-3b, 3-4c. +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + CWO-3's who are eligible for promotion to the Chief Warrant Officer 4 Rank are considered for promotion at the convening of a Headquarters, Department of the Army centralized selection board. The board then recommends for promotion those officers whom it considers best qualified for promotion. Once the board's report has been reviewed and approved of by the Secretary of the Army, the Secretary places the names of the CWO-3's approved for promotion on a single promotion list in the order of their seniority on the active-duty list. When additional warrant officers are needed to fill vacancies at the Chief Warrant Officer 4 Rank, officers are promoted from the list according to the order they appear on the list. Officers on a given promotion list are only promoted following the promotion of all CWO-3's from the previous promotion list. The effective date of promotion is the effective Active Date of Rank prescribed in the promotion order. + +See 10 USC Chapter 33A and AR600-8-29 'Officer Promotions', Chapter 3, Managing Promotions. + +The promotion ceremony may be conducted before the effective date of promotion, but only under certain conditions. See AR600-8-29, 3-12. + Act of Promotion to U.S. Army Chief Warrant Officer 4 Rank + + + + + + + + + An Act of Centralized U.S. Army Warrant Officer Promotion in which some U.S. Army Chief Warrant Officer 4, who is named on a centralized promotion list for the U.S. Army Chief Warrant Officer 5 Rank, is advanced to that rank by Human Resources Command via publication of a Department of the Army promotion order. + AR600-8-29 'Officer Promotions', Chapter 3; especially 3-2f, 3-3b, 3-4c. +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + CWO-4's who are eligible for promotion to the Chief Warrant Officer 5 Rank are considered for promotion at the convening of a Headquarters, Department of the Army centralized selection board. The board then recommends for promotion those officers whom it considers best qualified for promotion. Once the board's report has been reviewed and approved of by the Secretary of the Army, the Secretary places the names of the CWO-4's approved for promotion on a single promotion list in the order of their seniority on the active-duty list. When additional warrant officers are needed to fill vacancies at the Chief Warrant Officer 5 Rank, officers are promoted from the list according to the order they appear on the list. Officers on a given promotion list are only promoted following the promotion of all CWO-4's from the previous promotion list. The effective date of promotion is the effective Active Date of Rank prescribed in the promotion order. + +See 10 USC Chapter 33A and AR600-8-29 'Officer Promotions', Chapter 3, Managing Promotions. + +The promotion ceremony may be conducted before the effective date of promotion, but only under certain conditions. See AR600-8-29, 3-12. + Act of Promotion to U.S. Army Chief Warrant Officer 5 Rank + + + + + + + + + An Act of U.S. Army Commissioned Officer Promotion wherein some U.S. Army Soldier of a lower rank is assigned the U.S. Army Colonel Rank. + Shane Babcock + Act of Promotion to U.S. Army Colonel Rank + + + + + + + + + + + + + + + This is isn't correct. See 1-10 AR600-8-19 + An Act of Unit Level U.S. Army Enlisted Promotion in which some U.S. Army unit commander advances some U.S. Army soldier under their command to the U.S. Army Corporal Rank. + Act of Promotion to U.S. Army Corporal Rank + + + + + + + + + An Act of U.S. Army Commissioned Officer Promotion in which some U.S. Army Soldier of a lower rank is assigned the U.S. Army First Lieutenant Rank. + Act of Promotion to U.S. Army First Lieutenant Rank + + + + + + + + + Act of Promotion to U.S. Army First Sergeant Rank + An Act of U.S. Army Enlisted Promotion wherein some authorized promotion authority advances some enlisted soldier to the U.S. Army First Sergeant Rank. + + + + + + + + + The U.S. Army General Rank is not held permanently, as the rank is always tied to a temporary position of office to which it is linked. Thus an officer can only hold the rank while serving in the relevant position (though there are some exceptions). See: + +https://en.wikipedia.org/wiki/General_(United_States) + +U.S. Army Brigadier Generals and Major Generals temporarily serving at the U.S. Army General Rank retain their permanent grade of O-7 and O-9 respectively. Per: 10 USC 601(c)(1). + +Furthermore, an officer who permanently holds the U.S. Army Brigadier General Rank while temporarily serving at the U.S. Army General Rank is to be considered for a permanent promotion to the U.S. Army Major General Rank as if he or she was serving in their current permanent rank. Per: 10 USC 601(c)(2). + An Act of U.S. Army Commissioned Officer Promotion wherein the President, with the advice and confirmation of the U.S. Senate, temporarily assigns some active duty U.S. Army Brigadier General, or U.S. Army Major General, to a position of importance and responsibility which the President has designated must carry the U.S. Army General Rank. + Section 601, Title 10, United States Code (10 USC 601): + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section601&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + +Army Regulation 600–8–29, §1-6(a): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + The carrying of the U.S. Army General Rank is linked to the holding of the position. The officer in question assumes the rank by virtue of being assigned to a position the President has deemed must carry with it that rank. + Act of Promotion to U.S. Army General Rank + + + + + + + + + An Act of U.S. Army Commissioned Officer Promotion wherein some U.S. Army Soldier of a lower rank is assigned the U.S. Army Lieutenant Colonel Rank. + Act of Promotion to U.S. Army Lieutenant Colonel Rank + + + + + + + + + Act of U.S. Army Commissioned Officer Promotion wherein the President, with the advice and confirmaton of the U.S. Senate, temporarily assigns some active duty U.S. Army Brigadier General, or U.S. Army Major General, to a position of importance and responsibility which the President has designated must carry the U.S. Army Lieutenant General Rank. + Section 601, Title 10, United States Code (10 USC 601): + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section601&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + +Army Regulation 600–8–29, §1-6(a): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Act of Promotion to U.S. Army Lieutenant General + + + + + + + + + An Act of U.S. Army Commissioned Officer Promotion in which some U.S. Army Soldier of a lower rank is assigned the U.S. Army Major General Rank. + Act of Promotion to U.S. Army Major General Rank + + + + + + + + + An Act of U.S. Army Commissioned Officer Promotion in which some U.S. Army Soldier of a lower rank is assigned the U.S. Army Major Rank. + Act of Promotion to U.S. Army Major Rank + + + + + + + + + An Act of U.S. Army Enlisted Promotion wherein some authorized promotion authority advances some enlisted soldier to the U.S. Army Master Sergeant Rank. + Act of Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + + + + + + + An Act of Unit Level U.S. Army Enlisted Promotion in which some U.S. Army unit commander advances some Private Second Class under their command to the U.S. Army Private First Class Rank. + Commanders authorized to promote Soldiers to the ranks of PV2, PFC, and SPC, include company, troop, battery, and separate detachment commanders. + +See Paragraph 1-10b (p. 5) +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Act of Promotion to U.S. Army Private First Class Rank + + + + + + + + + + + + + + + An Act of Unit Level U.S. Army Enlisted Promotion in which some U.S. Army unit commander advances some U.S. Army Private under their command to the U.S. Army Private Second Class Rank. + Commanders authorized to promote Soldiers to the ranks of PV2, PFC, and SPC, include company, troop, battery, and separate detachment commanders. + +See Paragraph 1-10b (p. 5) +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Act of Promotion to U.S. Army Private Second Class Rank + + + + + + + + + + + + + + + An Act of Centralized U.S. Army Enlisted Promotion in which some U.S. Army Staff Sergeant, who was selected by a Centralized Promotion Board at Headquarters, Department of the Army for advancement to the U.S. Army Sergeant First Class Rank, is advanced to that rank by the Commanding General, U.S. Army Human Resources Command. + See 4.1a (p. 64): +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Act of Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + + + + + + + An Act of U.S. Army Enlisted Promotion wherein some authorized promotion authority advances some enlisted soldier to the U.S. Army Sergeant Major Rank. + Act of Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + + + + + + + An Act of Semi-Centralized U.S. Army Enlisted Promotion wherein some U.S. Army Corporal, who is named on the monthly U.S. Army Sergeant and Staff Sergeant Promotion Recommended List, and whose promotion points meet or exceed the current promotion cutoff score, is officially selected by Headquarters, Department of the Army to advance to the U.S. Army Sergeant Rank on some effective date. + Army Regulation 600–8–19, §3-22a(2), §3-32a, §3-32d (pp. 56, 62-63): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Act of Promotion to U.S. Army Sergeant Rank + + + + + + + + + + + + + + + An Act of Unit Level U.S. Army Enlisted Promotion in which some U.S. Army unit commander advances some U.S. Army soldier under their command to the U.S. Army Specialist Rank. + Commanders authorized to promote Soldiers to the ranks of PV2, PFC, and SPC, include company, troop, battery, and separate detachment commanders. + +See Paragraph 1-10b (p. 5) +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Act of Promotion to U.S. Army Specialist Rank + + + + + + + + + + + + + + + An Act of Semi-Centralized U.S. Army Enlisted Promotion wherein some U.S. Army Sergeant, who is named on the monthly U.S. Army Sergeant and Staff Sergeant Promotion Recommended List, and whose promotion points meet or exceed the current promotion cutoff score, is officially selected by Headquarters, Department of the Army to advance to the U.S. Army Staff Sergeant Rank on some effective date. + Army Regulation 600–8–19, §3-22a(2), §3-32a, §3-32d (pp. 56, 62-63): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Act of Promotion to U.S. Army Staff Sergeant Rank + + + + + + + + + Act of Promotion to U.S. Marine Corps Private First Class Rank + + + + + + + + + Act of Promotion to U.S. Navy Captain Rank + + + + + + + + + Act of Promotion to U.S. Navy Commander Rank + + + + + + + + + Act of Promotion to U.S. Navy Lieutenant Commander Rank + + + + + + + + + Act of Promotion to U.S. Navy Lieutenant Junior Grade Rank + + + + + + + + + Act of Promotion to U.S. Navy Lieutenant Rank + + + + + + + + + Act of Promotion to U.S. Navy Rear Admiral Lower Half Rank + + + + + + + + + Act of Promotion to U.S. Navy Rear Admiral Rank + + + + + + + + + Act of Semi-Centralized U.S. Army Enlisted Promotion + + + + + + + + + Act of U.S. Air Force Commissioned Officer Promotion + + + + + + + + + Act of U.S. Air Force Enlisted Promotion + + + + + + + + + An Act of Military Rank Promotion in which an Agent holding an Authority Role within either the U.S. Government, the Department of the Air Force, or the U.S. Air Force, realizes that authority by advancing some U.S. Air Force Airman to a Military Rank higher than the Airman's current rank. + Act of U.S. Air Force Promotion + + + + + + + + + 10 USC 618: Actions on reports of selection boards +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section618&f=treesort&num=0&saved=%7CKHRpdGxlOjEwIHNlY3Rpb246NjExIGVkaXRpb246cHJlbGltKSBPUiAoZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjExKQ%3D%3D%7CdHJlZXNvcnQ%3D%7C%7C0%7Cfalse%7Cprelim + +Secretary of the Department concerned reviews the report, then sends it to the Chairman of the Joint Chiefs of Staff for review. And later sends it to the president for approval. Then the secretary places the names of those approved on a promotion list (10 USC 624) + AR 600–8–29, Officer Promotions, 2-11e: + +'The SECARMY has authorized that certain promotion selection boards convened to select officers for advancement to the grades of MAJ, LTC, and COL may recommend that officers of particular merit, from among those officers selected for promotion, be placed higher on the promotion list, and will be sequenced by their board established order of merit, rather than by their prior dates of rank. The remaining selectees on the promotion list will be promoted in order of their seniority on the ADL." + AR600-8-29, Officer Promotions, 3-1e: + +"If more than one promotion list exists for a grade and competitive category, promotions from the most recent list may not begin until promotions from the older list have been completed (except for officers from the older list whose promotion have been delayed." + +3-2f: promotion lists are not promotion orders. "Promotions will only be officially announced by HRC promotion orders." + +3-3a/b: promotion sequence numbers for officers to be promoted are announced in monthly MILPER messages by HRC. Then HRC publishes a consolidation of DA special orders which include grade an effective active date of rank. + Current definitions for acts of promotion to MAJ and above are worded so that the advancement to those ranks are conducted 'with the approval of the President and confirmation of the U.S. Senate.' + +These classes concern specifically the act of promotion. From my understanding, the act of promotion involves the publication of DA promotion order specifying the effective date of promotion, which is the Active Date of Rank prescribed on the order. + +From what I understand, if the Senate confirms the promotion list on which a soldier is named, then that soldier can be promoted. A promotion list is essentially a list of officers that have been recommended for promotion in the report of a promotion selection board, and have subsequently been approved for promotion by the President (or his designee) after consideration the board's report. But the actual promotion from the list doesn't happen until a need for an officer at that rank opens up. [Is this when promotion orders are published? I haven't found anything in the regulation definitively confirming that, so the timing-question is an issue]. + +The Senate confirmation occurs prior to the publication of a promotion order. Senate confirmation then is part of the promotion process which culminates in the act of promotion. + +In defense of my defintions, and their claim that the agent in acts of promotion is Human Resources Command (the organization--remember organizations can be Agents in Acts): + +It should be noted that according to AR600-8-29: + +§1-6(a): promotions are general staff responsibility for the Deputy Chief of Staff (DCS), G-1. + +-The DSC, Gary Brito, is a LtGen in command of the Deputy Chief of Staff G-1 Personnel of the United States Army, an organization that is headquartered at the Pentagon. Human Resources Command, which is stationed at Fort Knox, is a part of the former organization. + +Also according to AR600-8-29: + +§1-4(d)(2): on behalf of the DCS, G-1, the commanding general (CG), HRC conducts and supervises officer promotion functions. +[The DSC has delegated to the CG, HRC control over centralized Army promotions. Similar to how the President delegates his authority to approve the recommendations of promotion selection boards to the Secretary of Defense, who has delegated that authority to the Principal Deputy Under Secretary of Defense for Personnel and Readiness (§2-10a) + +This implies that HRC is an agent in promotions. + HQDA promotion orders for advancement to the U.S. Army Captain Rank or higher are announced by Human Resources Command when additional officers in those ranks are needed within each competitive category, and the order of promotions are made according to the order in which names appear on the promotion list. Officer names are placed on the promotion list in order of seniority or based on particular merit, as determined by the promotion selection board. + +The above is in accordance with Title 10 USC, Subtitle A, Part II, Ch. 36, Subchapter II, §624(a)(1-2) + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section624&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + +See also AR600-8-29, Officer Promotions, 3-1 + I have been trying to square what is said in Title 10 USC, Subtitle A, Part II, Ch. 36, Subchapter II, §624 with what is said in the most relevant Army regulation. In Chapter 3 of AR600-8-29, 'Officer Promotions', everything indicates that officer are promoted to the next rank from promotion lists, at least up until MAJ GEN. A promotion selection board determines which eligible soldiers are best qualified for promotion to the next rank and provides a report of their recommendation to the SECARMY for review. Eventually, this report is sent to the President for approval, or the President's designee (according to §2-10a, the President has delegated this authority to SECDEF, who in turn has designated it to the Principal Deputy Under Secretary of Defense for Personnel and Readiness). This is because in the case of officers, promotion boards are making recommendations to the president. + +Once the President or the president's designee approves the board report, it is compiled into a promotion list by the SECARMY, ordering names of those approved for promotion according to seniority, but also merit as determined by the promotion board. Officers are given a promotion sequence number. And then officers on the list are basically waiting their turn to be promoted. An officer cannot be promoted from the list until there is a need for an officer at the rank (such as a position vacancy that requires or authorizes that rank). + +As far as promotions go, I am not sure exactly where, timing-wise, the Senate confirmation part actually comes in. The Air Force regulation on officer regulations makes clear the Senate role [https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2501/afi36-2501.pdf]. An officer cannot be promoted until the Senate confirms the promotion list that officer is named on. + +What I need to reconcile is this, from 10 USC: "(c) Appointments under this section shall be made by the President, by and with the advice and consent of the Senate". What this is referring to is appointments in the grade of MAJ or above. What does appointment here mean? Often I see that it is different from promotion. It means appointment to an office. It does not seem that it means appointment to a rank. I gather that it just means appointment to a billet or position that is held at that grade. + +On the other hand, AR600-8-29, §2-10b "Promotions to the grade of MAJ and above must be confirmed by the Senate in accordance with 10 USC 624(c)" citing the title 10 clause that appointments are made by the President with the advice and consent of the Senate. But I wonder if this is simply a case of the AR not making the fine-grained distinction between parts of the promotion process --such as promotion board recommendation and Senate confirmation of promotion lists, i.e. the Senate confirming that the soldiers are qualified for promotion--and the act of promotion that follows it, and is authorized by the preceding Senate confirmation of the promotion list. + +Of course, there are also appointments in the sense of appointments to positions within the grade. Is Senate confirmation of such position-appointments something separate? + An Act of U.S. Army Promotion in which an Agent holding an Authority Role within either the U.S. Government, the Department of the Army, or the U.S. Army, realizes that authority by advancing some U.S. Army Commissioned Officer to a higher U.S. Army Commissioned Officer Rank. + The act of promotion should be distinguished from the act of promotion pin-on, a ceremonial procedure in which the rank insignia is physically pinned on, typically by another officer who is senior in rank, or by a family member of the officer promoted. This ceremony is sometimes conducted before the effective date of promotion prescribed on the promotion order. + +The effective date of the promotion may sometimes even be retroactive to the date on which the act of promotion occurred. + Shane Babcock + Act of U.S. Army Commissioned Officer Promotion + + + + + + + + + An Act of Promotion in which an Agent holding an Authority Role in either the U.S. Army or the Department of the Army realizes that authority by advancing the Military Rank of some U.S. Army Enlisted Soldier. + Act of U.S. Army Enlisted Promotion + + + + + + + + + An Act of Military Rank Promotion in which an Agent holding an Authority Role within either the U.S. Government, the Department of the Army, or the U.S. Army, realizes that authority by advancing some U.S. Army Soldier to a Military Rank higher than the Soldier's current rank. + Shane Babcock + Act of U.S. Army Promotion + + + + + + + + + An Act of U.S. Army Service at Pay Grade E-7 wherein some Person serves in the U.S. Army Reserve at the U.S. Army Sergeant First Class Rank. + Act of U.S. Army Reserve Service at Pay Grade E-7 + + + + + + + + + Move to a higher Mid-level ontology extension of the Event Ontology? + An Act of U.S. Military Service wherein some Person serves as a member of the U.S. Army. + Act of U.S. Army Service + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the E-2 pay grade, at the U.S. Army Private Second Class Rank. + Act of U.S. Army Service at Pay Grade E-2 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the E-3 pay grade, at the U.S. Army Private First Class Rank. + Act of U.S. Army Service at Pay Grade E-3 + + + + + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein a Person serves in the E-4 pay grade, either at the U.S. Army Specialist Rank, at the U.S. Army Corporal Rank, or at at each of the ranks during separate temporal intervals. + Suppose a PFC is promoted to SPC and serves in E-4 as a SPC for 6 months, after which he is laterally promoted to CPL and serves in E-4 as a CPL for 8 months before promoting to SGT. + +All of the following are instances of a Act of Service at Pay Grade E-4: + +1) The soldier's 6 months of service as a SPC. + +2) The soldier's 8 months of service as a CPL. + +3) The soldier's 14 months of service which has 1) and 2) as consecutive proper temporal parts. + Act of U.S. Army Service at Pay Grade E-4 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the E-5 pay grade, at the U.S. Army Sergeant Rank. + Act of U.S. Army Service at Pay Grade E-5 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the E-6 pay grade, at the U.S. Army Staff Sergeant Rank. + Act of U.S. Army Service at Pay Grade E-6 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the E-7 pay grade, at the U.S. Army Sergeant First Class Rank. + Act of U.S. Army Service at Pay Grade E-7 + + + + + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein a Person serves in the E-8 pay grade, either at the U.S. Army Master Sergeant Rank, at the U.S. Army First Sergeant Rank, or at at each of the ranks during separate temporal intervals. + Act of U.S. Army Service at Pay Grade E-8 + + + + + + + + + Act of U.S. Army Service at Pay Grade E-9 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the O-1 pay grade, at at the U.S. Army Second Lieutenant Rank. + Act of U.S. Army Service at Pay Grade O-1 + + + + + + + + + + + + + + + + + + + Act of U.S. Army Service at Pay Grade O-10 + An Act of U.S. Army Service wherein some Person serves in the O-9 pay grade, at the U.S. Army General Rank. + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the O-2 pay grade, at the U.S. Army First Lieutenant Rank. + Act of U.S. Army Service at Pay Grade O-2 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the O-3 pay grade, at the U.S. Army Captain Rank. + Act of U.S. Army Service at Pay Grade O-3 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the O-4 pay grade, at the U.S. Army Major Rank. + Act of U.S. Army Service at Pay Grade O-4 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the O-5 pay grade, at the U.S. Army Lieutenant Colonel Rank. + Act of U.S. Army Service at Pay Grade O-5 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the O-6 pay grade, at the U.S. Army Colonel Rank. + Act of U.S. Army Service at Pay Grade O-6 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the O-7 pay grade, at the U.S. Army Brigadier General Rank. + Act of U.S. Army Service at Pay Grade O-7 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the O-8 pay grade, at the U.S. Army Major General Rank. + Act of U.S. Army Service at Pay Grade O-8 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service wherein some Person serves in the O-9 pay grade, at the U.S. Army Lieutenant General Rank. + Act of U.S. Army Service at Pay Grade O-9 + + + + + + + + + Act of U.S. Army Service at Pay Grade W-1 + + + + + + + + + Act of U.S. Army Service at Pay Grade W-2 + + + + + + + + + Act of U.S. Army Service at Pay Grade W-3 + + + + + + + + + Act of U.S. Army Service at Pay Grade W-4 + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service at Pay Grade E-4 , wherein some Person serves at the U.S. Army Corporal Rank. + Act of U.S. Army Service at U.S. Army Corporal Rank + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service at Pay Grade E-8, wherein a Person serves at the U.S. Army First Sergeant Rank. + Act of U.S. Army Service at U.S. Army First Sergeant Rank + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service at Pay Grade E-8, wherein a Person serves at the U.S. Army Master Sergeant Rank. + Act of U.S. Army Service at U.S. Army Master Sergeant Rank + + + + + + + + + + + + + + + + + + + An Act of U.S. Army Service at Pay Grade E-4, wherein some Person serves at the U.S. Army Specialist Rank. + Act of U.S. Army Service at U.S. Army Specialist Rank + + + + + + + + + An Act of U.S. Army Promotion wherein some U.S. Army promotion authority advances some U.S. Army Warrant Officer to the next highest U.S. Army Warrant Officer Rank. + Act of U.S. Army Warrant Officer Promotion + + + + + + + + + Act of U.S. Coast Guard Commissioned Officer Promotion + + + + + + + + + Act of U.S. Coast Guard Promotion + + + + + + + + + An Act of Military Rank Promotion in which an Agent holding an Authority Role within either the U.S. Government, the Department of the Navy, or the U.S. Navy, realizes that authority by advancing some U.S. Marine to a Military Rank higher than the Marine's current rank. + Act of U.S. Marine Corps Promotion + + + + + + + + + An Act of U.S. Military Service wherein some Person serves as a member of the U.S. Marine Corps. + Act of U.S. Marine Corps Service + + + + + + + + + + + + + + + + + + + + An Act of Military Service wherein a Person serves as a member of some branch of the U.S. Armed Forces. + Act of U.S. Military Service + + + + + + + + + An Act of U.S. Military Service which is composed of those Acts of U.S. Military Service a Person is an agent in over the duration of their time at their current Department of Defense Paygrade. + Act of U.S. Military Service at Current Department of Defense Pay Grade + + + + + + + + + An Act of U.S. Navy Promotion in which an Agent holding an Authority Role within either the U.S. Government, the Department of the Navy, or the U.S. Navy, realizes that authority by advancing some U.S. Navy Commissioned Officer to a higher U.S. Navy Commissioned Officer Rank. + Act of U.S. Navy Commissioned Officer Promotion + + + + + + + + + An Act of Military Rank Promotion in which an Agent holding an Authority Role within either the U.S. Government, the Department of the Navy, or the U.S. Navy, realizes that authority by advancing some U.S. Navy Sailor to a Military Rank higher than the Sailor's current rank. + Act of U.S. Navy Promotion + + + + + + + + + Act of U.S. Military Service wherein some Person serves as a member of the U.S. Navy. + Act of U.S. Navy Service + + + + + + + + + + + + + + + + + + + Act of U.S. Navy Service wherein some Person serves in the O-1 pay grade, at the U.S. Navy Ensign Rank. + Act of U.S. Navy Service at Pay Grade O-1 + + + + + + + + + + + + + + + + + + + Act of U.S. Navy Service wherein some Person serves in the O-2 pay grade, at the U.S. Navy Lieutenant Junior Grade Rank. + Act of U.S. Navy Service at Pay Grade O-2 + + + + + + + + + + + + + + + + + + + Act of U.S. Navy Service wherein some Person serves in the O-3 pay grade, at the U.S. Navy Lieutenant Rank. + Act of U.S. Navy Service at Pay Grade O-3 + + + + + + + + + + + + + + + + + + + Act of U.S. Navy Service wherein some Person serves in the O-4 pay grade, at the U.S. Navy Lieutenant Commander Rank. + Act of U.S. Navy Service at Pay Grade O-4 + + + + + + + + + + + + + + + + + + + Act of U.S. Navy Service wherein some Person serves in the O-5 pay grade, at the U.S. Navy Commander Rank. + Act of U.S. Navy Service at Pay Grade O-5 + + + + + + + + + + + + + + + + + + + Act of U.S. Navy Service wherein some Person serves in the O-6 pay grade, at the U.S. Navy Captain Rank. + Act of U.S. Navy Service at Pay Grade O-6 + + + + + + + + + + + + + + + + + + + Act of U.S. Navy Service wherein some Person serves in the O-7 pay grade, at the U.S. Navy Rear Admiral Lower Half Rank. + Act of U.S. Navy Service at Pay Grade O-7 + + + + + + + + + An Act of U.S. Army Service at Pay Grade E-7 wherein some Person serves in the U.S. Regular Army at the U.S. Army Sergeant First Class Rank. + Act of U.S. Regular Army Service at Pay Grade E-7 + + + + + + + + + Act of U.S. Space Force Commissioned Officer Promotion + + + + + + + + + Act of U.S. Space Force Promotion + + + + + + + + + The promotion authority in these cases is the soldier's unit commander. + Act of Decentralized U.S. Army Enlisted Promotion + Act of Unit Level U.S. Army Enlisted Promotion + + + + + + + + + An Act of Promotion to U.S. Army Master Sergeant Rank (USAR) in which some Active Guard Reserve Sergeant First Class, whose name is listed on a Headquarters, Department of the Army centralized promotion recommended list for the U.S. Army Master Sergeant Rank, is advanced to that rank by order of the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 4, Centralized Promotions (Sergeant First Class, Master Sergeant, and Sergeant Major): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Active Guard Reserve Centralized Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant First Class Rank (USAR) in which an Active Guard Reserve Staff Sergeant, whose name is listed on a Headquarters, Department of the Army centralized promotion recommended list for the U.S. Army Master Sergeant Rank, is advanced to that rank by order of the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 4, Centralized Promotions (Sergeant First Class, Master Sergeant, and Sergeant Major): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Active Guard Reserve Centralized Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Major Rank (USAR) in which an Active Guard Reserve Regular Army Master Sergeant, or Active Guard Reserve First Sergeant, whose name is listed on a Headquarters, Department of the Army centralized promotion recommended list for the U.S. Army Sergeant Major Rank, is advanced to that rank by order of the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 4, Centralized Promotions (Sergeant First Class, Master Sergeant, and Sergeant Major): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Active Guard Reserve Centralized Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + A Flag Officer Rank signifyng that the holder of the rank has the authority to command a regional fleet (such as the + Admiral Rank + true + + + + + + + + + Admiral Role + true + + + + + + + + + A U.S. Navy Enlisted Leadership Development Course Requirement that requires some U.S. Navy Petty Officer Second Class to have completed an Advanced Leadership Development Course as a condition for advancement to the U.S. Navy Petty Officer First Class Rank. + https://www.mynavyhr.navy.mil/Portals/55/Messages/NAVADMIN/NAV2019/NAV19185.txt?ver=A-pLJ9CU31C0SmXOnra6lw%3D%3D + +https://365chief.com/uploads/3/5/1/6/35163276/layingthekeel.pdf + +Replaces the previous Petty Officer First Class Selectee Leadership Course requirement from: + +BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', paragraph 210c + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Advanced Leader Development Course Requirement + + + + + + + + + Paragraph 3-9, Table 3-3: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + A U.S. Army Enlisted Professional Military Education Requirement that requires some U.S. Army enlisted soldier to have graduated the Advanced Leadership Course, as a condition for promotion pin-on to the U.S. Army Staff Sergeant Rank. + U.S. Army Advanced Leadership Course Requirement + + + + + + + + + Air Marshal Rank +Air Chief Marshal Rank +Air Vice Marshal Rank +Air Commodore Rank + DEFINED CLASS + This is the general type of rank under which falls the 1-4 star ranks used in the United Kingdom's Royal Air Force, as well as many other Commonwealth nations. These are the ranks equivalents of the 1-4 star general ranks used in the U.S. Air Force. + Air-Officer Rank + + + + + + + + + Air Chief Marshal Rank + true + + + + + + + + + Air Commodore Rank + true + + + + + + + + + Used in the British Royal Air Force, and other commonwealth nation air forces. + +Subclasses are equivalent in rank to similarly labeled Air Force Aircraftwoman Ranks. + Air Force Aircraftman Rank + true + + + + + + + + + Used in the British Royal Air Force, and other commonwealth nation air forces. + +Subclasses are equivalent in rank to similarly labeled Air Force Aircraftman Ranks. + Air Force Aircraftwoman Rank + true + + + + + + + + + Air Force Brigadier General Rank + true + + + + + + + + + Air Force Brigadier General Role + true + + + + + + + + + Air Force Captain Rank + true + + + + + + + + + Air Force Captain Role + true + + + + + + + + + A U.S. Air Force Senior Non-Commissioned Officer who has some Air Force Chief Master Sergeant Rank and is the bearer of some Air Force Chief Master Sergeant Role. + Air Force Chief Master Sergeant + true + + + + + + + + + Used in various branches of the Philippines armed forces. + Air Force Chief Master Sergeant Rank + true + + + + + + + + + Air Force Chief Master Sergeant Role + true + + + + + + + + + Air Force Colonel Rank + true + + + + + + + + + Air Force Colonel Role + true + + + + + + + + + Air Force First Lieutenant Rank + true + + + + + + + + + Air Force First Lieutenant Role + true + + + + + + + + + Air Force First Sergeant Rank + true + + + + + + + + + Senior NCO + https://en.wikipedia.org/wiki/Flight_sergeant + Air Force Flight Sergeant Rank + true + + + + + + + + + Air Force General Rank + true + + + + + + + + + Air Force command role a member of the Air Force lawfully exercises over subordinates by virtue of holding the General rank, and which is realized in.... + Air Force General Role + true + + + + + + + + + Air Force Leading Aircraftman Rank + true + + + + + + + + + Air Force Leading Aircraftwoman Rank + true + + + + + + + + + Air Force Lieutenant Colonel Rank + true + + + + + + + + + Air Force Lieutenant Colonel Role + true + + + + + + + + + Air Force Lieutenant General Rank + true + + + + + + + + + Air Force Lieutenant General Role + true + + + + + + + + + Air Force Major General Rank + true + + + + + + + + + Air Force Major General Role + true + + + + + + + + + Air Force Major Rank + true + + + + + + + + + Air Force Major Role + true + + + + + + + + + A Master Sergeant who has some Air Force Master Sergeant Rank and is the bearer of some Air Force Master Sergeant Role. + Air Force Master Sergeant + true + + + + + + + + + Air Force Master Sergeant Rank + true + + + + + + + + + Air Force Master Sergeant Role + true + + + + + + + + + Air Force Second Lieutenant Rank + true + + + + + + + + + Air Force Second Lieutenant Role + true + + + + + + + + + Air Force Senior Aircraftman Rank + true + + + + + + + + + Air Force Senior Aircraftman Technician Rank + true + + + + + + + + + Air Force Senior Aircraftwoman Rank + true + + + + + + + + + Air Force Senior Aircraftwoman Technician Rank + true + + + + + + + + + A Senior Master Sergeant who has some Air Force Senior Master Sergeant Rank and is the bearer of some Air Force Senior Master Sergeant Role. + Air Force Senior Master Sergeant + true + + + + + + + + + Senior NCO + Air Force Senior Master Sergeant Rank + true + + + + + + + + + Air Force Senior Master Sergeant Role + true + + + + + + + + + Air Force Sergeant Rank + true + + + + + + + + + A JNCO Staff Sergeant who has some Air Force Staff Sergeant Rank and is the bearer of some Air Force Staff Sergeant Role. + Air Force Staff Sergeant + true + + + + + + + + + Air Force Staff Sergeant Rank + true + + + + + + + + + Air Force Staff Sergeant role + true + + + + + + + + + A Technical Sergeant who has some Air Force Technical Sergeant Rank and is the bearer of some Air Force Technical Sergeant Role. + Air Force Technical Sergeant + true + + + + + + + + + Air Force Technical Sergeant Rank + true + + + + + + + + + Air Force Technical Sergeant role + true + + + + + + + + + Air Force of Zimbabwe Aircraftman Rank + + + + + + + + + Air Force of Zimbabwe Leading Aircraftman Rank + + + + + + + + + below corporal + Air Force of Zimbabwe Senior Aircraftman Rank + + + + + + + + + Air Marshal Rank + true + + + + + + + + + Air Vice Marshal Rank + true + + + + + + + + + A U.S. Air Force Enlisted Professional Military Education Requirement that requires some U.S. Air Force Senior Airman to have completed the U.S. Air Force Airman Leadership School within 179 days, and prior to the promotion increment month, as a condition for promotion to the U.S. Air Force Staff Sergeant Rank. + Table 1.1. https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + "If EPME is not completed by the promotion increment month, the projected promotion will be placed into “withhold” status as referenced in Table 1.3., item 10. (T-1). If EPME is not completed by the end of the promotion cycle the projected promotion will be canceled and not reinstated (except for promotion to SSgt). (T-1). The end of the promotion cycle is defined as the last month promotions will increment for that particular cycle as outlined in the Enlisted Promotion Eligibility Chart available on myPers." + +Table 1.1.https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Exception: "The only exceptions for waivers beyond 179 days is for Airmen on +Temporary Duty (TDYs) or deployments that exceed 179 days, short-tour locations with no EPME available, and those who cannot complete required EPME before promotion due to circumstances beyond their control (e.g., retraining, medical issues, personal hardship, Exceptional Family Member Program). (T1). The squadron commander is the approval or disapproval authority for EPME waivers (cannot be furtherdelegated). Commanders use Attachment 3 to request a promotion waiver for deserving Airmen who meet these scenarios. Route these requests through AFPC/DP2SPP. If approved, AFPC/DP2SPP will update MilPDS and, if required, will grant a retroactive effective date in accordance with paragraph 1.17. (T-1). Commanders may only approve one EPME waiver per Airman; approval authority for subsequent EPME waiver requests are at the discretion of the Directorate of Force Development (AF/A1D)." + +Table 1.1.https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + U.S. Air Force Airman Leadership School Requirement + + + + + + + + + Army Brigadier General Rank + true + + + + + + + + + Army Brigadier General Role + true + + + + + + + + + Army Captain Rank + true + + + + + + + + + Army Captain Role + true + + + + + + + + + Army Colonel Rank + true + + + + + + + + + Army Colonel Role + true + + + + + + + + + Army Colour Sergeant Rank + true + + + + + + + + + Army Commandant Rank + true + + + + + + + + + Army First Lieutenant Role + true + + + + + + + + + Army First Lieutenant Rank + true + + + + + + + + + A First Sergeant who has some Army First Sergeant Rank and is the bearer of some Army First Sergeant Role. + Army First Sergeant + true + + + + + + + + + From wikipedia: "In the United States Air Force and Space Force, first sergeants are special duty temporary ranks[8] and positional billets." Held by warrant officers. + Army First Sergeant Rank + true + + + + + + + + + Army First Sergeant Role + true + + + + + + + + + Army General Rank + true + + + + + + + + + Army General Role + true + + + + + + + + + Army Lieutenant Colonel Rank + true + + + + + + + + + Army Lieutenant Colonel Role + true + + + + + + + + + Army Lieutenant General Rank + true + + + + + + + + + Army Lieutenant General Role + true + + + + + + + + + Army Major General Rank + true + + + + + + + + + Army Major General Role + true + + + + + + + + + Army Major Rank + true + + + + + + + + + Army Major Role + true + + + + + + + + + Army Master Corporal Rank + true + + + + + + + + + A Master Sergeant who has some Army Master Sergeant Rank and is the bearer of some Army Master Sergeant Role. + Army Master Sergeant + true + + + + + + + + + Army Master Sergeant Rank + true + + + + + + + + + Army Master Sergeant Role + true + + + + + + + + + A Private who has some Army Private Rank and is the bearer of some Army Private Role. + Army Private + true + + + + + + + + + A Private Rank held by some enlisted Army soldier. + Army Private Rank + true + + + + + + + + + Army Private Role + true + + + + + + + + + An Act of Promotion to U.S. Army Master Sergeant Rank (USAR) in which a U.S. Army Reserve Element Commander selects an Army Reserve Element Sergeant First Class under their command from the Permanent Promotion Recommended List, and assigns that Soldier to a position vacancy authorized for the U.S. Army Master Sergeant Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Ch. 5 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Particularly: + +Paragraphs 5-2c, 5-2a, 5-5b(3), 5-7g, and 5-16a. + Army Reserve Element Centralized Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant First Class Rank (USAR) in which a U.S. Army Reserve Element Commander selects an Army Reserve Element Staff Sergeant under their command from the Permanent Promotion Recommended List, and assigns that Soldier to a position vacancy authorized for the U.S. Army Sergeant First Class Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Ch. 5 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Particularly: + +Paragraphs 5-2c, 5-2a, 5-5b(3), 5-7g, and 5-16a. + Army Reserve Element Centralized Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Major Rank (USAR) in which a U.S. Army Reserve Element Commander selects a Master Sergeant or First Sergeant under their command from the Permanent Promotion Recommended List, and assigns that Soldier to a position vacancy authorized for the U.S. Army Sergeant Major Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Ch. 5 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Particularly: + +Paragraphs 5-2c, 5-2a, 5-5b(3), 5-7g, and 5-16a. + Army Reserve Element Centralized Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + Army Second Lieutenant Rank + true + + + + + + + + + Army Second Lieutenant Role + true + + + + + + + + + A Sergeant who has some Army Sergeant Rank and is the bearer of some Army Sergeant Role. + Army Sergeant + true + + + + + + + + + A Sergeant First Class who has some Army Sergeant First Class Rank and is the bearer of some Army Sergeant First Class Role. + Army Sergeant First Class + true + + + + + + + + + Senior NCO + Army Sergeant First Class Rank + true + + + + + + + + + Army Sergeant First Class Role + true + + + + + + + + + A Sergeant Major who has some Army Sergeant Major Rank and is the bearer of some Army Sergeant Major Role. + Army Sergeant Major + true + + + + + + + + + Army Sergeant Major Rank + true + + + + + + + + + Army Sergeant Major Role + true + + + + + + + + + Junior NCO rank: U.S. Army +Senior NCO rank: the rest (so far) + Army Sergeant Rank + true + + + + + + + + + Army Sergeant role + true + + + + + + + + + A JNCO Staff Sergeant who has some Army Staff Sergeant Rank and is the bearer of some Army Staff Sergeant Role. + Army Staff Sergeant + true + + + + + + + + + Army Staff Sergeant Rank + true + + + + + + + + + Army Staff Sergeant role + true + + + + + + + + + Army Technical Sergeant Rank + true + + + + + + + + + Bangladesh Air Force Air Chief Marshal Rank + General Officer + + + + + + + + + Bangladesh Air Force Air Commodore Rank + General Officer + + + + + + + + + Bangladesh Air Force Air Marshal Rank + General Officer + + + + + + + + + Bangladesh Air Force Air Vice Marshal Rank + General Officer + + + + + + + + + Bangladesh Air Force Aircraftman 1 Rank + + + + + + + + + Bangladesh Air Force Aircraftman 2 Rank + + + + + + + + + Bangladesh Air Force Commissioned Officer Rank + + + + + + + + + "A Cpl is a Non-Commissioned Officer (NCO) . An airman promoted to the rank of Corporal after completion of 07 years of service and having minimum 03 years service as Leading Aircraftman (LAC)." +[https://web.archive.org/web/20200221000201/http://www.joinbangladeshairforce.mil.bd/index.php/main_controll/ranks_structure_baf?1=1&pagemenu=ranks_structure_baf&submenu=2] + Bangladesh Air Force Corporal Rank + + + + + + + + + Bangladesh Air Force Flight Lieutenant Rank + + + + + + + + + Bangladesh Air Force Flying Officer Rank + + + + + + + + + Bangladesh Air Force Group Captain Rank + Field Officer + + + + + + + + + Bangladesh Air Force Junior Commissioned Officer Rank + + + + + + + + + Bangladesh Air Force Junior Enlisted Rank + + + + + + + + + Bangladesh Air Force Leading Aircraftman Rank + + + + + + + + + মাস্টার ওয়ারেন্ট অফিসার + "They are the Junior Commissioned Officers (JCO) of Bangladesh Air Force. A Senior Warrant Officer promoted to the rank of Master Warrant Officer after completion of 25 years of service with minimum 02 years as substantive Senior Warrant Officer." [https://web.archive.org/web/20200221000201/http://www.joinbangladeshairforce.mil.bd/index.php/main_controll/ranks_structure_baf?1=1&pagemenu=ranks_structure_baf&submenu=2] + Bangladesh Air Force Master Warrant Officer Rank + + + + + + + + + Bangladesh Air Force Non-Commissioned Officer Rank + + + + + + + + + Bangladesh Air Force Pilot Officer Rank + + + + + + + + + সিনিয়র ওয়ারেন্ট অফিসার + "It is one of the Junior Commissioned Officer (JCO) of Bangladesh Air Force. A Warrant Officer is promoted to the rank of Senior Warrant Officer after completion of 22 years of service with minimum 02 years as substantive Warrant Officer." [https://web.archive.org/web/20200221000201/http://www.joinbangladeshairforce.mil.bd/index.php/main_controll/ranks_structure_baf?1=1&pagemenu=ranks_structure_baf&submenu=2] + Bangladesh Air Force Senior Warrant Officer Rank + + + + + + + + + "A Sgt is a Non-Commissioned Officer (NCO). A corporal promoted to the rank of Sgt after completion of 12 years of service and having minimum 03 years as substantive corporal." [https://web.archive.org/web/20200221000201/http://www.joinbangladeshairforce.mil.bd/index.php/main_controll/ranks_structure_baf?1=1&pagemenu=ranks_structure_baf&submenu=2] + Bangladesh Air Force Sergeant Rank + + + + + + + + + Bangladesh Air Force Squadron Leader Rank + Field Officer + + + + + + + + + ওয়ারেন্ট অফিসার + "It is the first Junior Commissioned Officers (JCO) rank of Bangladesh Air Force. A Sergeant promoted to the rank of Warrant Officer after completion of 18 years of service with having minimum 03 years as substantive Sergeant." [https://web.archive.org/web/20200221000201/http://www.joinbangladeshairforce.mil.bd/index.php/main_controll/ranks_structure_baf?1=1&pagemenu=ranks_structure_baf&submenu=2] + Bangladesh Air Force Warrant Officer Rank + + + + + + + + + Bangladesh Air Force Wing Commander Rank + Field Officer + + + + + + + + + "A Brigadier General is appointed as a Brigade Commander . Some time he serves as a Director at various directorate of Army Headquarters. He acts as Commandant at most of the training institutions. Some Brigadier Generals are posted to BGB as Sector Commander also." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Brigadier General Rank + + + + + + + + + "A Captain serves as a company second in command or a staff officer in unit and formation level. He holds various appointments like, Grade-3 Staff Officer, Adjutant, Quarter Master etc. Various extra regimental duties starts from this rank. Some Captains hold the appointment of Aid de Corp to senior officers. Some officers are posted to BGB, SSF, RAB as captain also." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Captain Rank + + + + + + + + + Notice that "Officiating Brigade Commander" is a specific sort of role below that of "Brigade Commander" which is held by the next higher rank, the Brigadier General. + "A Colonel is appointed as an Officiating Brigade Commander . Some time he serves as a Colonel Staff at formation level. Some Colonels are posted as a Station Commander. Some Colonels are posted to BGB as Sector Commander and DGFI as Colonel GS." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Colonel Rank + + + + + + + + + Bangladesh Army Commissioned Officer Rank + + + + + + + + + "A Cpl is base of the Non-Commissioned Officer (NCO) ranks. Cpls serve as a Section Commander, the smallest Army units. They are responsible for individual training, personal appearance and cleanliness of Soldiers." https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia + Bangladesh Army Corporal Rank + + + + + + + + + "A four star General is the highest rank in the Bangladesh Army. Chief of Army Staff in Bangladesh Army is a four star General." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army General Rank + + + + + + + + + Bangladesh Army Junior Commissioned Officer Rank + + + + + + + + + Bangladesh Army Junior Enlisted Rank + + + + + + + + + 'Lance Corporal are promoted to this level after one year or earlier by superior officer. Carries out orders issued to them to the best of his/her ability." https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia + Bangladesh Army Lance Corporal Rank + + + + + + + + + "He is the Battalion Commander. Some time he serves as a Grade-1 staff officer at formation level. He holds various appointments like Grade-1 Staff Officer, AA & QMG etc. He acts as Chief Instructor at most of the training institutions. Some officers are posted to BGB, RAB, POLICE, DGFI, SSF, NSI, BTRC as Lieutenant Colonel also." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Lieutenant Colonel Rank + + + + + + + + + "A Lieutenant General is a three star General. Some time he serves as PSO to the Chief of Army Staff or a PSO at Armed Forces Division or Director General at DGFI. He may act as a Commandant at National Defence College too." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Lieutenant General Rank + + + + + + + + + "A Lieutenant assists Company Commander in various unit activities. He serves as the administrative officer or staff officer in an unit." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Lieutenant Rank + + + + + + + + + "A Major General is appointed as a General Officer Commanding at Division Level or ARTDOC. Some time he serves as PSO to the Chief of Army Staff. He serves as a PSO at Armed Forces Division, Director General at DGFI, SSF, BGB, Ansar & VDP and some other organizations. He acts as Commandant at National Defence College, Defence Service Command and Staff College, Military Institute of Science and Technology and VC of Bangladesh University of Professionals etc." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Major General Rank + + + + + + + + + Thus notice that the role of Major (company commander) is pushed up one rank in this army). + "A Major serves as a Company Commander in a unit/ battalion. Some very senior Majors are appointed as Battalion Second in Command. Some are appointed as Officer Commanding of independent companies . He serves as a Grade-2 staff officer at HQ and formation level. He holds various appointments like Grade-2 Staff Officer, Brigade Major, DAA & QMG etc. He acts as Instructor at most of the training institutions. Some officers are posted to BGB, SSF, RAB, POLICE, DGFI, BNCC, NSI, BTRC as major also." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Major Rank + + + + + + + + + "There's only one Master Warrant Officer in a Battalion. Serves as the senior advisor and consultant to the Commanding Officer." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Master Warrant Officer Rank + + + + + + + + + Bangladesh Army Non-Commissioned Officer Rank + + + + + + + + + Bangladesh Army Private Rank + "Lowest rank: a trainee who's starting Basic Training . Primary role is to carry out orders issued to them to the best of his/her ability. Sainik does not have an insignia." https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia + Bangladesh Army Sainik Rank + + + + + + + + + "A Second Lieutenant is the junior most officer in a Battalion. He serves as the administrative officer or staff officer in an unit." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Second Lieutenant Rank + + + + + + + + + "Key appointment and the platoon leader. Generally has 22 to 25 years of Army experience and puts it to use by making quick, accurate decisions in the best interests of the Soldiers." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Senior Warrant Officer Rank + + + + + + + + + "A Sgt commands a section (9 to 10 Soldiers). He holds various important appointments at platoon, company and battalion level. SGTs have greatest impact on Soldiers because Sgts oversee them in their daily tasks. In short, Sgts set an example and the standard for Sainiks to look up to, and live up to. They hold key appointments in the Company and Regiments." https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia + Bangladesh Army Sergeant Rank + + + + + + + + + "Key appointment and the platoon leader. Generally has 15 to 20 years of Army experience and puts it to use by making quick, accurate decisions in the best interests of the Soldiers and the country." [https://joinbangladesharmy.army.mil.bd/home/page/ranks-insignia] + Bangladesh Army Warrant Officer Rank + + + + + + + + + Basic Active Service Date + + + + + + + + + A Date of Initial Entry Into Military Service Identifier that designates the Day on which some Person officially began their military service in the U.S. Army. + Basic Active Service Date Identifier + + + + + + + + + "Beginning July 1, all Soldiers with the rank of specialist who have been recommended for advancement by a promotion board and completed the Basic Leader Course, or BLC, will be laterally promoted to corporal, a junior NCO. + +Soldiers who currently hold the corporal rank must qualify for the promotion board and graduate from BLC to remain corporals, or they will be laterally assigned back to the grade of specialist." [https://www.army.mil/article/247183/soldiers_to_pin_on_corporal_after_blc] + +Previously, completion of the BLC was only required as a condition for promotion to the rank of SGT (from either the rank of SPL or CPL). Previously, one could be promoted to the rank of CPL without having already completed the BLC. This is no longer the case. + +Since 'Basic Leader Course Requirement for Promotion to U.S. Army Corporal' is a type of action requirement for PROMOTION in military rank, this class only covers instances of Action Requirement that apply to U.S. Army soldiers that have not yet attained the rank of CPL and are seeking promotion to that rank. Instances of the BLC requirement that apply to current CPLs who attained that rank prior to July 1st, under the previous regulations, do not fall under this class. + Need to figure out the following: is there a choice between moving from the rank of PFC to either the SPC or CPL rank? If so, then the textual definition should leave open the rank of the person in question. But if the rule is one must go through each, then this should be a requirement applying to a SPC. + The Basic Leader Course was formerly called the Warrior Leader Course and the Primary Leadership Development Course. + A U.S. Army Enlisted Professional Military Education Requirement for Promotion in Military Rank that requires some U.S. Army enlisted soldier to have graduated the Basic Leader Course as a condition for promotion to the U.S. Army Corporal Rank, as they transition into the junior non-comissioned officer ranks. + Basic Leader Course Requirement for Promotion to U.S. Army Corporal Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Paragraph 3-9, Table 3-3: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + A U.S. Army Enlisted Professional Military Education Requirement that requires some U.S. Army enlisted soldier to have graduated the Basic Leader Course as a condition for a promotion pin-on to the U.S. Army Sergeant Rank. + Basic Leader Course Requirement for Promotion Pin-on to U.S. Army Sergeant Rank + + + + + + + + + Brigadier General Rank + true + + + + + + + + + Brigadier General Role + true + + + + + + + + + Used in the British Army and Royal Marines. Historically, this rank descended from the rank of Brigadier-general, though the current incarnation of the rank is a field-officer rank, hence the removal of 'general' from the title. + +https://en.wikipedia.org/wiki/Brigadier_(United_Kingdom) + Brigadier Rank + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + British Armed Forces Field Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + British Armed Forces General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + British Armed Forces Junior Officer Rank + + + + + + + + + Is a separate grade of ranks between the non-commissioned officer ranks and commissioned officer ranks. + +But British Warrant Officers fall under the broad category 'Other Ranks', which is the analogue of the term 'Enlisted Ranks'. + +The British warrant officer ranks have NATO Codes of OR-9 and OR-8. In the U.S. Armed Forces, the equivalent ranks that fall within these NATO grades are non-commissioned officer ranks. + +https://en.wikipedia.org/wiki/Warrant_officer_(United_Kingdom) + An Enlisted Rank within the British Armed Forces that is a military rank junior to the British Armed Forces Commissioned Officer Ranks, and senior to the British Armed Forces Non-Commissioned Officer Ranks, and is held by virtue of a warrant from the British Queen (or King) which is signed by the Secretary of State for Defence. + British Armed Forces Warrant Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Is a NATO equivalent to the U.S. Army Brigadier General Rank. + Used in the British Army and Royal Marines. Historically, this rank descended from the rank of Brigadier-general, though the current incarnation of the rank is a field-officer rank, hence the removal of 'general' from the title. + +https://en.wikipedia.org/wiki/Brigadier_(United_Kingdom) + "Brigadiers can command a brigade or be a director of operational capability groups such as a director of staff." + +[Does this mean that they are also directors of staff at the brigade level? Where colonels serve as staff officers. See comment on BA Colonel Rank] + +Brigade consisting of 3-5 battalions and supporting elements is commanded by a Brigadier. + British Army Brigadier Rank + Field Officer Rank (UK) + + + + + + + + + + + + + + + + + + + + + + + + + + + Note that in the U.S. Army, it is the 1st Lt that (while primarily serving as a platoon commander) may serve as executive officer at the company level). + +XO is comparable to second-in-command. + +Notice that the CPT in the Bangladesh Army also primarily serves as company second-in-command. [Commonwealth derived rank systems: although what is reflected is really the roles associated with the ranks] + British Army Junior Officer Rank that is directly above the British Army Lieutenant Rank and directly below the British Army Major Rank, and which signifies that the rank holder typical serves as second in command of a company. + https://www.army.mod.uk/who-we-are/ + https://www.army.mod.uk/who-we-are/our-people/ranks/ + "They are key players in the planning and decision-making process, with tactical responsibility for operations on the ground as well as equipment maintenance, logistic support and personnel." https://www.army.mod.uk/who-we-are/our-people/ranks/ + British Army Captain Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + "Colonels are not usually field commanders (except in the Royal Army Medical Corps). +Typically they serve as staff officers between field commands at battalion/brigade level. +It is the lowest of the staff ranks and they are the principal advisors to senior officers." + British Army Colonel Rank + Field Officer Rank (UK) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + British Army Colour Sergeant Rank + + + + + + + + + British Army Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Given command of more soldiers and equipment, including tanks and guns. + British Army Junior Non-Commissioned Officer Rank which is directly above the British Army Lance Corporal Rank and directly below the British Army Sergeant Rank, and which signifies that the rank holder serves as the commander of a section composed of two fireteams. + https://www.army.mod.uk/who-we-are/ + https://www.army.mod.uk/who-we-are/our-people/ranks/ + British Army Corporal Rank + + + + + + + + + + + + + + + + + + + + + Highest rank in the British Army. + British Army Field Marshal Rank + General Officer Rank + + + + + + + + + British Army Field Officer Rank + + + + + + + + + British Army General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + "Generals hold the most senior appointments - such as Chief of Defence Staff, Vice Chief of Defence Staff, Chief of the general Staff, Deputy Supreme Allied Commander Europe, and Commander in Chief Land Forces." + British Army General Rank + General Officer Rank + + + + + + + + + British Army Junior Non-Commissioned Officer Rank + + + + + + + + + British Army Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + The following is from: https://www.army.mod.uk/who-we-are/our-people/ranks/ + +Promotion to rank follows after initial trade training, or about 4 years as a private. + +Required to supervise a small team of up to 4 soldiers called a section. + +Also have opportunity to undertake specialist military training. + +[There is an inconsistency here between the overview, and the claim on the British Army's main page that a section is commanded by a corporal and has 8-10 Soldiers]. + British Army Junior Non-Commissioned Officer Rank that is directly below the British Army Corporal Rank and directly above the British Army Private Rank, and which signifies that the rank holder serves as the commander of a fireteam of up to four soldiers. + https://www.army.mod.uk/who-we-are/ + https://www.army.mod.uk/who-we-are/our-people/ranks/ + British Army Lance Corporal Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + From: https://www.army.mod.uk/who-we-are/ + +Battalion/Regiment is commanded by a Lieutenant Colonel. + +Contains 4-6 companies [what does?] +Website also says that a Battalion consists of 5 companies. + +720 personnel [note: that would be 6 companies] + +Assisted by a Regimental Sergeant Major. + +May also command a Battlegroup, which is a Combined Arms Unit. 700-1000 personnel. + British Army Lieutenant-colonel Rank + British Army Lieutenant Colonel Rank + Field Officer Rank (UK) + + + + + + + + + + + + + + + + + + + + + + + + + + + British Army Lieutenant-general Rank + "Lieutenant Generals command formations of Corps size and other commands in the UK and overseas. +They also hold very senior staff appointments in the Ministry of Defence and other headquarters." [https://www.army.mod.uk/who-we-are/our-people/ranks/] + British Army Lieutenant General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + NATO equivalent of the U.S. Army First Lieutenant Rank + British Army Lieutenant Rank + Junior Officer Rank (UK) + + + + + + + + + + + + + + + + + + + + + + + + + + + British Army Major-general Rank + Commands a Division, the largest formation the British Army fields. Such a Division is said to consist of 2-3 brigades with 40,000 troops. [https://www.army.mod.uk/who-we-are/] + +"Major Generals command formations of division size and the Royal Military Academy Sandhurst, and hold senior staff appointments in the Ministry of Defence and other headquarters." [https://www.army.mod.uk/who-we-are/our-people/ranks/] + British Army Major General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + "Typically a Major will be given command of a sub-unit of up to 120 officers and soldiers with responsibility for their training, welfare and administration both in camp and op operations, as well as the management of their equipment." https://www.army.mod.uk/who-we-are/our-people/ranks/ + Note that the British Army Major commands the company, whereas the U.S. Army Captain commands the company. + +The major is assisted and advised by a Soldier who has the role of Company Sergeant Major. This role [have to confirm] seems to be given to a Soldier with the rank of Warrant Officer Class 2: + +"WO2s act as the senior advisors to the Major in command of the sub-unit and may also be selected for a commission as an Officer." [https://www.army.mod.uk/who-we-are/our-people/ranks/] + British Army Field Officer Rank that is directly above the British Army Captain Rank and directly below the British Army Lieutenant Colonel Rank, and which signifies that the rank holder typically serves as the commanding officer of a company consisting of 3 platoons and a headquarters. + https://www.army.mod.uk/who-we-are/ + https://www.army.mod.uk/who-we-are/our-people/ranks/ + British Army Major Rank + + + + + + + + + A Non-Commissioned Officer Rank that is used by the British Army. + British Army Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + British Army Private Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Army Second Lieutenant Rank + Junior Officer Rank (UK) + + + + + + + + + British Army Senior Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Usually promoted after 12 years of service. Usually second in command of a troop or platoon of up to 35 soldiers. Have the important responsibility of advising and assisting junior officers. + British Army Senior Non-Commissioned Officer Rank that is directly above the British Army Corporal Rank and directly below the British Army Colour Sergeant and Staff Sergeant Ranks, and which signifies that a rank holder typically serves as a deputy commander of a troop or platoon, advising junior Non-Commissioned Officers. + https://www.army.mod.uk/who-we-are/ + https://www.army.mod.uk/who-we-are/our-people/ranks/ + British Army Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Promoted to this rank, or color sergeant, after 3 years as a sergeant. + Senior NCO + British Army Staff Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Army Warrant Officer Class 1 Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + British Army Warrant Officer Class 2 Rank + + + + + + + + + British Army Warrant Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines Brigadier Rank + Field Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines Captain Rank + Junior Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines Colonel Rank + Field Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + British Corps of Royal Marines Colour Sergeant Rank + + + + + + + + + British Corps of Royal Marines Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + British Corps of Royal Marines Corporal Rank + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + British Corps of Royal Marines Lance Corporal Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines Lieutenant-colonel Rank + British Corps of Royal Marines Lieutenant Colonel Rank + Field Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines Lieutenant-general Rank + British Corps of Royal Marines Lieutenant General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines Lieutenant Rank + Junior Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines Major-general Rank + British Corps of Royal Marines Major General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines Major Rank + Field Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + Found conflicting info. Is this an OR-2 or and OR-1? Or both? + The equivalent of the private ranks in the British Army, as well as U.S. Army and Marine Corps. + British Corps of Royal Marines Marine Rank + + + + + + + + + British Corps of Royal Marines Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines Second Lieutenant Rank + Junior Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + British Corps of Royal Marines Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Holders of this rank may be given the post of: + +Corps Regimental Sergeant Major + +https://en.wikipedia.org/wiki/Corps_Regimental_Sergeant_Major + British Corps of Royal Marines Warrant Officer Class 1 Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Corps of Royal Marines Warrant Officer Class 2 Rank + + + + + + + + + British Corps of Royal Marines Warrant Officer Rank + + + + + + + + + British Navy Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Air Force Air Chief Marshal Rank + Air Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Air Force Air Commodore Rank + Air Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Air Force Air Marshal Rank + Air Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + British Royal Air Force Air Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Air Force Air Vice Marshal Rank + Air Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Training rank + British Royal Air Force Aircraftman Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Training rank + British Royal Air Force Aircraftwoman Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Only held by those in technical trades, and musicians. + Senior NCO + British Royal Air Force Chief Technician Rank + + + + + + + + + British Royal Air Force Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + British Royal Air Force Corporal Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Equivalent in rank to the U.S. Air Force Captain Rank. + +The term 'Flight Lieutenant' is the label for a rank used in many Commonwealth nation air forces, with a NATO Rank Scale Code of OF-2. This type of rank is equivalent to the rank of captain in the U.S. Air Force, Army, Marines and Space Force. + British Royal Air Force Flight Lieutenant Rank + Junior Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + British Royal Air Force Flight Sergeant Aircrew Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Equivalent to the British Army's staff sergeant or color sergeant ranks and the Navy's chief petty officer rank. + Senior NCO + https://en.wikipedia.org/wiki/Flight_sergeant + British Royal Air Force Flight Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Rank used in many Commonwealth nation air forces, including the United Kingdom. At NATO Code OF-1. Equivalent in rank to the U.S. Air Force and U.S. Space Force First Lieutenant Ranks. + British Royal Air Force Flying Officer Rank + Junior Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + Used in many air forces of Commonwealth nations, including the United Kingdom. It is equivalent to the rank of colonel in the U.S. Air Force, And it it is equivalent to the rank of naval captain in many navies, as well as the colonel rank in many armies. + British Royal Air Force Group Captain Rank + Field/Senior Officer Rank (Commonwealth) +Not sure + + + + + + + + + British Royal Air Force Junior Enlisted Rank + + + + + + + + + British Royal Air Force Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This rank is only used by one branch of the RAF, the RAF Regiment. Holders of this rank have charge over aircraftmen/women (OR-1); leading aircraftmen/women and senior aircraftmen/women (OR-2). But they do not have charge over those holding the senior aircraftman/woman technician ranks, even though these are OR-2. Only a holder of the OR-4 corporal rank has charge over the latter. + +https://en.wikipedia.org/wiki/Lance_corporal#Royal_Air_Force + +This rank was introduced for senior aircraftmen/woman who are promoted to take on the role of section second-in-command/fireteam leader in the RAF Regiment. + +Senior aircraftmen/women who work in technical trades are promoted to the senior aircraftman/woman technician ranks. + +https://en.wikipedia.org/wiki/RAF_other_ranks#Changes_in_2010_%E2%80%94_introduction_of_Lance_Corporal + British Royal Air Force Lance Corporal Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Air Force Leading Aircraftman Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Air Force Leading Aircraftwoman Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The British Royal Air Force doesn not have a NATO OR-8 rank. + +This is equivalent to the WO1 Warrant Officer ranks in the Army and Marines. + Various specialization for holders of this rank: + +Referred to by titles: + +Master signaller +Master Engineer +Master Air Electronics Operator +Master Air Loadmaster + British Royal Air Force Master Aircrew Rank + + + + + + + + + British Royal Air Force Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + 'Pilot Officer' is used for the lowest commissioned officer rank in the air forces of many Commonwealth nations, including the United Kingdom. Is equivalent to the rank of Second Lieutenant in the U.S. Air Force and Space Force. + Newly commissioned officers in the RAF start at the lower grade of Acting Pilot Officer. https://en.wikipedia.org/wiki/Acting_pilot_officer + British Royal Air Force Pilot Officer Rank + Junior Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Air Force Senior Aircraftman Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Used only in technical trades of the air force. Replaced the former junior technician rank. + British Royal Air Force Senior Aircraftman Technician Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Air Force Senior Aircraftwoman Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Air Force Senior Aircraftwoman Technician Rank + + + + + + + + + British Royal Air Force Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fly aircraft and helicopters. + SNCO + British Royal Air Force Sergeant Aircrew Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Oversee junior airmen and women in daily tasks. + SNCO + British Royal Air Force Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Used in many air forces in Commonwealth nations. Equivalent to the rank of major in the U.S. Air Force. + British Royal Air Force Squadron Leader Rank + Field/Senior Officer Rank (Commonwealth) +Not sure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The British Royal Air Force doesn not have a NATO OR-8 rank. + They do not hold appointments like the warrant officers in the Army and Navy. + British Royal Air Force Warrant Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Used in many air forces in Commonwealth nations. Equivalent to the rank of lieutenant colonel in the U.S. Air Force. + British Royal Air Force Wing Commander Rank + Field/Senior Officer Rank (Commonwealth) +Not sure + + + + + + + + + + + + + + + + + + + + + British Royal Navy Able Rating + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Admiral Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + British Royal Navy Admiral of the Fleet Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Captain Rank + Senior Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Commander Rank + Senior Officer Rank (Commonwealth) + + + + + + + + + https://www.youtube.com/watch?v=SbSjBuQuPLc + British Royal Navy Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Commodore Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Flag Officer Rank + + + + + + + + + British Royal Navy Junior Rating + + + + + + + + + + + + + + + + + + + + + + + + + + + Equivalent to an army corporal. + Lowest NCO + Usually responsible for managing a small group of able rates. Role models and mentors. + British Royal Navy Leading Rating + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Lieutenant Commander Rank + Senior Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Lieutenant Rank + Junior Officer Rank (Commonwealth) + + + + + + + + + + + + + + + + + + + + + + + + + + + The term 'Midshipman' is used for the lowest officer rank in the navies of many Commonwealth Nations, including the United Kingdom. It is the equivalent to the Ensign Rank used in the U.S. Navy, as well some Commonwealth navies. + British Royal Navy Midshipman Rank + Junior Officer Rank (Commonwealth) + + + + + + + + + https://www.royalnavy.mod.uk/careers/navy-life/shaping-your-career + https://www.youtube.com/watch?v=SbSjBuQuPLc + British Royal Navy Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Niether senior NCO nor junior NCO? +https://en.wikipedia.org/wiki/Petty_officer#United_Kingdom + They have a senior rating (job specialty) and are responsible for certain sections of their department. + This is the only rank in the U.K.'s royal navy with the 'Petty Officer' label. It is directly below the rank of Chief Petty Officer and directly above the rank of Leading Rate (which is the U.K. royal navy's equivalent of the the U.S. Navy Petty Officer Third Class Rank). + British Royal Navy Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Rear Admiral Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Sub-Lieutenant Rank + Junior Officer Rank (Commonwealth) + Ranks with the title 'Sub-Lieutenant are used in many Commonwealth Nations. This is the equivalent of the Lieutenant Junior Grade ranks in the U.S. Navy and Coast Guard. + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Vice Admiral Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + British Royal Navy Warrant Officer Class 1 Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + This rank isn't listed on the BRN website... + +https://www.royalnavy.mod.uk/careers/navy-life/shaping-your-career + British Royal Navy Warrant Officer Class 2 Rank + + + + + + + + + British Royal Navy Warrant Officer Rank + + + + + + + + + In the Canadian Armed Forces, warrant officer ranks are a grade of ranks between the NCO ranks and the commissioned officer ranks. In the Canadian Armed Forces, all members of the military with ranks below that of commissioned officer are referred to as 'non-commissioned members'. [https://en.wikipedia.org/wiki/Non-commissioned_member] + Notably, only the Canadian Air Force and Army warrant officer ranks actually use the word 'warrant officer' in the rank titles. The Royal Canadian Navy warrant officer ranks include chief petty officer and petty officer ranks, whereas in many other navies, including the U.S. Navy and British Royal Navy, chief petty officers and petty officers are non-commissioned officers. + Canadian Armed Forces Warrant Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Canadian Army Brigadier-general Rank + Canadian Army Brigadier-général Rank + Canadian Army Brigadier General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Canadian Army Capitaine Rank + Canadian Army Captain Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + There are three special appointments or positions that a holder of this rank may fill. They are: + +Senior appointment chief warrant officer / Formation chief warrant officer + +Command chief warrant officer -> Canadian Army sergeant-major + +Canadian Forces chief warrant officer + +See: + +https://en.wikipedia.org/wiki/Chief_warrant_officer#Senior_appointments + Usually play a liasson role, and may also be appointed as regimental sergeant major in a battalion sized unit. + Canadian Army Adjudant-chef Rank + Canadian Army Chief Warrant Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Canadian Army Colonel Rank + Senior Officer Rank + + + + + + + + + https://www.canada.ca/en/services/defence/caf/military-identity-system/army-ranks.html + Canadian Army Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Can lead troops if they have the formal qualifications to be promoted to master corporal, but have not been promoted yet. + +Lowest rank empowered to give lawful commands. + Junior NCO + Canadian Army Caporal Rank + Canadian Army Corporal Rank + + + + + + + + + Canadian Army General Officer Rank + + + + + + + + + + + + + + + + + + + + + Canadian Army Général Rank + Canadian Army General Rank + General Officer Rank + + + + + + + + + https://www.youtube.com/watch?v=vbdNnhkuPjo + Canadian Army Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Canadian Army Lieutenant-colonel Rank + Canadian Army Lieutenant Colonel Rank + Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Canadian Army Lieutenant-general Rank + Canadian Army Lieutenant-général Rank + Canadian Army Lieutenant General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Canadian Army Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Canadian Army Major-general Rank + Canadian Army Major-général Rank + Canadian Army Major General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Canadian Army Major Rank + Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Have authority and power of command over all other corporals + Junior NCO + Canadian Army Caporal-chef Rank + Canadian Army Master Corporal Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + May hold a number of appointments, including the position of Sergeant Major who is the most senior non-commissioned member in a company sized army unit or sub-unit. + Canadian Army Adjudant-maître Rank + Canadian Army Master Warrant Officer Rank + + + + + + + + + https://www.youtube.com/watch?v=vbdNnhkuPjo + Canadian Army Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Canadian Army Private Recruit Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Canadian Army Sous-lieutenant Rank + Canadian Army Second Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SNCO + Usually used as section commanders. + Canadian Army Sergent Rank + Canadian Army Sergeants with less than three years seniority are considered OR-5 by the NATO Rank Scale. Those with three years of seniority or more are considered OR-6. See: https://militaria.lv/stanag.htm + Canadian Army Sergeant Rank + + + + + + + + + Canadian Army Warrant Officer Rank + + + + + + + + + Royal Canadian Navy Warrant Officer Rank + + + + + + + + + A Promotion List that is a list of U.S. military officers all holding the same rank, and all serving in the same military branch, such that: i) all the officers were recommended for promotion to the next higher rank, within the same competitive category, in the report of the same centralized selection board, and each officer's recommendation was subsequently approved by the President (or the President's designeee) after review of the report; ii) the names of the officers are placed on the list in the order of their seniority on the active-duty list or based on their particular merits, as determined by the selection board; and iii) the order in which the officers appear on the list represents the order in which those officers are to be promoted. + Title 10 USC, Subtitle A, Part II, Ch. 36, Subchapter II, §624(a)(1)(2) + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section624&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + +And Title 10 USC, Subtitle A, Part II, §611(a) + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-subtitleA-part2&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + "2–10. Approving promotion board recommendations +a. Promotion boards make recommendations to the President of the United States. The President has delegated authority to the SECDEF to approve or disapprove promotion board reports. The SECDEF has retained disapproval authority, but has delegated approval authority to the Principal Deputy Under Secretary of Defense for Personnel and Readiness." + 'Officer' here refers to either a Commissioned Officer or a Warrant Officer + +It is a essential part of the definition that each officer on the list was selected by the same selection board. This is because the date on which the relevant selection board was convened is a factor in determining when the officers on the resulting promotion list can expect to be promoted: + +From USC Title 10, §624(a)(2): + +"Promotions shall be made in the order in which the names of officers appear on the promotion list and after officers previously selected for promotion in that competitive category have been promoted." + +This clause covers for scenarios in which a new promotion selection board is convened for a given rank before all of the officers that were recommended for that same rank at a previous selection board have been promoted from the corresponding promotion list. (Numerous officers named on a previous promotion list may still be waiting to be promoted as they cannot be promoted to the next higher rank until additional officers are needed in that rank). + +Centralized promotion lists are typically compiled by the department Secretary of the relevant U.S. military branch. + Centralized Officer Promotion List + + + + + + + + + A Senior Non-Commissioned Officer who has some Chief Master Sergeant Rank and is the bearer of some Chief Master Sergeant Role. + Chief Master Sergeant + true + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Senior Non-Commissioned Officer who has some Chief Master Sergeant of the Air Force Rank and is the bearer of some Chief Master Sergeant of the Air Force Role. + Chief Master Sergeant of the Air Force + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + 2 ranks below U.S. Coast Guard Chief Warrant Officer 2 (there is no Coast Guard Warrant Officer 1 Rank). This class is one rank below the Navy, Army and Marine Corps Warrant Officer 1 Ranks, which are themselves 1 rank below U.S. Coast Guard Chief Warrant Officer 2. + Chief Master Sergeant of the Air Force Rank + + + + + + + + + Chief Master Sergeant of the Air Force Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Senior Non-Commissioned Officer who has some Chief Master Sergeant of the Space Force Rank and is the bearer of some Chief Master Sergeant of the Space Force Role. + Chief Master Sergeant of the Space Force + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + "The Chief Master Sergeant of the Space Force (CMSSF) is a unique non-commissioned rank in the United States Space Force. The holder of this rank and post represents the highest enlisted level of leadership in the Space Force, and as such, provides direction for the enlisted corps and represents their interests, as appropriate, to the American public, and to those in all levels of government. + +The CMSSF is appointed by the Space Force Chief of Staff (SF/CC) and serves as the senior enlisted advisor to the Space Force Chief of Staff and the Secretary of the Space Force on all issues regarding the welfare, readiness, morale and proper utilization and progress of the enlisted force." https://www.military.com/space-force/enlisted-ranks.html + 2 ranks below U.S. Coast Guard Chief Warrant Officer 2 (not Coast Guard Warrant Officer 1 Rank). This class is one rank below the Navy, Army and Marine Corps Warrant Officer 1 Ranks, which are themselves 1 rank below U.S. Coast Guard Chief Warrant Officer 2. + Chief Master Sergeant of the Space Force Rank + + + + + + + + + Chief Master Sergeant of the Space Force Role + + + + + + + + + Senior NCO + Chief Master Sergeant Rank + true + + + + + + + + + Chief Master Sergeant Role + true + + + + + + + + + A Senior Non-Commissioned Officer who has some Senior NCO Chief Petty Officer Rank and is the bearer of some Chief Petty Officer Role. + Chief Petty Officer + true + + + + + + + + + A U.S. Navy Enlisted Leadership Development Course Requirement that requires some U.S. Navy Petty Officer First Class to have completed an Chief Petty Officer Leadership Development Course as a condition for advancement to the U.S. Navy Chief Petty Officer Rank. + https://www.mynavyhr.navy.mil/Portals/55/Messages/NAVADMIN/NAV2019/NAV19185.txt?ver=A-pLJ9CU31C0SmXOnra6lw%3D%3D + +https://365chief.com/uploads/3/5/1/6/35163276/layingthekeel.pdf + +[[Not sure if this replaces the Chief Petty Officer Selectee Leadership Course requirement from: + +BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', paragraph 210d + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + +The first source cited above says that the Chief Petty Officer Leader Development Course will be delivered in addition to the CPO Selectee Indoctrination Course. I am not sure if this is referring to the Chief Petty Officer Selectee Leadership Course]] + Chief Petty Officer Leader Development Course + + + + + + + + + I have labeled this as 'Senior NCO Chief Petty Officer Rank' because in some armed forces, such as the Royal Canadian Navy, the Chief Petty Officer Ranks are Warrant Officer ranks, NOT NCO ranks. + +But not sure: are these non-commissioned officer ranks? Just special type? + These are all NCO ranks, and senior NCO ranks + +Keep as DEFINED CLASS?? + Chief Petty Officer Rank + + + + + + + + + Chief Petty Officer Role + true + + + + + + + + + + + + + + + + + + + + + U.S. Chief of Space Operations Role + + + + + + + + + Civilian Education Requirement for Promotion in Military Rank + + + + + + + + + Civilian Education Requirement for Promotion in U.S. Air Force Rank + + + + + + + + + Civilian Education Requirement for Promotion in U.S. Army Rank + + + + + + + + + Coast Guard Admiral Rank + true + + + + + + + + + Coast Guard Admiral Role + true + + + + + + + + + Coast Guard Captain Rank + true + + + + + + + + + Coast Guard Captain Role + true + + + + + + + + + Coast Guard Chief Petty Officer Role + true + + + + + + + + + A Command Master Chief Petty Officer who has some Coast Guard Command Master Chief Petty Officer Rank and is the bearer of some Coast Guard Command Master Chief Petty Officer Role. + Coast Guard Command Master Chief Petty Officer + true + + + + + + + + + Coast Guard Command Master Chief Petty Officer Rank + true + + + + + + + + + Coast Guard Command Master Chief Petty Officer Role + true + + + + + + + + + Coast Guard Commander Rank + true + + + + + + + + + Coast Guard Commander Role + true + + + + + + + + + Coast Guard Ensign Rank + true + + + + + + + + + Coast Guard Ensign Role + true + + + + + + + + + Junior Officer Coast Guard Lieutenant Commander Rank + true + + + + + + + + + Coast Guard Lieutenant Commander Role + true + + + + + + + + + Coast Guard Lieutenant Junior Grade Rank + true + + + + + + + + + Coast Guard Lieutenant Junior Grade Role + true + + + + + + + + + Coast Guard Lieutenant Rank + true + + + + + + + + + Coast Guard Lieutenant Role + true + + + + + + + + + A Master Chief Petty Officer who has some Coast Guard Master Chief Petty Officer Rank and is the bearer of some Coast Guard Master Chief Petty Officer Role. + Coast Guard Master Chief Petty Officer + true + + + + + + + + + Coast Guard Master Chief Petty Officer Rank + true + + + + + + + + + Coast Guard Master Chief Petty Officer Role + true + + + + + + + + + Coast Guard Rear Admiral Lower Half Rank + true + + + + + + + + + Coast Guard Rear Admiral Lower Half Role + true + + + + + + + + + Coast Guard Rear Admiral Rank + true + + + + + + + + + Coast Guard Rear Admiral Upper Half Role + true + + + + + + + + + A Senior Chief Petty Officer who has some Coast Guard Senior Chief Petty Officer Rank and is the bearer of some Coast Guard Senior Chief Petty Officer Role. + Coast Guard Senior Chief Petty Officer + true + + + + + + + + + Coast Guard Senior Chief Petty Officer Rank + true + + + + + + + + + Coast Guard Senior Chief Petty Officer Role + true + + + + + + + + + Coast Guard Vice Admiral Rank + true + + + + + + + + + Coast Guard Vice Admiral Role + true + + + + + + + + + Notice that while in most militaries, colonel is the rank directly below the Brigadier General rank, we do not assert that 'Colonel rank' is subclass of: 'is military rank directly below' SOME 'Brigadier General rank'. This is because there are instances of the class 'Colonel rank' that are not directly below any other rank. For example, colonel is the highest rank in countries such as Monaco with smaller militaries. + Colonel Rank + true + + + + + + + + + Colonel Role + true + + + + + + + + + These are Senior NCOs + Colour Sergeant Rank + true + + + + + + + + + A Chief Petty Officer who has some Command Master Chief Petty Officer Rank and is the bearer of some Command Master Chief Petty Officer Role. + Command Master Chief Petty Officer + true + + + + + + + + + Command Master Chief Petty Officer Rank + true + + + + + + + + + Command Master Chief Petty Officer Role + true + + + + + + + + + A U.S. Army Enlisted Professional Military Education Requirement that requires a U.S. Army Sergeant Major to have completed the Command Sergeants Major Course, as a condition of promotion to the U.S. Army Command Sergeant Major Rank. + https://en.wikipedia.org/wiki/Enlisted_Professional_Military_Education#Army + U.S. Army Command Sergeants Major Course Requirement + + + + + + + + + Commandant Rank + true + + + + + + + + + According to the DOD Dictionary of Military and Associated Terms, command authority is "The authority that a commander in the armed forces lawfully exercises over subordinates by virtue of rank or assignment." + +On the one hand, Article II of the U.S. Constitution grants the President command over the armed forces. On the other, the Presidency is a civilian office, and so the President is NOT a member of the armed forces. Nor does he/she have a rank. And so, if the DOD definition were taken as giving necessary and sufficient conditions, clearly the authority the President exercises doesn't fall under this definition. + +Yet, Army Regulation 600-20, "Army Command Policy", section 1-6 says: + +"a. Privilege to command. Command is exercised by virtue of office and the special assignment of members of the Armed Forces of the United States holding military grade who are eligible to exercise command. A commander is . . . a commissioned or WO [warrant officer] who, by virtue of grade and assignment, exercises primary command authority over a military organization or prescribed territorial area that under pertinent official directives is recognized as a ‘command.’… A civilian, other than the President as Commander-in-Chief (or National Command Authority), may not exercise command." + +This paragraph begins by claiming that those with the privilege to exercise command exercise that by virtue of their office and assignment as members of an Armed Force. This clearly implies that command is the privilege of certain members of the Armed Forces. And yet the paragraph concludes by implying that the President may exercise command. There is clearly no indication that a different type of command authority has been introduced--National Command Authority is supposed to be a subtype. This passage is clearly contradictory as it stands. + Commander-in-Chief Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A Commission requires the agent to fulfill the duties of their office. Note the plural. Does the axiom handle this sort of case? Is a requirement to fulfill all duties of an office an instance of Action Requirement? Or do Action Requirements only have as instances requirements corresponding to one specific act? In that case a commission would impose multiple action requirements. + A Directive Information Content Entity that authorizes some Agent to exercise the powers of some high office, and which requires that the Agent discharge the duties of that office. + https://en.wikipedia.org/wiki/Commission_(document) + This should perhaps be a subclass of Action Regulation. But not a subclass of any of the three current types. + +This is because the commission, on the one hand, authorizes (permits) the Agent to exercise certain powers. For instance, an officer's commission in the United States Army authorizes that officer to command units, to issue orders to subordinates. + +On the other hand, it imposes requirements on the officer. Thus, the officer has certain duties or responsibilities towards their subordinates. + +Should we say that is an instance of both Action Permission and Action Requirement? + +Or that it is an Action Regulation that has instances of both types as parts? + Commission + + + + + + + + + + + + + + + + + + + A Document bearing some Commission. + Commission Document + + + + + + + + + + + + + + + + + + + + + + + + + + + A Person who is a member of some Armed Force, who has some Commissioned Officer Rank, and is the bearer of some Commissioned Officer Role. + Commissioned Officer + + + + + + + + + + + + + + + + + + + Military Rank Insignia that bears some Commissioned Officer Rank. + Commissioned Officer Rank Insignia + + + + + + + + + A NATO Rank Scale Code that classifies the Commissioned Officer Ranks used by member countries of NATO according to a standardized rank scale which matches the Commissioned Officer Ranks of each member country to the equivalent Commissioned Officer Ranks used by the other members. + https://en.wikipedia.org/wiki/Ranks_and_insignia_of_NATO + Commissioned Officer NATO Rank Code + + + + + + + + + Military Rank that signifies an Authority Role derived from a Military Commission from the head of state, and is typically appointed following training as a leadership and management generalist. + http://wwww.ontologylibrary.mil/CommonCore/Mid/MilitaryRanksOntology + Shane Babcock + Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + Military Rank Insignia Quality Pattern, inhering in some Commissioned Officer Rank Insignia, that concretizes some Commissioned Officer Rank. + Commissioned Officer Rank Insignia Quality Pattern + + + + + + + + + An Authority Role that inheres in an Agent by virtue of an Act of Military Commissioning, and which primarily involves the command of a military unit within some Armed Force. + By this definition, the primary role in which commissioned officers serve is that of unit commander. We import the Joint Doctrine Ontology term 'command[1]' under Authority Role, which is: "Definition: (DOD) 1. The authority that a commander in the armed forces lawfully exercises over subordinates by virtue of rank or assignment." + +A commissioned officer role is not equivalent to 'command[1]', because the Commissioned Officer Role involves service in roles other than command roles (e.g. when a U.S. Army Captain serves as a battalion or brigade officer after completing their assignment as a company commander.) + Commissioned Officer Role + + + + + + + + + These are Senior NCOs + Company Quartermaster Sergeant Rank + true + + + + + + + + + A [...] that requires some U.S. Army soldier to have completed a minimum 8 years cumulative enlisted service in order to be considered by the promotion selection board of the Headquarters of the Department of the Army for promotion to the U.S. Army Master Sergeant Rank. + Cumalative Enlisted Service Requirement for Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + A Requirement for Promotion in Military Rank that requires some Agent to have completed some mimimum time of cumulative enlisted service. + Cumulative Enlisted Service Requirement for Promotion in Military Rank + + + + + + + + + A [...] that requires some U.S. Army soldier to have completed a minimum 10 years cumulative enlisted service in order to be considered by the promotion selection board of the Headquarters of the Department of the Army for promotion to the U.S. Army Sergeant Major Rank. + Cumulative Enlisted Service Requirement for Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + A Calendar Date Identifier that designates the Calendar Day on which some Person officially entered into service in some branch of the U.S. Armed Forces. + Date of Initial Entry Into Military Service Identifier + + + + + + + + + Date of Initital Entry into Military Service + + + + + + + + + + + + + + + Have to think about this more. + +It seems like a DOR can be adjusted. Need to be able to deal with this. I think it means that a new calendar day takes on the feature captured by this definition. + Calendar Day which is either: i) the Calendar Day on which a Service Member's promotion or appointment to a particular Military Rank took effect; or ii) a Calendar Day preceding i) that is computed on the basis of relevant service credits previously accummulated by that Service Member; and which is used to determine the relative seniority of two or more Service Members holding the same Military Rank. + https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +https://www.armyresilience.army.mil/ard/images/pdf/Policy/600-20%20Army%20Command%20Policy.pdf + For instances of Date of Rank falling under disjunct ii), there are a variety of different service credits that are relevant. For example: + +In the case of an enlisted Service Member that retires from a given service branch of the U.S. Armed Forces, and later re-enlists in that same service, prior service may be used to compute the Date of Rank. + +Or in the case of a U.S. Army Commissioned Officer that retires from the Army, and then enlists in the Marine Corps, prior service in the Army may be used in the computation of the Date of Rank for his or her rank in the Marine Corps. + +In the case of original appointments as commissioned officers in the U.S. Armed Forces, certain advanced education, training, or special experience, may be used to compute date of rank. This is referred to as 'constructive service credit', since it refers to credited service that does not constitute actual military service. [Note that in some case a combination of both constructive service credits and actual service credits are used. As in the case of a U.S. Army Captain retires --due to a reduction in force--, and later is appointed as Second Lieutenant in the Air Force after accumulating constructive service credits in the iterim.] + The date on which a U.S. Army Corporal was promoted to the U.S. Army Sergeant Rank. + A Calendar Day on which a member of an Armed Force was actually, or constructively, appointed or promoted to a particular Military Rank. (Old definition). + Date of Rank is a factor used to determine the relative seniority of two or more members of an Armed Force that hold the same Military Rank. + This is meant to be a DEFINED CLASS, rather than a universal. It is not clear whether a corresponding logical equivalancy can be given. + Date of Rank + + + + + + + + + A Calendar Date Identifier that designates the Calendar Day on which a member of an Armed Force was actually, or constructively, appointed or promoted to a particular Military Rank. + The identifier of a Soldier's date of rank as it appears on a promotion order, or on a promotion recommended list. + Date of Rank Identifier + + + + + + + + + A Civilian Education Requirement for Promotion in U.S. Air Force Rank that is a condition for promotion to the Chief Master Sergeant Rank, which requires promotion eligible Airmen to have been conferred an associate or higher-level degree from a nationally or regionally accredited institution on or before the promotion eligibility cutoff date. + AIR FORCE INSTRUCTION 36-2502, §1.10. & Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Degree Requirement for Promotion to U.S. Air Force Chief Master Sergeant Rank + + + + + + + + + A Civilian Education Requirement for Promotion in U.S. Air Force Rank that is a condition for promotion to the Senior Master Sergeant Rank, which requires promotion eligible Airmen to have been conferred an associate or higher-level degree from a nationally or regionally accredited institution on or before the promotion eligibility cutoff date. + AIR FORCE INSTRUCTION 36-2502, §1.10. & Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Degree Requirement for Promotion to U.S. Air Force Senior Master Sergeant Rank + + + + + + + + + E-1 + + + + + + + + + E-2 + + + + + + + + + E-3 + + + + + + + + + E-4 + + + + + + + + + E-5 + + + + + + + + + E-6 + + + + + + + + + E-7 + + + + + + + + + E-8 + + + + + + + + + E-9 + + + + + + + + + A Calendar Day on which some Act of Military Rank Promotion takes effect. + Effective Date of Promotion + + + + + + + + + "All branches of the United States Armed Forces use the general term Enlisted Professional Military Education (EPME) to describe the formal system of education which each branch provides to its enlisted personnel. Each branch has its own system and sequence of courses, with the overall focus on leadership and management. Education generally increases in intensity and level of knowledge as individuals progress in rank and assume broader leadership roles. EPME is distinct from the technical training which service members receive for their Military Occupational Specialty (MOS), Air Force Specialty Code (AFSC), or Navy Rating." + +https://en.wikipedia.org/wiki/Enlisted_Professional_Military_Education + A Military Education Requirement for Promotion in Military Rank that requires an enlisted member of some U.S. Armed Force to complete some enlisted professional military education course, as a condition for promotion to some Enlisted Rank. + https://en.wikipedia.org/wiki/Enlisted_Professional_Military_Education + Enlisted Professional Military Education Requirement for Promotion in Military Rank + + + + + + + + + "Enlisted personnel are personnel below commissioned rank and make up the vast majority of military personnel. They are known by different names in different countries, such as other ranks (ORs) in the United Kingdom and some Commonwealth countries, and non-commissioned members (NCMs) in Canada." [https://en.wikipedia.org/wiki/Military_rank#Enlisted_personnel] + [Note: is this strong enough? Would this definition exclude the case where someone enlists at Private, works their way up the ranks, and later is transferred to cadet school (upon showing officer potential while in the enlisted ranks) and is then promoted to a commissioned officer rank after being commissioned by the president.] + Military Rank that signifies a position in the order of precedence below that of the Commissioned Officer Ranks, and is bestowed on a Service Member either when enrolling into an Armed Force, or on completion of basic training, or via a subsequent promotion. + Military Rank that specifies a position in the order of precedence among enlisted members of an Armed Force and is bestowed on a Service Member either when enlisting into an Armed Force, or on completion of basic training, or via a subsequent promotion. + In most Armed Forces, any rank below that of Commissioned Officer Rank; in the U.S. Armed Forces, any rank below that of warrant officer. + Enlisted Rank + + + + + + + + + + + + + + + + + + + Military Rank Insignia that bears some Enlisted Rank. + Enlisted Rank Insignia + + + + + + + + + Ensign Rank + true + + + + + + + + + Ensign Role + true + + + + + + + + + A Commissioned Officer who has some Field-Officer Rank and is the bearer of some Field-Officer Role. + Field-Officer + + + + + + + + + Field-Officer Captain Rank + true + + + + + + + + + Field-Officer Captain Role + true + + + + + + + + + Field-Officer Commander Rank + true + + + + + + + + + Field-Officer Commander Role + true + + + + + + + + + In many Commonwealth navies, 'Lieutenant Commander' is a Senior Officer Rank. + Field-Officer Lieutenant Commander Rank + true + + + + + + + + + Senior-Officer rank + A Commissioned Officer Rank signifying that holders of the rank have the authority to command units or formations that are expected to operate independently for short periods of time. + Field-Officer Rank + true + + + + + + + + + Field-Officer Role + true + + + + + + + + + Senior Lieutenant Rank + A Senior Lieutenant Rank that is used in various branches of the U.S. Armed Forces, and in various branches of Armed Forces that model their rank structures on that of the U.S. Armed Forces. + First Lieutenant Rank + true + + + + + + + + + First Lieutenant Role + true + + + + + + + + + A Senior Non-Commissioned Officer who has some First Sergeant Rank and is the bearer of some First Sergeant Role. + First Sergeant + true + + + + + + + + + Senior NCO ranks + First Sergeant Rank + true + + + + + + + + + This role can be, and often is, taken on temporarily by soldiers of lower rank than First Sergeant Rank. https://www.rallypoint.com/answers/what-exactly-is-the-difference-between-a-master-sergeant-and-a-1st-sergeant-is-one-technically-higher-than-the-other + First Sergeant Role + true + + + + + + + + + + + + + + + + + + + A Military Rank Insignia that bears some Four-Star Military Rank. + Five-Star Military Rank Insignia + + + + + + + + + A Commissioned Officer who has some Flag Officer Rank and is the bearer of some Flag Officer Role. + Flag Officer + + + + + + + + + A Commissioned Officer Rank, held by a commissioned officer in some navy or coast guard, signifying that the rank holder has the authority to command some navy or coast guard unit or formation that is expected to operate independently for extended periods of time. + This class is intended to apply to the usage of the term 'flag officer' to apply to any rank at or above rear admiral in some navy or coast guard. + +The other alternative is to create a class such as 'Admiral-Officer rank' but no one uses such a term. 'Admiral-level rank' sounds incorrect to my ears. + +"In the United States Army, Air Force, and Marine Corps, the term "flag officer" generally is applied to all general officers authorized to fly their own command flags—i.e., brigadier general, or pay grade O-7, and above.[8][9] However, as a matter of law, Title 10 of the United States Code makes a distinction between general officers and flag officers." [https://en.wikipedia.org/wiki/Flag_officer] + Flag Officer Rank + + + + + + + + + + + + + + + + + + + A Commissioned Officer Rank Insignia that bears some Flag Officer Rank. + Flag Officer Rank Insignia + + + + + + + + + Flag Officer Role + true + + + + + + + + + Flight Lieutenant Rank + true + + + + + + + + + Rank used in many Commonwealth nation air forces, including the United Kingdom. At NATO Code OF-1, it is equivalent in rank to the rank of First Lieutenant in U.S. armed forces. + Flying Officer Rank + true + + + + + + + + + + + + + + + + + + + A Military Rank Insignia that bears some Four-Star Military Rank. + Four-Star Military Rank Insignia + + + + + + + + + + + + + + + French Air and Space Force Adjudant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Général de brigade aérienne + French Air and Space Force Air Brigade General Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Général de corps aérien + French Air and Space Force Air Corps General Rank + + + + + + + + + + + + + + + + + + + + + in command of an entire air force + Général d'armée aérienne + French Air and Space Force Army Air General Rank + + + + + + + + + + + + + + + French Air and Space Force Aviator First Class Rank + + + + + + + + + + + + + + + French Air and Space Force Aviator Second Class Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + French Air and Space Force Captain Rank + + + + + + + + + + + + + + + French Air and Space Force Chief Adjudant Rank + + + + + + + + + + + + + + + Not classified as an NCO rank, but they often have the same responsibilities as a sergeant. + +This is an interesting case. In effect, the play the same role as corporals in the U.S. and Commonwealth. What then is the rationale for demarcating them from the NCO ranks? + French Air and Space Force Chief Corporal Rank + + + + + + + + + + + + + + + Typically a platoon second-in-command (equivalent to a Commonwealth sergeant or a US sergeant first class) + French Air and Space Force Chief Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + French Air and Space Force Colonel Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + French Air and Space Force Commandant Rank + + + + + + + + + French Air and Space Force Commissioned Officer Rank + + + + + + + + + + + + + + + In command of a fireteam. + +This is literally the same role as a U.S. Army corporal. The choice to not classify these as NCO's seems rather arbitrary. + French Air and Space Force Corporal Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Général de division aérienne + French Air and Space Force Divisional Air General Rank + + + + + + + + + French Air and Space Force Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + French Air and Space Force Lieutenant Colonel Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + French Air and Space Force Lieutenant Rank + + + + + + + + + + + + + + + French Air and Space Force Major Rank + + + + + + + + + French Air and Space Force Non-Commissioned Officer Rank + + + + + + + + + Typically in charge of a "group" (i.e. squad). + French Air and Space Force Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Sous-lieutenant + French Air and Space Force Sub-Lieutenant Rank + + + + + + + + + + + + + + + French Army Adjudant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Général de corps d'armée + signifies that the rank holder commands an army corps. + French Army Army Corps General Rank + + + + + + + + + + + + + + + + + + + + + Général d'armée + Commands a whole army + French Army Army General Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Général de brigade + French Army Brigadier General Rank + + + + + + + + + + + + + + + used in calvary units + French Army Brigadier Rank + + + + + + + + + + + + + + + French Army Captain Rank + + + + + + + + + + + + + + + French Army Chief Adjudant Rank + + + + + + + + + + + + + + + used in calvary units + French Army Chief Brigadier Rank + + + + + + + + + + + + + + + used in infantry units + French Army Chief Corporal Rank + + + + + + + + + + + + + + + French Army Chief Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + signifies that the rank holder is in command of a regiment. + French Army Colonel Rank + Senior Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + French Army Commandant Rank + Senior Officer + + + + + + + + + French Army Commissioned Officer Rank + + + + + + + + + + + + + + + used in infantry units + French Army Corporal Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Général de division + signifies that the rank holder is in command of an army division. + French Army Division General Rank + + + + + + + + + French Army Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + French Army Lieutenant Colonel Rank + Senior Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + French Army Lieutenant Rank + + + + + + + + + + + + + + + French Army Major Rank + + + + + + + + + French Army Non-Commissioned Officer Rank + + + + + + + + + + + + + + + French Army Sergeant Rank + + + + + + + + + + + + + + + French Army Soldier First Class Rank + + + + + + + + + + + + + + + French Army Soldier Second Class Rank + + + + + + + + + + + + + + + + + + + + + French Army Sub-Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Amiral + French Navy Admiral Rank + + + + + + + + + French Navy Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Capitaine de corvette + Bearers of the rank are addressed as 'Commandant'. + French Navy Corvette Captain Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Contre-Amiral + French Navy Counter Admiral Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Premier-maître + French Navy First Master Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Capitaine de frégate + Bearers of the rank are addressed as 'Commandant'. + French Navy Frigate Captain Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Matelot breveté + French Navy Graduate Seaman Rank + + + + + + + + + French Navy Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + French Navy Adjutant-Major Rank + French Navy Major Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Maître + French Navy Master Rank + + + + + + + + + French Navy Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Maître-principal + French Navy Principal Master Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Quartier-maître de 1re classe + French Navy Quartermaster First Class Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Quartier-maître de 2e classe + French Navy Quartermaster Second Class Rank + + + + + + + + + + + + + + + + + + + + + Matelot + French Navy Seaman Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Second-maître + French Navy Second Master Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Capitaine de vaisseau + Bearers of the rank are addressed as 'Commandant'. + French Navy Ship-of-the-line Captain Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Lieutenant de vaisseau + French Navy Ship-of-the-line Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Vice-Amiral d'escadre + French Navy Squadron Vice-Admiral Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Equivalent to rear admiral in U.S. Not to U.S. vice admiral + Vice-Amiral + French Navy Vice-Admiral Rank + + + + + + + + + + + + + + + + + + + + + + + + + A Gain of Dependent Continuant wherein some Independent Continuant becomes the carrier of some Generically Dependent Continuant. + A Person forms a Plan, A Person is initiated into a Religion, A photgraphic image is produced. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology + Gain of Generically Dependent Continuant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A Gain of Generically Dependent Continuant wherein some Person becomes the carrier of some Military Rank. + Gain of Military Rank + + + + + + + + + Gain of U.S. Army Corporal Rank + + + + + + + + + Gain of U.S. Army Master Sergeant Rank + + + + + + + + + A Gain of Military Rank wherein some Person becomes the carrier of some U.S. Army Private First Class Rank. + Gain of U.S. Army Private First Class Rank + + + + + + + + + A Gain of Military Rank wherein some Person becomes the carrier of some U.S. Army Private Rank. + Gain of U.S. Army Private Rank + + + + + + + + + A Gain of Military Rank wherein some Person becomes the carrier of some U.S. Army Private Second Class Rank. + Gain of U.S. Army Private Second Class Rank + + + + + + + + + Gain of U.S. Army Sergeant First Class Rank + + + + + + + + + Gain of U.S. Army Sergeant Major Rank + + + + + + + + + Gain of U.S. Army Sergeant Rank + + + + + + + + + A Gain of Military Rank wherein some Person becomes the carrier of some U.S. Army Specialist Rank. + Gain of U.S. Army Specialist Rank + + + + + + + + + Gain of U.S. Army Staff Sergeant Rank + + + + + + + + + A Commissioned Officer who has some General-Officer Rank and is the bearer of some General-Officer Role. + General-Officer + + + + + + + + + A Commissioned Officer Rank, held by a commissioned officer in some army, air force, or marine corps, signifying that the rank holder has the authority to command some army, air force, or marine corps unit or formation that is expected to operate independently for extended periods of time. + General Officer Rank + + + + + + + + + General-Officer Role + true + + + + + + + + + + + + + + + + + + + Commissioned Officer Rank Insignia that bears some General Officer Rank. + General Officer Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some General of the Air Force Rank and is the bearer of some General of the Air Force Role. + General of the Air Force + + + + + + + + + General of the Air Force Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + wartime rank; 5 stars; currently retired. + General of the Air Force Rank + + + + + + + + + + + + + + + + + + + + + + + U.S. Army General Officer who has some General of the Army Rank and is the bearer of some General of the Army Role. + General of the Army + + + + + + + + + General of the Army Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + wartime rank; 5 stars + General of the Army Rank + General Officer Rank + + + + + + + + + General Rank + true + + + + + + + + + General Role + true + + + + + + + + + German Air Force Commissioned Officer Rank + + + + + + + + + + + + + + + German Air Force Major Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Deutsches Heer Brigadegeneral Rang + German Army Brigadier General Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-2b + Deutsches Heer Hauptmann Rang + German Army Captain Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Deutsches Heer Oberst Rang + German Army Colonel Rank + + + + + + + + + German Army Commissioned Officer Rank + + + + + + + + + + + + + + + Requires discussion: need to make sure that this is actually classified as an NCO rank. They are NATO equivalent to NCO ranks, but does that mean they are NCO ranks? + This is a Junior NCO rank that is given to officer aspirants (training to become commissioned officers): https://en.wikipedia.org/wiki/Fahnenjunker + German Army Fahnenjunker Rang + + + + + + + + + Deutsches Heer Stabsoffiziere Rang + German Army Staff Officer Rank + German Army Field Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + NATO code OR-6b? https://en.wikipedia.org/wiki/Unteroffiziere_mit_Portepee + Deutsches Heer Feldwebel Rang + German Army Field Usher Rank + + + + + + + + + + + + + + + German Army Fähnrich Rang + + + + + + + + + + + + + + + + + + + + + + + + + + + German Army Private Rank + German Army Gefreiter Rank + + + + + + + + + German Army General Officer Rank + + + + + + + + + + + + + + + + + + + + + Deutsches Heer General Rang + German Army General Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + NATO code OR-3a: https://en.wikipedia.org/wiki/Gefreiter#Bundeswehr + German Army Main Private Rank + German Army Hauptgefreiter Rank + + + + + + + + + German Army Junior Enlisted Rank + + + + + + + + + Deutsches Heer Unteroffiziere ohne Portepee Rang + Unteroffiziere "ohne Portepee" translates as non-commissioned officer without swordknot. This designation, which separates junior NCOs from senior NCOs, derives from an earlier tradition in which senior NCOs carried the officer's sword or sabre with the officer's sword knot. [https://en.wikipedia.org/wiki/Unteroffiziere_ohne_Portepee] + German Army Junior Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + German Army Korporal Rank + + + + + + + + + + + + + + + Deutsches Heer Oberstleutnant Rang + German Army Lieutenant Colonel Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Deutsches Heer Generalleutnant Rang + German Army Lieutenant General Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-1b + Deutsches Heer Leutnant Rang + German Army Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + According to Stanag 2116, this rank falls under both OR-7 and OR-8. But it is not made clear what the difference is between an OR-7 and OR-8s. + +https://en.wikipedia.org/wiki/Hauptfeldwebel_(rank) + Deutsches Heer Hauptfeldwebel Rang + German Army Chief Field Usher Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Deutsches Heer Generalmajor Rang + German Army Major General Rank + + + + + + + + + + + + + + + + + + + + + Deutsches Heer Major Rang + German Army Major Rank + + + + + + + + + In the German Army, 'Unteroffizier' (translating as 'subordinate officer') is used as generic term for any non-commissioned officer. But that term is also used for a specific non-commissioned officer rank. + German Army Non-Commissioned Officer Rank + + + + + + + + + + + + + + + Also NATO code OR-8? + German Army Oberfähnrich Rang + + + + + + + + + + + + + + + + + + + + + + + + + + + NATO code OR-3b?: https://en.wikipedia.org/wiki/Gefreiter#Bundeswehr + German Army Senior Private Rank + German Army Obergefreiter Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + NATO code OR-4a: https://en.wikipedia.org/wiki/Gefreiter#Bundeswehr + German Army Senior Staff Private Rank + German Army Oberstabsgefreiter Rank + + + + + + + + + Deutsches Heer Offizieranwärter Rang + German Army Officer Aspirant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + NATO code OR-6a?: https://en.wikipedia.org/wiki/Unteroffiziere_mit_Portepee + Deutsches Heer Oberfeldwebel Rang + German Army Senior Field Usher Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-1a + Deutsches Heer Oberleutnant Rang + German Army Senior Lieutenant Rank + + + + + + + + + https://en.wikipedia.org/wiki/Unteroffiziere_mit_Portepee + Deutsches Heer Unteroffiziere mit Portepee Rang + German Army Senior Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + https://en.wikipedia.org/wiki/Oberstabsfeldwebel + Deutsches Heer Oberstabsfeldwebel Rang + German Army Senior Staff Field Usher Rank + + + + + + + + + + + + + + + + + + + + + https://en.wikipedia.org/wiki/Soldat_(rank)#Bundeswehr + German Army Soldat Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + NATO code OR-4b: https://en.wikipedia.org/wiki/Gefreiter#Bundeswehr + German Army Staff Private Rank + German Army Stabsgefreiter Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + https://en.wikipedia.org/wiki/Stabskorporal + German Army Staff Corporal Rank + German Army Stabskorporal Rank + + + + + + + + + + + + + + + + + + + + + NATO code OR-5a??? [https://en.wikipedia.org/wiki/Stabsunteroffizier] + German Army Stabsunteroffizier Rang + + + + + + + + + + + + + + + + + + + + + OF-2a + Deutsches Heer Stabshauptmann Rang + German Army Staff Captain Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + https://en.wikipedia.org/wiki/Stabsfeldwebel + Deutsches Heer Stabsfeldwebel Rang + German Army Staff Field Usher Rank + + + + + + + + + + + + + + + + + + + + + NATO rank code of OR-5c???? [https://en.wikipedia.org/wiki/Stabsunteroffizier] + +Here it is said that the code is OR-5b: https://en.wikipedia.org/wiki/Unteroffizier + Typically commands a squad sized formation, or acts as an assistant platoon NCO. [https://en.wikipedia.org/wiki/Unteroffizier] + 'Unteroffizier' translates as 'subordinate officer'. It is equivalent to the rank of Sergeant in the U.S. Army. Has similar duties to the U.S. Army rank. [https://en.wikipedia.org/wiki/Unteroffizier] + +Some internet sources claim that the term translates into 'sergeant, staff sergeant', though this doesn't seem to be justified. That the ranks denoted by these terms are roughly equivalent does not mean that the terms are sematically equivalent. + German Army Unteroffizier Rang + + + + + + + + + + + + + + + + + + + + + Deutsches Marine Admiral Rang + German Navy Admiral Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + NATO code OR-6b: https://en.wikipedia.org/wiki/Stabsbootsmann + German Navy Boatswain Rank (???) + German Navy Bootsmann Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-2b + Deutsches Marine Kapitänleutnant Rang + German Navy Captain Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Deutsches Marine Kapitän zur See Rang + German Navy Captain at Sea Rank + + + + + + + + + German Navy Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Deutsches Marine Korvettenkapitän Rang + German Navy Corvette Captain Rank + + + + + + + + + German Navy Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Deutsches Marine Flottillenadmiral Rang + German Navy Flotilla Admiral Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Deutsches Marine Fregattenkapitän Rang + German Navy Frigate Captain Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + German Navy Chief Boatswain Rank (???) + German Navy Hauptbootsmann Rank + + + + + + + + + German Navy Junior Enlisted Rank + + + + + + + + + Deutsches Marine Unteroffiziere ohne Portepee Rang + German Navy Junior Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-1b + Deutsches Marine Leutnant zur See Rang + German Navy Lieutenant at Sea Rank + + + + + + + + + + + + + + + NATO code OR-5b? OR-5c? Depends on whether the officer aspirant rank goes between or is an equivalent. +https://en.wikipedia.org/wiki/Obermaat + German Navy Mate Rank (???) + German Navy Maat Rank + + + + + + + + + German Navy Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + NATO code OR-6a: https://en.wikipedia.org/wiki/Stabsbootsmann + German Navy Senior Boatswain Rank (???) + German Navy Oberbootsmann Rank + + + + + + + + + + + + + + + + + + + + + NATO code OR-5a: https://en.wikipedia.org/wiki/Obermaat + German Navy Senior Mate Rank (???) + German Navy Obermaat Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + German Navy Senior Staff Boatswain Rank (???) + German Navy Oberstabsbootsmann Rank + + + + + + + + + + + + + + + + + + + + + German Navy Oberstabsgefreiter Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Deutsches Marine Konteradmiral Rang + German Navy Rear Admiral Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-1a + Deutsches Marine Oberleutnant zur See Rang + German Navy Senior Lieutenant at Sea Rank + + + + + + + + + Deutsches Marine Unteroffiziere mit Portepee Rang + German Navy Senior Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + German Navy Staff Boatswain Rank (???) + German Navy Stabsbootsmann Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-2a + Deutsches Marine Stabskapitänleutnant Rang + German Navy Staff Captain Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Deutsches Marine Vizeadmiral Rang + German Navy Vice Admiral Rank + + + + + + + + + Germany Navy Staff Officer Rank + + + + + + + + + Used in many air forces of Commonwealth nations, including the United Kingdom. It is equivalent to the rank of colonel in the U.S. Air Force, And it it is equivalent to the rank of naval captain in many navies, as well as the colonel rank in many armies. + Group Captain Rank + true + + + + + + + + + An Act of Promotion to U.S. Army Master Sergeant Rank (USAR) in which the Commanding General, Human Resources Command selects from a promotion recommended list an Individual Mobilization Augmentee Sergeant First Class, and either i) assigns that Soldier to an Individual Mobilization Augmentee position vacancy authorized for the U.S. Army Master Sergeant Rank, advancing the Soldier to that rank effective the date of the assignment; ii) tranfers that Soldier to a Troop Program Unit to fill a position vacancy authorized for the U.S. Army Master Sergeant Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Chapters 6 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +See in particular paragraphs: +6-1c, 6-2, 6-3f(2), and 6-9. + Individual Mobilization Augmentee Centralized Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant First Class Rank (USAR) in which the Commanding General, Human Resources Command selects from a promotion recommended list an Individual Mobilization Augmentee Staff Sergeant, and either i) assigns that Soldier to an Individual Mobilization Augmentee position vacancy authorized for the U.S. Army Sergeant First Class Rank, advancing the Soldier to that rank effective the date of the assignment; ii) tranfers that Soldier to a Troop Program Unit to fill a position vacancy authorized for the U.S. Army Sergeant First Class Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Chapters 6 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +See in particular paragraphs: +6-1c, 6-2, 6-3f(2), and 6-9. + Individual Mobilization Augmentee Centralized Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Major Rank (USAR) in which the Commanding General, Human Resources Command selects from a promotion recommended list an Individual Mobilization Augmentee Master Sergeant or First Sergeant, and either i) assigns that Soldier to an Individual Mobilization Augmentee position vacancy authorized for the U.S. Army Sergeant Major Rank, advancing the Soldier to that rank effective the date of the assignment; ii) tranfers that Soldier to a Troop Program Unit to fill a position vacancy authorized for the U.S. Army Sergeant Major Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Chapters 6 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +See in particular paragraphs: +6-1c, 6-2, 6-3f(2), and 6-9. + Individual Mobilization Augmentee Centralized Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + An Act of Promotion to U.S. Army Master Sergeant Rank (USAR) in which the Commanding General, Human Resources Command selects from a promotion recommended list an Individual Ready Reserve Sergeant First Class, and transfers that Soldier to a Troop Program Unit to fill a position vacancy that requires the U.S. Army Master Sergeant Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Chapters 5 and 6 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +See in particular paragraphs: +5-1c, 5-16d, 6-1c, 6-2, 6-3f(2), and 6-9. + All promotions of Individual Ready Reserve soldiers to the rank of SFC through SGM must be made against an existing or projected position vacancy within an Army Reserve Troop Program Unit. The Individual Ready Reserve soldier is promoted to the next rank in order to fill a position vacancy that requires that rank. The promotion is effective the date that soldier accepts their new assignment. Individual Ready Reserve soldiers are only promoted to fill position vacancies when those vacancies cannot be filled with a qualified soldier that already holds the authorized rank. Thus, if there is already a qualified soldier in the Troop Unit Program who holds the authorized rank, they would be assigned to fill the vacancy. + +"When the position vacancy cannot be filled with a qualified Soldier in the authorized rank, the CG, HRC (AHRC–PDV–PE) will promote from the recommended list, by sequence number, a Soldier who possesses the required MOS. Promotions to TPU vacancies will be accomplished through coordination with the USARC and in conjunction with a TPU assignment. If available and otherwise eligible, HRC will transfer promotable Soldiers to TPU vacancies and promote them effective the date of assignment." +Army Regulation 600–8–19, Ch. 6, 6-9b. + Individual Ready Reserve Centralized Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant First Class Rank (USAR) in which the Commanding General, Human Resources Command selects from a promotion recommended list an Individual Ready Reserve Staff Sergeant, and transfers that Soldier to a Troop Program Unit to fill a position vacancy authorized for the U.S. Army Sergeant First Class Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Chapters 5 and 6 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +See in particular paragraphs: +5-1c, 5-16d, 6-1c, 6-2, 6-3f(2), and 6-9. + All promotions of Individual Ready Reserve soldiers to the rank of SFC through SGM must be made against an existing or projected position vacancy within an Army Reserve Troop Program Unit. The Individual Ready Reserve soldier is promoted to the next rank in order to fill a position vacancy that requires that rank. The promotion is effective the date that soldier accepts their new assignment. Individual Ready Reserve soldiers are only promoted to fill position vacancies when those vacancies cannot be filled with a qualified soldier that already holds the authorized rank. Thus, if there is already a qualified soldier in the Troop Unit Program who holds the authorized rank, they would be assigned to fill the vacancy. + +"When the position vacancy cannot be filled with a qualified Soldier in the authorized rank, the CG, HRC (AHRC–PDV–PE) will promote from the recommended list, by sequence number, a Soldier who possesses the required MOS. Promotions to TPU vacancies will be accomplished through coordination with the USARC and in conjunction with a TPU assignment. If available and otherwise eligible, HRC will transfer promotable Soldiers to TPU vacancies and promote them effective the date of assignment." +Army Regulation 600–8–19, Ch. 6, 6-9b. + Individual Ready Reserve Centralized Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Major Rank in which the Commanding General, Human Resources Command selects from a promotion recommended list an Individual Ready Reserve Master Sergeant or First Sergeant, and tranfers that Soldier to a Troop Program Unit to fill a position vacancy authorized for the U.S. Army Sergeant Major Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Chapters 5 and 6 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +See in particular paragraphs: 5-16d and and 6-9. + Such promotions are made when the position vacancy cannot be filled with a qualified Soldier serving in the Troop Unit Program (TPU) who already holds the U.S. Army Sergeant Major Rank. Promotions to fill TPU vacancies are made by the CG, HRC through coordination with U.S. Army Reserve Command. Eligible Individual Ready Reserve Soldiers who possess the required Military Occupational Specialty are selected from the promotion recommended list according to their sequence number. +[See AR 600-8-19, paragraph 6-9b] + Individual Ready Reserve Centralized Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + A U.S. Navy Enlisted Leadership Development Course Requirement that requires some U.S. Navy Petty Officer First Class to have completed an Intermediate Leadership Development Course as a condition for advancement to the U.S. Navy Petty Officer Second Class Rank. + https://www.mynavyhr.navy.mil/Portals/55/Messages/NAVADMIN/NAV2019/NAV19185.txt?ver=A-pLJ9CU31C0SmXOnra6lw%3D%3D + +https://365chief.com/uploads/3/5/1/6/35163276/layingthekeel.pdf + +Replaces the previous Petty Officer Second Class Selectee Leadership Course requirement from: + +BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', paragraph 210b + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Intermediate Leader Development Course Requirement + + + + + + + + + + + + + + + Briogáidire-ghinearál + Irish Air Corps Brigadier General Rank + General Officer Rank + + + + + + + + + + + + + + + Captaen + Irish Air Corps Captain Rank + Junior Officer Rank + + + + + + + + + + + + + + + Coirnéal + Irish Air Corps Colonel Rank + Field Officer Rank + + + + + + + + + Ceannfort + Irish Air Corps Commandant Rank + Field Officer Rank + + + + + + + + + Irish Air Corps Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Air Corps Flight Quartermaster Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Not sure about the NATO code + +Senior NCO +https://en.wikipedia.org/wiki/Irish_Air_Corps#Other_rank_insignia + Irish Air Corps Flight Sergeant Rank + + + + + + + + + + + + + + + Leifteanantchoirnéal + Irish Air Corps Lieutenant Colonel Rank + Field Officer Rank + + + + + + + + + + + + + + + Leifteanant + Irish Air Corps Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + Maor-ghinearál + Irish Air Corps Major General Rank + General Officer Rank + + + + + + + + + Irish Air Corps Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + Irish Air Corps Regimental Quartermaster Sergeant Rank + + + + + + + + + + + + + + + Irish Air Corps Regimental Sergeant Major Rank + + + + + + + + + Dara-leifteanant + Irish Air Corps Second Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + Senior NCO + Irish Air Corps Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Army Briogáidire-ghinearál Rank + Irish Brigadier-general Army Rank + Irish Army Brigadier General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Army Captaen Rank + Irish Army Captain Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Army Coirnéal Rank + Irish Army Colonel Rank + Field Officer Rank + + + + + + + + + + + + + + + + + + + + + Equivalent to the rank of Major in other armies. + Irish Army Ceannfort Rank + Irish Army Commandant Rank + Field Officer Rank + + + + + + + + + Irish Army Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + The title 'Company Quartermaster Sergeant' is used for this rank in the infantry and most corps units. But in artillery units the rank is known by the title of 'Battery Quartermaster Sergeant'. +https://en.wikipedia.org/wiki/Company_quartermaster_sergeant#Ireland + Irish Army Ceathrúsháirsint Complacht Rank + Irish Army Company Quartermaster Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Is the equivalent to the U.S. Army First Sergeant Rank + +In artillery units, this rank is given the title of 'Battery Sergeant', and in Calvary Corps it is given the title of 'Squadron Sergeant'. + +https://en.wikipedia.org/wiki/Company_sergeant + These are Senior NCOs + Irish Army Sáirsint Complachta Rank + Irish Army Company Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + Irish Army Ceannaire Rank + Irish Army Corporal Rank + + + + + + + + + Irish Army Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Army Leifteanant-choirnéal Rank + Irish Army Lieutenant-colonel Rank + Irish Army Lieutenant Colonel Rank + Field Officer Rank + + + + + + + + + + + + + + + + + + + + + Highest rank in the Irish Army. + Irish Army Leifteanant-ghinearál Rank + Irish Army Lieutenant-general Rank + Irish Army Lieutenant General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Army Leifteanant Rank + Irish Army Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Army Maor-ghinearál Rank + Irish Army Major General Rank + General Officer Rank + + + + + + + + + Irish Army Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Irish Army Private Recruit Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Equivalent to the British Army Warrant Officer Class 2 Rank + Senior NCO + Irish Army Ceathrúsháirsint Cathláin/Reisiminte Rank + Irish Army Regimental Quartermaster Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Irish Army Dara leifteanant Rank + Irish Army Second Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Depending on the sub-branch of the army, the rank has either the title of 'Regimental Sergeant Major' or 'Battalion Sergeant Major'. + Senior NCO + Irish Army Maor-Sáirsint Rank + Irish Army Sergeant Major Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SNCO + Irish Army Sáirsint Rank + Irish Army Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Defense Forces General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Enlisted? Not an NCO? https://en.wikipedia.org/wiki/Irish_Defence_Forces_rank_insignia + Irish Naval Service Mairnéalach Inniúil Rank + Irish Naval Service Able Seaman Rank** + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Naval Service Captaen Rank + Irish Naval Service Captain Rank + Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + Irish Naval Service Ard-Mhion-Oifigeach Rank + Irish Naval Service Chief Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Naval Service Ceannasaí Rank + Irish Naval Service Commander Rank + Senior Officer Rank + + + + + + + + + Irish Naval Service Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Naval Service Ceannasóir Rank + Irish Naval Service Commodore Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Naval Service Meirgire Rank + Irish Naval Service Ensign Rank + Junior Officer Rank + + + + + + + + + Irish Naval Service Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO -- Not sure actually + Irish Naval Service Leading Seaman Rank + Irish Naval Service Mairnéalach ceannais Rank + + + + + + + + + + + + + + + + + + + + + Irish Naval Service Leifteanant-Cheannasaí Rank + Irish Naval Service Lieutenant Commander Rank + Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Naval Service Leifteanant Rank + Irish Naval Service Lieutenant Rank + Junior Officer Rank + + + + + + + + + Irish Naval Service Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Naval Service Mairnéalach Rank + Irish Naval Service Ordinary Seaman Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Doesn't seem to distinguish between junior and senior NCO. + Irish Naval Service Mion-oifigeach Rank + Irish Naval Service Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Naval Service Seachaimiréal Rank + Irish Naval Service Rear Admiral Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + Irish Naval Service Earcach Rank + Irish Naval Service Seaman Recruit Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + Irish Naval Service Ard-mhion-oifigeach sinsearach Rank + Irish Naval Service Senior Chief Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Doesn't seem to distinguish between junior and senior NCO. + Irish Naval Service Mion-oifigeach sinsearach Rank + Irish Naval Service Senior Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + Irish Naval Service Fo-Leifteanant Rank + Irish Naval Service Sub-Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + This is the highest flag officer rank in the Irish Naval Service. There is no one-star Admiral rank in the Irish Naval Service. + Irish Naval Service Leas-Aimiréal Rank + Irish Naval Service Vice Admiral Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + There are three variants for this rank: + +Executive +Administrative +Engineering +Communications + +https://en.wikipedia.org/wiki/Irish_Naval_Service#Irish_Naval_Service_warrant_officers + These are Senior NCOs + Irish Naval Service Oifigeach barántais Rank + Irish Naval Service Warrant Officer Rank + + + + + + + + + A JNCO Corporal who has some JNCO Army Corporal Rank and is the bearer of some JNCO Army Corporal Role. + JNCO Army Corporal + true + + + + + + + + + JNCO Army Corporal role + true + + + + + + + + + A Junior Non-Commissioned Officer who has some JNCO Corporal Rank and is the bearer of some JNCO Corporal Role. + JNCO Corporal + true + + + + + + + + + JNCO Corporal role + true + + + + + + + + + A JNCO Corporal who has some JNCO Marine Corps Corporal Rank and is the bearer of some JNCO Marine Corps Corporal Role. + JNCO Marine Corps Corporal + true + + + + + + + + + JNCO Marine Corps Corporal role + true + + + + + + + + + A Junior Non-Commissioned Officer who has some JNCO Staff Sergeant Rank and is the bearer of some JNCO Staff Sergeant Role. + JNCO Staff Sergeant + true + + + + + + + + + JNCO Staff Sergeant role + true + + + + + + + + + An Action Requirement for Promotion in Military Rank that requires some Commissioned Officer at the O-6 pay grade to have completed a Joint Duty Assignment tour, in which the unit they were responsible for commanding was made up of service members from two or more branches of the U.S. military, as a condition for promotion to some O-7 General-Officer Rank or some O-7 Flag Officer Rank. + Public Law 99-433 +99th Congress +SEC. 404. JOINT DUTY ASSIGNMENT AS PREREQUISITE FOR PROMOTION +TO GENERAL OR FLAG OFFICER GRADE + +https://www.govinfo.gov/content/pkg/STATUTE-100/pdf/STATUTE-100-Pg992.pdf + +[Though, there are some conditions listed under which the Secretary of Defense can waive this requirement.] + https://officerassignments.com/general-flag-officer-promotions/ + See also: https://www.law.cornell.edu/uscode/text/10/619a + +After this, one must be designated as a 'joint qualified officer', which also involves other requirements. + Joint Duty Assignment Requirement for Promotion to General Officer or Flag Officer Rank + + + + + + + + + A Joint Duty Assignment Requirement for Promotion to General-Officer Rank or Flag Officer Rank that requires some U.S. Air Force Colonel to have completed a Joint Duty Assignment in which the unit they were responsible for commanding was made up of service members from two or more branches of the U.S. military, as a condition for promotion to the U.S. Air Force Brigadier General Rank. + Public Law 99-433 +99th Congress +SEC. 404. JOINT DUTY ASSIGNMENT AS PREREQUISITE FOR PROMOTION +TO GENERAL OR FLAG OFFICER GRADE + +https://www.govinfo.gov/content/pkg/STATUTE-100/pdf/STATUTE-100-Pg992.pdf + +[Though, there are some conditions listed under which the Secretary of Defense can waive this requirement.] + https://officerassignments.com/general-flag-officer-promotions/ + Joint Duty Assignment Requirement for Promotion to U.S. Air Force Brigadier General Rank + + + + + + + + + + + + + + + A Joint Duty Assignment Requirement for Promotion to General-Officer Rank or Flag Officer Rank that requires some U.S. Army Colonel to have completed a Joint Duty Assignment in which the unit they were responsible for commanding was made up of service members from two or more branches of the U.S. military, as a condition for promotion to the U.S. Army Brigadier General Rank. + Public Law 99-433 +99th Congress +SEC. 404. JOINT DUTY ASSIGNMENT AS PREREQUISITE FOR PROMOTION +TO GENERAL OR FLAG OFFICER GRADE + +https://www.govinfo.gov/content/pkg/STATUTE-100/pdf/STATUTE-100-Pg992.pdf + +[Though, there are some conditions listed under which the Secretary of Defense can waive this requirement.] + https://officerassignments.com/general-flag-officer-promotions/ + Joint Duty Assignment Requirement for Promotion to U.S. Army Brigadier General Rank + + + + + + + + + A Joint Duty Assignment Requirement for Promotion to General-Officer Rank or Flag Officer Rank that requires some U.S. Coast Guard Captain to have completed a Joint Duty Assignment in which the unit they were responsible for commanding was made up of service members from two or more branches of the U.S. military, as a condition for promotion to the U.S. Coast Guard Rear Admiral Lower Half Rank. + Public Law 99-433 +99th Congress +SEC. 404. JOINT DUTY ASSIGNMENT AS PREREQUISITE FOR PROMOTION +TO GENERAL OR FLAG OFFICER GRADE + +https://www.govinfo.gov/content/pkg/STATUTE-100/pdf/STATUTE-100-Pg992.pdf + +[Though, there are some conditions listed under which the Secretary of Defense can waive this requirement.] + https://officerassignments.com/general-flag-officer-promotions/ + Joint Duty Assignment Requirement for Promotion to U.S. Coast Guard Rear Admiral Lower Half Rank + + + + + + + + + A Joint Duty Assignment Requirement for Promotion to General-Officer Rank or Flag Officer Rank that requires some U.S. Marine Corps Colonel to have completed a Joint Duty Assignment in which the unit they were responsible for commanding was made up of service members from two or more branches of the U.S. military, as a condition for promotion to the U.S. Marine Corps Brigadier General Rank. + Public Law 99-433 +99th Congress +SEC. 404. JOINT DUTY ASSIGNMENT AS PREREQUISITE FOR PROMOTION +TO GENERAL OR FLAG OFFICER GRADE + +https://www.govinfo.gov/content/pkg/STATUTE-100/pdf/STATUTE-100-Pg992.pdf + +[Though, there are some conditions listed under which the Secretary of Defense can waive this requirement.] + https://officerassignments.com/general-flag-officer-promotions/ + Joint Duty Assignment Requirement for Promotion to U.S. Marine Corps Brigadier General Rank + + + + + + + + + A Joint Duty Assignment Requirement for Promotion to General-Officer Rank or Flag Officer Rank that requires some U.S. Navy Captain to have completed a Joint Duty Assignment in which the unit they were responsible for commanding was made up of service members from two or more branches of the U.S. military, as a condition for promotion to the U.S. Navy Rear Admiral Lower Half Rank. + Public Law 99-433 +99th Congress +SEC. 404. JOINT DUTY ASSIGNMENT AS PREREQUISITE FOR PROMOTION +TO GENERAL OR FLAG OFFICER GRADE + +https://www.govinfo.gov/content/pkg/STATUTE-100/pdf/STATUTE-100-Pg992.pdf + +[Though, there are some conditions listed under which the Secretary of Defense can waive this requirement.] + https://officerassignments.com/general-flag-officer-promotions/ + Joint Duty Assignment Requirement for Promotion to U.S. Navy Rear Admiral Lower Half Rank + + + + + + + + + A Joint Duty Assignment Requirement for Promotion to General-Officer Rank or Flag Officer Rank that requires some U.S. Space Force Colonel to have completed a Joint Duty Assignment in which the unit they were responsible for commanding was made up of service members from two or more branches of the U.S. military, as a condition for promotion to the U.S. Space Force Brigadier General Rank. + Public Law 99-433 +99th Congress +SEC. 404. JOINT DUTY ASSIGNMENT AS PREREQUISITE FOR PROMOTION +TO GENERAL OR FLAG OFFICER GRADE + +https://www.govinfo.gov/content/pkg/STATUTE-100/pdf/STATUTE-100-Pg992.pdf + +[Though, there are some conditions listed under which the Secretary of Defense can waive this requirement.] + Joint Duty Assignment Requirement for Promotion to U.S. Space Force Brigadier General Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Person who is a member of some Armed Force, has some Junior Enlisted Rank, and is the bearer of some Junior Enlisted Personnel Role. + Junior Enlisted Personnel + + + + + + + + + Junior Enlisted Personnel Role + + + + + + + + + Enlisted Rank below the Non-Commissioned Officer Ranks which specifies a position in the order of precedence that includes certain duties and responsibilities. + Enlisted Rank which signifies a position in the order of precedence below that of the Non-Commissioned Officer Ranks. + Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + Enlisted Rank Insignia that bears some Junior Enlisted Rank. + Junior Enlisted Rank Insignia + + + + + + + + + + + + + + + + + + + Junior Enlisted Seaman + A Junior Enlisted Personnel that is a member of some navy or coast guard, and is the bearer of some Junior Enlisted Sailor Role. + Junior Enlisted Sailor + + + + + + + + + Junior Enlisted Seaman Rank + Junior Enlisted Sailor Rank + true + + + + + + + + + Junior Enlisted Sailor Role + + + + + + + + + + + + + + + + + + + A Junior Enlisted Personnel who is a member of the U.S. Marine Corps and has some U.S. Marine Corps Junior Enlisted Rank. + Junior Enlisted U.S. Marine + + + + + + + + + Junior Enlisted U.S. Marine Role + + + + + + + + + Junior NCO Petty Officer Role + true + + + + + + + + + + + + + + + + + + + + + A Non-Commissioned Officer who has some Junior Non-Commissioned Officer Rank and is the bearer of some Junior Non-Commissioned Officer Role. + Junior Non-Commissioned Officer + + + + + + + + + Abbreviated as JNCO + DEFINED CLASS + Junior Non-Commissioned Officer Rank + + + + + + + + + DEFINED CLASS + Junior Non-Commissioned Officer Role + + + + + + + + + A Commissioned Officer who has some Junior Officer Rank and is the bearer of some Junior Officer Role. + Junior Officer + + + + + + + + + I was originally going to label this 'Captain'. Since navy captains are field officers, I am worried about labeling this class simply 'captain'. I don't particularly like this label, but I think we need to make it clear that we don't mean any rank called 'captain' and I think the generic label would invite such confusions. + Junior Officer Captain Rank + true + + + + + + + + + Junior Officer Captain Role + true + + + + + + + + + Junior Officer Rank + true + + + + + + + + + Junior Officer Role + true + + + + + + + + + A U.S. Army Enlisted Professional Military Education Requirement for Promotion in Military Rank that requires some U.S. Army enlisted soldier to have completed some leadership and officer candidate training course as a condition for promotion to the U.S. Army Specialist Rank. + Leadership and Officer Candidate Training Course Requirement for Promotion to U.S. Army Specialist Rank + true + + + + + + + + + used in airforce, army and marines; create a separate class for each? + Lieutenant Colonel Rank + true + + + + + + + + + Lieutenant Colonel Role + true + + + + + + + + + Lieutenant Commander is a junior officer rank in the United States maritime services, but is a senior/field officer rank in many of the Commonwealth navies. + Junior Officer Lieutenant Commander Rank + true + + + + + + + + + Lieutenant Commander Role + true + + + + + + + + + + + + + + + + + + + + + Lieutenant General Role + true + + + + + + + + + Lieutenant Junior Grade Rank + true + + + + + + + + + Lieutenant Junior Grade Role + true + + + + + + + + + Lieutenant Rank + true + + + + + + + + + Lieutenant Role + true + + + + + + + + + Lieutenant General Rank + true + + + + + + + + + + + + + + + + + + + + + + + + + + + The definition for this term requires vetting from an expert. + +The relevant Army publication says that for promotion pin-on to SGT rank, must be: "Promoted in CPMOS. Fully qualified in MOS to include meeting all +school requirements." -Paragraph 3-9, Table 3-3: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Promoted in CPMOS to a level satisfactory for SGT rank? This description of the criteria is vague. + A U.S. Army MOS Requirement for Promotion in Military Rank that requires some U.S. Army Corporal to be promoted in their career progression military occupational specialty, and to be fully qualified in their military occupational specialty to include all school requirements, as a condition for a promotion pin-on to the U.S. Army Sergeant Rank. + MOS Requirement for Promotion Pin-on to U.S. Army Sergeant Rank + + + + + + + + + The definition for this term requires vetting from an expert. + +The relevant Army publication says that for promotion pin-on to SSG rank, must be: "Promoted in CPMOS. Fully qualified in MOS to include meeting all +school requirements." -Paragraph 3-9, Table 3-3: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Promoted in CPMOS to a level satisfactory for SSG rank? This description of the criteria is vague. + A U.S. Army MOS Requirement for Promotion in Military Rank that requires some U.S. Army Sergeant to be promoted in their career progression military occupational specialty, and to be fully qualified in their military occupational specialty to include all school requirements, as a condition for a promotion pin-on to the U.S. Army Staff Sergeant Rank. + MOS Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank + + + + + + + + + A Military Occupational Specialty Requirement for Promotion in Military Rank that requires some U.S. Army soldier to maintain fully qualified status in their career progression military occupational specialty. + U.S. Army MOS Requirement for Promotion in Military Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army MOS Requirement for Promotion in Military Rank that requires some U.S. Army Corporal to maintain fully qualified status in their career progression military occupational specialty, as a condition of recommendation for promotion to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + MOS Requirement for Recommendation to U.S. Army Sergeant Rank + + + + + + + + + A U.S. Army MOS Requirement for Promotion in Military Rank that requires some U.S. Army Sergeant to maintain fully qualified status in their career progression military occupational specialty, as a condition of recommendation for promotion to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + MOS Requirement for Recommendation to U.S. Army Staff Sergeant Rank + + + + + + + + + Major General Rank + true + + + + + + + + + Major General Role + true + + + + + + + + + Major Rank + true + + + + + + + + + Major Role + true + + + + + + + + + Marine Corps Brigadier General Rank + true + + + + + + + + + Marine Corps Brigadier General Role + true + + + + + + + + + Marine Corps Captain Rank + true + + + + + + + + + Marine Corps Captain Role + true + + + + + + + + + Marine Corps Colonel Rank + true + + + + + + + + + Marine Corps Colonel Role + true + + + + + + + + + Marine Corps Colour Sergeant Rank + true + + + + + + + + + Marine Corps First Lieutenant Rank + true + + + + + + + + + Marine Corps First Lieutenant Role + true + + + + + + + + + A First Sergeant who has some Marine Corps First Sergeant Rank and is the bearer of some Marine Corps First Sergeant Role. + Marine Corps First Sergeant + true + + + + + + + + + Marine Corps First Sergeant Rank + true + + + + + + + + + Marine Corps First Sergeant Role + true + + + + + + + + + Marine Corps General Rank + true + + + + + + + + + Marine Corps General Role + true + + + + + + + + + A Senior Non-Commissioned Officer who has some Marine Corps Gunnery Sergeant Rank and is the bearer of some Marine Corps Gunnery Sergeant Role. + Marine Corps Gunnery Sergeant + true + + + + + + + + + Staff NCO + Marine Corps Gunnery Sergeant Rank + true + + + + + + + + + Marine Corps Gunnery Sergeant Role + true + + + + + + + + + Marine Corps Lieutenant Colonel Rank + true + + + + + + + + + Marine Corps Lieutenant Colonel Role + true + + + + + + + + + Marine Corps Lieutenant General Rank + true + + + + + + + + + Marine Corps Lieutenant General Role + true + + + + + + + + + Marine Corps Major General Rank + true + + + + + + + + + Marine Corps Major General Role + true + + + + + + + + + Marine Corps Major Rank + true + + + + + + + + + Marine Corps Major Role + true + + + + + + + + + A Senior Non-Commissioned Officer who has some Marine Corps Master Gunnery Sergeant Rank and is the bearer of some Marine Corps Master Gunnery Sergeant Role. + Marine Corps Master Gunnery Sergeant + true + + + + + + + + + Staff NCO + Marine Corps Master Gunnery Sergeant Rank + true + + + + + + + + + Marine Corps Master Gunnery Sergeant Role + true + + + + + + + + + A Master Sergeant who has some Marine Corps Master Sergeant Rank and is the bearer of some Marine Corps Master Sergeant Role. + Marine Corps Master Sergeant + true + + + + + + + + + This is a rank used in the Philippines and Singapore; but they are slightly different + +Used in US army, air force, marine corps and space force + Marine Corps Master Sergeant Rank + true + + + + + + + + + Marine Corps Master Sergeant Role + true + + + + + + + + + A Private who has some Marine Corps Private Rank and is the bearer of some Marine Corps Private Rank. + A member of some Marine Corps holding the rank of private. + Marine Corps Private + true + + + + + + + + + A Private who has some Marine Corps Private First Class Rank and is the bearer of some Marine Corps Private First Class Role. + Marine Corps Private First Class + true + + + + + + + + + Marine Corps Private First Class Rank + true + + + + + + + + + Marine Corps Private First Class Role + true + + + + + + + + + A Private Rank held by some enlisted marine in some Marine Corps. + Marine Corps Private Rank + true + + + + + + + + + Marine Corps Private Role + true + + + + + + + + + Marine Corps Second Lieutenant Rank + true + + + + + + + + + Marine Corps Second Lieutenant Role + true + + + + + + + + + A Sergeant who has some Marine Corps Sergeant Rank and is the bearer of some Marine Corps Sergeant Role. + Marine Corps Sergeant + true + + + + + + + + + A Sergeant Major who has some Marine Corps Sergeant Major Rank and is the bearer of some Marine Corps Sergeant Major Role. + Marine Corps Sergeant Major + true + + + + + + + + + Marine Corps Sergeant Major Rank + true + + + + + + + + + Marine Corps Sergeant Major Role + true + + + + + + + + + Marine Corps Sergeant Rank + true + + + + + + + + + Marine Corps Sergeant role + true + + + + + + + + + A Senior Non-Commissioned Officer who has some Marine Corps Staff Sergeant Rank and is the bearer of some Marine Corps Staff Sergeant Role. + Marine Corps Staff Sergeant + true + + + + + + + + + Marine Corps Staff Sergeant Rank + true + + + + + + + + + Marine Corps Staff Sergeant Role + true + + + + + + + + + Marine Corps Technical Sergeant Rank + true + + + + + + + + + A Lieutenant Rank used by some maritime service branch of some Armed Force, either a navy or a coast guard. + Maritime Service Branch Lieutenant Rank + true + + + + + + + + + + + + + + + + + + + + + Marshal of the Royal Air Force Rank + Air Officer Rank (Commonwealth) + + + + + + + + + A Chief Petty Officer who has some Master Chief Petty Officer Rank and is the bearer of some Master Chief Petty Officer Role. + Master Chief Petty Officer + true + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Senior Non-Commissioned Officer who has some Master Chief Petty Officer of the Coast Guard Rank and is the bearer of some Master Chief Petty Officer of the Coast Guard Role. + Master Chief Petty Officer of the Coast Guard + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Master Chief Petty Officer of the Coast Guard Rank + + + + + + + + + Master Chief Petty Officer of the Coast Guard Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Senior Non-Commissioned Officer who has some Master Chief Petty Officer of the Navy Rank and is the bearer of some Master Chief Petty Officer of the Navy Role. + Master Chief Petty Officer of the Navy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 ranks below U.S. Coast Guard Chief Warrant Officer 2 (not Coast Guard Warrant Officer 1 Rank). This class is one rank below the Navy, Army and Marine Corps Warrant Officer 1 Ranks, which are themselves 1 rank below U.S. Coast Guard Chief Warrant Officer 2. + Master Chief Petty Officer of the Navy Rank + + + + + + + + + Master Chief Petty Officer of the Navy Role + + + + + + + + + Master Chief Petty Officer Rank + true + + + + + + + + + Master Chief Petty Officer Role + true + + + + + + + + + JNCO Rank + Used in the Canadian Armed Forces, but also the Indonesion Armed Forces. + Master Corporal Rank + true + + + + + + + + + A U.S. Army Enlisted Professional Military Education Requirement for Promotion in Military Rank that requires some U.S. Army Sergeant First Class to have completed the Master Leaders Course, as a condition for promotion to the U.S. Army Master Sergeant Rank. + Paragraph 1-29a(8): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + U.S. Army Master Leaders Course Requirement + + + + + + + + + A Senior Non-Commissioned Officer who has some Master Sergeant Rank and is the bearer of some Master Sergeant Role. + Master Sergeant + true + + + + + + + + + Marine Corps = Staff NCO + +Others = Senior NCO + Master Sergeant Rank + true + + + + + + + + + Master Sergeant Role + true + + + + + + + + + An Action Permission that permits a Person to serve in an Armed Force at their current Military Rank for only a specified period of time without being promoted to the next higher Military Rank, after which that Person is discharged from service. + https://en.wikipedia.org/wiki/Maximum_time_in_grade + Maximum Time in Grade Action Permission + + + + + + + + + This class is intended to cover any role that someone plays in an organization, as that organization relates to the military. + +I was thinking primarily of accomodating the military-related roles and ranks that the U.S President and other higher ranking offices have in relation to the military. + +The role that the U.S President has as commander in chief falls does not fall under 'Armed Force Organization Member Role', because while the president has command authority over the military, he has no military rank and retains civilian status (he is not a member of the Armed Forces). [https://en.wikipedia.org/wiki/Powers_of_the_president_of_the_United_States#Commander-in-chief] + +Maybe this is already covered by the commander in chief role and should be obsoleted. + A Role that inheres in an Agent, who is a member of some Government or Goverment Agency, in virtue of the responsibilites that Agent is expected to fulfill in relation to some Armed Force. + The military-related role the President of the USA has as Commander in Chief. + Military-related Organization Member Role + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A Commission that authorizes an Agent to hold some Commissioned Officer Rank or Warrant Officer Rank, and to execute the powers associated with that rank, and which requires the Agent to discharge the duties associated with the rank. + https://en.wikipedia.org/wiki/Commission_(document) + In the U.S., authority to sign a Military Commission on behalf of the President is normally exercised by the secretary of the department of the military branch in which the officer is being commissioned. + Military Commission + + + + + + + + + + + + + + + + + + + A Commission Document bearing some Military Commission. + Military Commission Document + + + + + + + + + 'Offices' can be filled by persons, or they can be vacant. When a person fills some office, that person acquires a corresponding role. We do not yet have a clear sense of what the ontology of 'offices' should be. It is tempting to think of vacant offices as vacant roles, but roles cannot exist without bearers. And so we cannot say that unfilled offices are vacant roles. [this note is based on personal communication with Barry] + An Authority Role that inheres in some Agent in virtue of that Agent holding some office within some Military Department. + Military Department Authority Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill as a member of some Military Department. + Military Department Organization Member Role + + + + + + + + + A Requirement for Promotion in Military Rank that requires some member of an Armed Force to have completed some military school or course, as a condition for promotion to some Military Rank. + Old Comment: This class refers to various military course requirements that enlisted personnel at various points in their acension through the ranks. + +Not to be confused with the requirement in the U.S. that candidates seeking a commissioned officer rank complete some formal training as leadership and management generalist. + +Newer comment: Actually not sure. Maybe this class should cover both? + Military Education Requirement for Promotion in Military Rank + + + + + + + + + MOS system is used in the U.S. Army and U.S. Marine Corps. In the U.S. Air Force, a system of Air Force Specialties is used. And in the Navy and Coast Guard use the 'ratings' system. + This definition is a work in progress. Will be refined once the range of subclasses is filled out. + +See Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + A Requirement for Promotion in Military Rank that requires some U.S. Army soldier or U.S. marine to maintain fully qualified status in their career progression military occupational specialty. + Military Occupational Specialty Requirement for Promotion in Military Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This should be in a higher ontology. I will ask CCO if they can add it. + A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill as a member of some Armed Force. + Armed Force Organization Member Role + + + + + + + + + + + + + + + + + + + + + + + Not sure exactly where this should go. Should perhaps go under a more specific type of descriptive ICE. + +'Describing' may not be enough. Shouldn't it be authorative? Something that implies that the associated role is accepted in virtue of collective acceptance of the relevant person's ability to issue bining directives (pace the definition of CCO:Authority Role)? + An Information Content Entity held by Person who is a member of an Armed Force, which: i) specifies both the Person's position in the order of precedence among members of that Armed Force and the Authority Role(s) or responsibilities the Person either holds, or is authorized to hold, in that Armed Force; ii) is bestowed upon that Person through some appointment, through some promotion, or via enlistment. + Information Content Entity which: i) specifies a position in the order of precedence among members of an Armed Force, as well as any Authority Roles or responsibilities associated with that position; ii) is bestowed upon some Service Member through enlistment, appointment, or promotion. + The clause in the definition concerning enlistment covers the case of the lowest ranks, such as 'U.S. Army Private Rank', 'U.S. Marine Corps Private Rank', 'U.S. Air Force Airman Recruit Rank' and 'U.S. Navy Seaman Recuit Rank', which are assigned upon entry into the Armed Forces. + +Enlisted soldiers can move up the ranks through promotion. + +Appointments are the means by which Commissioned Officer and Non-Commissioned Officer ranks are bestowed. + http://wwww.ontologylibrary.mil/CommonCore/Mid/MilitaryRanksOntology + Shane Babcock + Military Rank + + + + + + + + + + + + + + + + + + + These are work in progress. + +One particular knotty issue. There are insignia that represent certain special billets or roles that can be held at a given rank, as opposed to separate ranks. But they are variations on the quality patterns inhering in the standard rank insignia--so it seems these must also be characterized as subtypes of rank insignia. + +Also, there are variations on rank insignia that represent certain achievements. + +For instance, the standard U.S. Navy insignia that bear the corresponding E-3, E-4, and E-5 Petty Officer Ranks are characterized by a pattern involving 1-3 red stripes. But there are also variations on these insignia patterns which make use of gold stripes, indicating 12 years of good conduct. (Gold stripes are used on the standard insignia for the E-6, E-7, E-8, and E-9 Navy Chief Petty Officers. Of course, the quality patterns of these insignia also involve non-color features which clearly demarcate them from the Petty Officer insignia). + Information Bearing Artifact that bears some Military Rank. + It is not clear that this actually fits under I.B.A. + +The definition for that says that the artifact needs to be part of an information medium artifact. A paradigm example is notebook. + +What would be the medium in this case? Would we distinguish between the insignia (the fabric that is woven into a certain pattern) and the badge on which it is found? + Military Rank Insignia + + + + + + + + + Military Recruit Training Requirement + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A One-Dimensional Temporal Region that is measured in Years and spans at least one Year. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + This is a defined class. + Multi-Year Temporal Interval + + + + + + + + + An Act of Promotion to U.S. Army Master Sergeant Rank (USAR) in which a U.S. Army Reserve Multi-component Unit Commander selects a Sergeant First Class under their command from the Permanent Promotion Recommended List, and assigns that Soldier to a position vacancy authorized for the U.S. Army Master Sergeant Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Ch. 5 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Particularly: + +Paragraphs 5-2c, 5-2a, 5-5b(3), 5-7g, and 5-16a. + Multi-component Unit Centralized Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant First Class Rank (USAR) in which a U.S. Army Reserve Multi-component Unit Commander selects a Staff Sergeant under their command from the Permanent Promotion Recommended List, and assigns that Soldier to a position vacancy authorized for the U.S. Army Sergeant First Class Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Ch. 5 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Particularly: + +Paragraphs 5-2c, 5-2a, 5-5b(3), 5-7g, and 5-16a. + Multi-component Unit Centralized Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Major Rank (USAR) in which a U.S. Army Reserve Multi-component Unit Commander selects a Master Sergeant or First Sergeant under their command from the Permanent Promotion Recommended List, and assigns that Soldier to a position vacancy authorized for the U.S. Army Sergeant Major Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Ch. 5 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Particularly: + +Paragraphs 5-2c, 5-2a, 5-5b(3), 5-7g, and 5-16a. + Multi-component Unit Centralized Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + Myanmar Army Company Quartermaster Sergeant Rank + true + + + + + + + + + This needs to be placed somewhere else in the ICE hierarchy, but I am not sure where. I am waiting to hear back from CCO developers for guidance. + +It may turn out that these are 'Nominal Measurement Information Content Entities', which is defined as: "A Measurement Information Content Entity that consists of a symbol that classifies Entities according to some shared, possibly arbitrary, characteristic." + Information Content Entity that classifies the Military Ranks used by member countries of the North Atlantic Treaty Organization according to a standardized rank scale which matches the Military Ranks of each member country to the equivalent Military Ranks used by the other members. + https://en.wikipedia.org/wiki/Ranks_and_insignia_of_NATO + Among other purposes, NATO's standardized rank scale is used to: i) determine the order of precedence among military personnel of the Armed Forces from different member countries, for the purpose of NATO joint operations; ii) specifying posts within NATO. + NATO Rank Code + + + + + + + + + NCO Air Force Corporal Rank + true + + + + + + + + + NCO Air Force Lance Corporal Rank + true + + + + + + + + + Air Force Master Corporal Rank + true + + + + + + + + + I do not say 'is held by' because in principle a given rank might not be held by anyone. + A JNCO Corporal Rank that is given to some enlisted member of an Army. + NCO Army Corporal Rank + true + + + + + + + + + NCO Army Lance Corporal Rank + true + + + + + + + + + requires review + I am introducing this class because while the word 'corporal' is used for a rank of non-commissioned officer in the U.S. and other militaries, it is also used for a rank of enlisted personnel in other country's militaries. + +"In most countries that derive their military structure from the British military system, corporal is a more senior rank than that of private. However, in several other countries, such as Canada, Italy and Norway, corporal is a junior rank, indicating a more experienced soldier than a private, and also on a higher pay scale, but having no particular command appointment corresponding to the rank, similar to specialist in the U.S. Army." [https://en.wikipedia.org/wiki/Corporal] + Junior NCO Rank + A Non-Commissioned Officer Rank that is in many armed forces worldwide the second most junior Non-Commissioned Officer Rank, and which signifies that the rank holder bears an Authority Role that typically involves the leadership of a small military sub-subunit (such as a team, section or a squad). + https://en.wikipedia.org/wiki/Corporal + Corporal Rank + + + + + + + + + JNCO Rank + May undeprecate this, change label to 'generic lance corporal rank' + A Non-Commissioned Officer Rank that is one rank higher than some Private Rank and one rank lower than some NCO Corporal Rank, and which is the most junior Non-Commissioned Officer Rank in many armed forces worldwide. + https://en.wikipedia.org/wiki/Lance_corporal + NCO Lance Corporal Rank + true + + + + + + + + + I do not say 'is held by' because in principle a given rank might not be held by anyone. + A Junior NCO Corporal Rank that is given to some enlisted member of some Marine Corps. + NCO Marine Corps Corporal Rank + true + + + + + + + + + NCO Marine Corps Lance Corporal Rank + true + + + + + + + + + https://en.wikipedia.org/wiki/Sub-lieutenant#Acting_sub-lieutenant + Navy Acting Sub-Lieutenant Rank + true + + + + + + + + + Navy Admiral Rank + true + + + + + + + + + Navy Admiral Role + true + + + + + + + + + Navy Captain Rank + true + + + + + + + + + Navy Captain Role + true + + + + + + + + + Navy Chief Petty Officer Role + true + + + + + + + + + A Command Master Chief Petty Officer who has some Navy Command Master Chief Petty Officer Rank and is the bearer of some Navy Command Master Chief Petty Officer Role. + Navy Command Master Chief Petty Officer + true + + + + + + + + + Navy Command Master Chief Petty Officer Rank + true + + + + + + + + + Navy Command Master Chief Petty Officer Role + true + + + + + + + + + Navy Commander Rank + true + + + + + + + + + Navy Commander Role + true + + + + + + + + + Navy Commodore Rank + true + + + + + + + + + Navy Ensign Rank + true + + + + + + + + + Navy Ensign Role + true + + + + + + + + + The U.S. Coast Guard does not maintain a Fleet Admiral rank + Navy Fleet Admiral Rank + true + + + + + + + + + Navy Fleet Admiral Role + true + + + + + + + + + Used in the navies of Belgium, Bulgaria, Denmark, Finland, Germany and Sweden. Equivalent to the rank of 'Rear Admiral Lower Half' in the U.S. Navy and 'Commodore' in the navies of Commonwealth Nations. [https://en.wikipedia.org/wiki/Flotilla_admiral] + Navy Flotilla Admiral Rank + + + + + + + + + A Junior non-commissioned officer rank used in many Commonwealth navies. + +(deprecating for now, but may be useful) + Navy Leading Seaman Rank + true + + + + + + + + + Junior Officer Navy Lieutenant Commander Rank + true + + + + + + + + + Navy Lieutenant Commander Role + true + + + + + + + + + Navy Lieutenant Junior Grade Rank + true + + + + + + + + + Navy Lieutenant Junior Grade Role + true + + + + + + + + + Navy and coast guard lieutenants are equivalent in rank to captains in other branches of the military (O3). + +The Navy and Coast Guard share the same Junior Officer rank structure, one that is close to, but slightly different, from the Junior Officer Rank structure that is shared by the Air Force, Army and Marines. This is because the use of Lieutenant in the Navy and Coast Guard is equivalent to the rank of Captain in the other 3 armed forces. + +Because they share a distinctive rank structure, I feel like the Navy and Coast Guard grades of lieutenant should go under a shared parent class more specific than and below the 'Lieutenant rank', but I am not sure what an appropriate parent would be. + Navy Lieutenant Rank + true + + + + + + + + + Navy Lieutenant Role + true + + + + + + + + + A Master Chief Petty Officer who has some Navy Master Chief Petty Officer Rank and is the bearer of some Navy Master Chief Petty Officer Role. + Navy Master Chief Petty Officer + true + + + + + + + + + Navy Master Chief Petty Officer Rank + true + + + + + + + + + Navy Master Chief Petty Officer Role + true + + + + + + + + + Navy Midshipman Rank + true + + + + + + + + + Navy Rear Admiral Lower Half Rank + true + + + + + + + + + Navy Rear Admiral Lower Half Role + true + + + + + + + + + Navy Rear Admiral Rank + true + + + + + + + + + Navy Rear Admiral Upper Half Role + true + + + + + + + + + A Senior Chief Petty Officer who has some Navy Senior Chief Petty Officer Rank and is the bearer of some Navy Senior Chief Petty Officer Role. + Navy Senior Chief Petty Officer + true + + + + + + + + + Navy Senior Chief Petty Officer Rank + true + + + + + + + + + Navy Senior Chief Petty Officer Role + true + + + + + + + + + Navy Vice Admiral Rank + true + + + + + + + + + Navy Vice Admiral Role + true + + + + + + + + + + + + + + + + + + + + + + + + + + + Person who is a member of some Armed Force, who has some Non-Commissioned Officer Rank and is the bearer of some Non-Commissioned Officer Role. + Non-Commissioned Officer + + + + + + + + + "If EPME is not completed by the promotion increment month, the projected promotion will be placed +into “withhold” status as referenced in Table 1.3., item 10. (T-1). If EPME is not completed by the end of +the promotion cycle the projected promotion will be canceled and not reinstated (except for promotion to +SSgt). (T-1). The end of the promotion cycle is defined as the last month promotions will increment for +that particular cycle as outlined in the Enlisted Promotion Eligibility Chart available on myPers." + +Table 1.1.https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Exception: "The only exceptions for waivers beyond 179 days is for Airmen on +Temporary Duty (TDYs) or deployments that exceed 179 days, short-tour locations with no EPME +available, and those who cannot complete required EPME before promotion due to circumstances beyond +their control (e.g., retraining, medical issues, personal hardship, Exceptional Family Member Prgram). (T1). The squadron commander is the approval or disapproval authority for EPME waivers (cannot be further +delegated). Commanders use Attachment 3 to request a promotion waiver for deserving Airmen who meet +these scenarios. Route these requests through AFPC/DP2SPP. If approved, AFPC/DP2SPP will update +MilPDS and, if required, will grant a retroactive effective date in accordance with paragraph 1.17. (T-1). +Commanders may only approve one EPME waiver per Airman; approval authority for subsequent EPME +waiver requests are at the discretion of the Directorate of Force Development (AF/A1D)." + +Table 1.1.https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + A U.S. Air Force Enlisted Professional Military Education Requirement that requires a U.S. Air Force Technical Sergeant to have completed the Non-Commissioned Officer Academy course within 179 days, and prior to the promotion increment month, as a condition for promotion to the U.S. Air Force Master Sergeant Rank. + Table 1.1. https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + U.S. Air Force Non-Commissioned Officer Academy Requirement + + + + + + + + + + + + + + + + + + + Enlisted Rank Insignia that bears some Non-Commissioned Officer Rank. + Non-Commissioned Officer Rank Insignia + + + + + + + + + In French military, entry into NCO candidates attending NCO school are either from the junior enlisted ranks, or direct entry civilians. So, one need not first go through the junior enlisted ranks. + Enlisted Rank which signifies an Authority Role that is realized in the leadership and training of lower ranked enlisted Service Members, or service in a military staff position, and which is acquired via promotion through the enlisted ranks. + Non-Commissioned Officer Rank + + + + + + + + + Non-Commissioned Officer Role + + + + + + + + + Within the U.S. Marine Corps and some other militares, 'lance corporol' is used for a non-officer rank. But many militaries in the Commonwealth nations use this term for a low-level non-commissioned officer rank. + A Non-Officer Enlisted Personnel Rank that is one rank higher than some Private Rank and one rank lower than some NCO Corporal Rank. + In any given armed force, a Non-Officer Lance Corporal Rank is directly above the highest Private-level Rank used in that armed force, and one rank lower than the Corporal Rank used in that armed force. For example, the U.S. Marine Corps Lance Corporal Rank is directly above the U.S. Marine Corps Private First Class Rank and directly below the U.S. Marine Corps Corporal Rank. + +A Non-Officer Lance Corporal Rank is the highest Non-Officer Enlisted Personnel Rank in those armed forces in which the rank of corporal is the lowest NCO rank. But in many armed forces worldwide, particularly in the Commonwealth nations, the rank of lance corporal is the lowest NCO rank. [https://en.wikipedia.org/wiki/Lance_corporal] + Non-Officer Lance Corporal Rank + true + + + + + + + + + O-1 + + + + + + + + + O-10 + + + + + + + + + O-2 + + + + + + + + + O-3 + + + + + + + + + O-4 + + + + + + + + + O-5 + + + + + + + + + O-6 + + + + + + + + + O-7 + + + + + + + + + O-8 + + + + + + + + + O-9 + + + + + + + + + A Commissioned Officer NATO Rank Scale Code assigned to any of the equivalent Commissioned Officer Ranks used by member countries of NATO that are tenth highest on the NATO Rank Scale. + Most member Armed Forces have two ranks at OF-1, and several have 3 ranks at OF-1; normally these are different grades of Lieutenant (used especially within armies and marine corps, but also used in the air force of the United States and other air forces modelled on the United States' rank structure). Most member countries have ranks translatable as 'first lieutenant' and 'second lieutenant'. Some have 'third lieutenants' as well. + +But the OF-1 ranks also include the rank of Ensign, as in the case of the U.S. Navy and Coast Guard. As well as the 'Pilot Officer' and 'Flying Officer' ranks that are used in the air force of Britian and other Commonwealth Nations. + OF-1 + + + + + + + + + A Commissioned Officer NATO Rank Scale Code assigned to any of the equivalent Commissioned Officer Ranks used by member countries of NATO that are highest on the NATO Rank Scale. + Not all NATO Armed Forces have Commissioned Officer Ranks corresponding to the OF-10 code. Typically, only the armies, air forces and navies of NATO member countries maintain such ranks (e.g. the General of the Army, General of the Air Force, and Fleet Admiral Ranks of the U.S. army, air force and navy). + OF-10 + + + + + + + + + + + + + + + + + + + + + + + + + OF-10 Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + A Commissioned Officer Rank that has a NATO Rank Scale Code of OF-1. + OF-1 Commissioned Officer Rank + + + + + + + + + A Commissioned Officer NATO Rank Scale Code assigned to any of the equivalent Commissioned Officer Ranks used by member countries of NATO that are ninth highest on the NATO Rank Scale. + OF-2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A Commissioned Officer Rank that has a NATO Rank Scale Code of OF-2. + OF-2 Commissioned Officer Rank + + + + + + + + + A Commissioned Officer NATO Rank Scale Code assigned to any of the equivalent Commissioned Officer Ranks used by member countries of NATO that are eigth highest on the NATO Rank Scale. + Some member Armed Forces have two ranks at OF-3. For instance, the Belgian Army has both the rank of Major/Majoor and the rank of Capitaine-Commandant at OF-3. In this case, the STANAG 2116 document explicitly states that the latter rank is subordinate to the former, in line with the Belgian Army's order of precedence. + OF-3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A Commissioned Officer Rank that has a NATO Rank Scale Code of OF-3. + OF-3 Commissioned Officer Rank + + + + + + + + + A Commissioned Officer NATO Rank Scale Code assigned to any of the equivalent Commissioned Officer Ranks used by member countries of NATO that are seventh highest on the NATO Rank Scale. + OF-4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A Commissioned Officer Rank that has a NATO Rank Scale Code of OF-4. + OF-4 Commissioned Officer Rank + + + + + + + + + A Commissioned Officer NATO Rank Scale Code assigned to any of the equivalent Commissioned Officer Ranks used by member countries of NATO that are sixth highest on the NATO Rank Scale. + OF-5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A Commissioned Officer Rank that has a NATO Rank Scale Code of OF-5. + OF-5 Commissioned Officer Rank + + + + + + + + + A Commissioned Officer NATO Rank Scale Code assigned to any of the equivalent Commissioned Officer Ranks used by member countries of NATO that are fifth highest on the NATO Rank Scale. + OF-6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-6 Commissioned Officer Rank + + + + + + + + + A Commissioned Officer NATO Rank Scale Code assigned to any of the equivalent Commissioned Officer Ranks used by member countries of NATO that are fourth highest on the NATO Rank Scale. + OF-7 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-7 Commissioned Officer Rank + + + + + + + + + A Commissioned Officer NATO Rank Scale Code assigned to any of the equivalent Commissioned Officer Ranks used by member countries of NATO that are third highest on the NATO Rank Scale. + OF-8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-8 Commissioned Officer Rank + + + + + + + + + A Commissioned Officer NATO Rank Scale Code assigned to any of the equivalent Commissioned Officer Ranks used by member countries of NATO that are second highest on the NATO Rank Scale. + In most NATO Armed Forces, ranks to which this code is assigned are general or admiral ranks, but also air chief marshal ranks in Britain and other commonwealth air forces. + Note: STANAG assigns the OF-9 code to the Spanish Armed Forces appointments of Chief of Defence General Staff and the Chiefs of General Staff of the Army, Navy and Air Force. The Spanish Armed Forces do not have OF-9 ranks, but generals and admirals given these appointments are assigned the OF-9 code. + OF-9 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OF-9 Commissioned Officer Rank + + + + + + + + + OR-1 + + + + + + + + + OR-2 + + + + + + + + + OR-3 + + + + + + + + + OR-5 + + + + + + + + + OR-6 + + + + + + + + + OR-7 + + + + + + + + + OR-8 + + + + + + + + + OR-9 + + + + + + + + + OR-4 + + + + + + + + Obsolete Class + + + + + + + + + + + + + + + + + + + A Military Rank Insignia that bears some One-Star Military Rank. + One-Star Military Rank Insignia + + + + + + + + A placeholder for classes that need to be fit into the class hierarchy. + Other + + + + + + + + + NATO Rank Code that classifies the Enlisted Ranks used by member countries of the North Atlantic Treaty Organization according to a standardized rank scale which matches the Enlisted Ranks of each member country to the equivalent Enlisted Ranks used by the other members. + Other Ranks NATO Rank Code + + + + + + + + + A Junior Non-Commissioned Officer who has some Junior NCO Petty Officer Rank and is the bearer of some Junior NCO Petty Officer Role. + Junior NCO Petty Officer + true + + + + + + + + + Probably to be deprecated + A Petty Officer who has some Petty Officer First Class Rank and is the bearer of some Petty Officer First Class Role. + Petty Officer First Class + true + + + + + + + + + Petty Officer First Class Role + true + + + + + + + + + Deprecate? Change this to a defined class? + A U.S. Armed Forces Petty Officer Rank that is the most senior Junior Non-Commissioned Officer Rank in the U.S. Navy and the U.S. Coast Guard, directly above the Petty Officer Second Class Rank. + See page 3 of: +https://www.mynavyhr.navy.mil/Portals/55/Reference/NEOCS/Vol1/04-Introduction_Chg%2082_Apr%2020.pdf?ver=szLKR2-8OimD6H0rg94gyA%3d%3d + Petty Officer First Class Rank + true + + + + + + + + + Probably to be deprecated + A Petty Officer who has some Petty Officer Second Class Rank and is the bearer of some Petty Officer Second Class Role. + Petty Officer Second Class + true + + + + + + + + + Petty Officer Second Class Role + true + + + + + + + + + Deprecate? Change this to a defined class? + A U.S. Armed Forces Petty Officer Rank that is the second lowest Junior Non-Commissioned Officer Rank in the U.S. Navy and the U.S. Coast Guard, directly above the Petty Officer Third Class Rank and directly below the Petty Officer First Class Rank. + See page 3 of: +https://www.mynavyhr.navy.mil/Portals/55/Reference/NEOCS/Vol1/04-Introduction_Chg%2082_Apr%2020.pdf?ver=szLKR2-8OimD6H0rg94gyA%3d%3d + Petty Officer Second Class Rank + true + + + + + + + + + Probably to be deprecated + A Petty Officer who has some Petty Officer Third Class Rank and is the bearer of some Petty Officer Third Class Role. + Petty Officer Third Class + true + + + + + + + + + Petty Officer Third Class Role + true + + + + + + + + + Deprecate? Change this to a defined class? + A U.S. Armed Forces Petty Officer Rank that is the lowest Junior Non-Commissioned Officer Rank in the U.S. Navy and the U.S. Coast Guard, directly below the Petty Officer Second Class Rank, and which signifies that the rank holder is a technician and work manager within their rating (job specialty) has skill responsibilities and authority. + Petty Officer Third Class Rank + true + + + + + + + + + + + + + + + + + + + + + Wiki says it's a Junior NCO, but I none of the sources appealed to in the article indicate this. + Philippine Air Force Airman First Class Rank* + + + + + + + + + + + + + + + Philippine Air Force Airman Rank + + + + + + + + + + + + + + + + + + + + + Philippine Air Force Airman Second Class Rank + + + + + + + + + + + + + + + + + + + + + Philippine Air Force Brigadier General Rank + + + + + + + + + + + + + + + + + + + + + Philippine Air Force Captain Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Air Force Chief Master Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Philippine Air Force Colonel Rank + + + + + + + + + Philippine Air Force Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Air Force First Lieutenant Rank + + + + + + + + + + + + + + + Philippine Air Force General Rank + + + + + + + + + Philippine Air Force Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + Philippine Air Force Lieutenant Colonel Rank + + + + + + + + + + + + + + + + + + + + + Philippine Air Force Lieutenant General Rank + + + + + + + + + + + + + + + + + + + + + Philippine Air Force Major General Rank + + + + + + + + + + + + + + + + + + + + + Philippine Air Force Major Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Air Force Master Sergeant Rank + + + + + + + + + Philippine Air Force Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Air Force Second Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Air Force Senior Master Sergeant Rank + + + + + + + + + + + + + + + + + + + + + SNCO + Philippine Air Force Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Air Force Staff Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Air Force Technical Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army Brigadier General Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army Captain Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO; The highest enlisted rank in the Philippine Army. + Philippine Army Chief Master Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army Colonel Rank + + + + + + + + + Philippine Army Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army Corporal Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army First Lieutenant Rank + + + + + + + + + + + + + + + Philippine Army General Rank + + + + + + + + + Philippine Army Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army Lieutenant Colonel Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army Lieutenant General Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army Major General Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army Major Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Army Master Sergeant Rank + + + + + + + + + Philippine Army Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army Private First Class Rank + + + + + + + + + + + + + + + Philippine Army Private Rank + + + + + + + + + + + + + + + + + + + + + Philippine Army Second Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Army Senior Master Sergeant Rank + + + + + + + + + + + + + + + + + + + + + S-NCO + Philippine Army Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Army Staff Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Army Technical Sergeant Rank + + + + + + + + + + + + + + + Philippine Coast Guard Admiral Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Captain Rank + Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Coast Guard Chief Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Commander Rank + Senior Officer Rank + + + + + + + + + Philippine Coast Guard Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Commodore Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Ensign Rank + + + + + + + + + Philippine Coast Guard Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Lieutenant Commander Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Lieutenant Junior Grade Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Master Chief Petty Officer Rank + + + + + + + + + Philippine Coast Guard Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Petty Officer, First Class Rank + + + + + + + + + These are senior NCO ranks + Philippine Coast Guard Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Petty Officer, Second Class Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Petty Officer, Third Class Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Rear Admiral Rank + + + + + + + + + + + + + + + Philippine Coast Guard Seaman Apprentice Rank + + + + + + + + + + + + + + + + + + + + + Wiki says it's a Junior NCO, but I none of the sources appealed to in the article indicate this. + Philippine Coast Guard Seaman First Class Rank* + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Seaman Second Class Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Coast Guard Senior Chief Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Coast Guard Vice Admiral Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps Brigadier General Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps Captain Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Marine Corps Chief Master Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps Colonel Rank + + + + + + + + + Philippine Marine Corps Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps Corporal Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps First Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Marine Corps First Sergeant Rank + + + + + + + + + + + + + + + Philippine Marine Corps General Rank + + + + + + + + + Philippine Marine Corps Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps Lieutenant Colonel Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps Lieutenant General Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps Major General Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps Major Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Marine Corps Master Sergeant Rank + + + + + + + + + Philippine Marine Corps Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps Private First Class Rank + + + + + + + + + + + + + + + Philippine Marine Corps Private Rank + + + + + + + + + + + + + + + + + + + + + Philippine Marine Corps Second Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Marine Corps Senior Master Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Marine Corps Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Marine Corps Staff Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Marine Corps Technical Sergeant Rank + + + + + + + + + + + + + + + Philippine Navy Admiral Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Captain Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Navy Chief Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Commander Rank + + + + + + + + + Philippine Navy Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Commodore Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Ensign Rank + + + + + + + + + Philippine Navy Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Lieutenant Commander Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Lieutenant Junior Grade Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Navy Master Chief Petty Officer Rank + + + + + + + + + Philippine Navy Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Petty Officer, First Class Rank + + + + + + + + + These are Senior NCO ranks + Philippine Navy Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Petty Officer, Second Class Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Petty Officer, Third Class Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Rear Admiral Rank + + + + + + + + + + + + + + + Philippine Navy Seaman Apprentice Rank + + + + + + + + + + + + + + + + + + + + + Wiki says it's a Junior NCO, but I none of the sources appealed to in the article indicate this. + Philippine Navy Seaman First Class Rank* + + + + + + + + + + + + + + + + + + + + + Philippine Navy Seaman Second Class Rank + + + + + + + + + + + + + + + + + + + + + Senior NCO + Philippine Navy Senior Chief Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + Philippine Navy Vice Admiral Rank + + + + + + + + + Physical Fitness Requirement for Promotion in Military Rank + + + + + + + + + Lowest commissioned officer rank in the air forces of many Commonwealth nations, including the United Kingdom. Is equivalent to the rank of Second Lieutenant in the U.S. Air Force. + Pilot Officer Rank + true + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Military Rank that applies to some U.S. Army soldier who is a participant in the U.S. Army's primary zone promotion process. + Primary Zone Time in Service Requirement + true + + + + + + + + + Make defined class? + A Junior Enlisted Personal Rank that is the lowest rank, or one of the lowest ranks, in many Armies and Marine Corps, and which signifies that primary role of the rank holder is to carry out all orders that are issued to them by their commanding officers. + Private Rank + + + + + + + + + A Calendar Day that is the earliest date on which a member of an Armed Force is eligible to be promoted to the next higher Military Rank. + Promotion Eligibility Date + + + + + + + + + A Calendar Date Identifier that designates some Promotion Eligibility Date. + Promotion Eligibility Date Identifier + + + + + + + + + Promotion List + + + + + + + + + REGAF Centralized Promotion to U.S. Air Force Chief Master Sergeant Rank + + + + + + + + + REGAF Centralized Promotion to U.S. Air Force Master Sergeant Rank + + + + + + + + + REGAF Centralized Promotion to U.S. Air Force Senior Master Sergeant Rank + + + + + + + + + This is a one star admiral rank + This sort of rank is currently only used in U.S. maritime services. In Commonwealth Nations naval services, the equivalent one-star, OF-6 flag officer rank is that of 'Commodore'. In the modern navies of Belgium, Bulgaria, Denmark, Finland, Germany and Sweden, the equivalent rank is that of 'Flotilla Admiral'. + Rear Admiral Lower Half Rank + true + + + + + + + + + Rear Admiral Lower Half Role + true + + + + + + + + + This is a two star rank + Rear Admiral Rank + true + + + + + + + + + Rear Admiral Upper Half Role + true + + + + + + + + + These are Senior NCOs + Regimental Quartermaster Sergeant Rank + true + + + + + + + + + An Act of Automatic Promotion to U.S. Army Private First Class Rank wherein the Human Resources staff of some Regular Army Battalion, or equivalent echelon, uses the electronic military personnel office system (eMILPO) to advance to the U.S. Army Private First Class Rank, on the next automatic promotion date, each Regular Army Private Second Class within that unit's command who is registered in the system as meeting the promotion eligibility requirements for that rank. + Army Regulation 600–8–19, +Paragraph 1-9c.(1) and Chapter 2 "Decentralized Promotions" + +From paragraph 2-3b. "Promotions to PV2, PFC, and SPC will be made automatically by the electronic military personnel office system +(eMILPO) (RA)" + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Regular Army Automatic Promotion to U.S. Army Private First Class Rank + + + + + + + + + An Act of Automatic Promotion to U.S. Army Private Second Class Rank wherein the Human Resources staff of some Regular Army Battalion, or equivalent echelon, uses the electronic military personnel office system (eMILPO) to advance to the U.S. Army Private Second Class Rank, on the next automatic promotion date, each Regular Army Private within that unit's command who is registered in the system as meeting the promotion eligibility requirements for that rank. + Army Regulation 600–8–19, +Paragraph 1-9c.(1) and Chapter 2 "Decentralized Promotions" + +From paragraph 2-3b. "Promotions to PV2, PFC, and SPC will be made automatically by the electronic military personnel office system +(eMILPO) (RA)" + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Regular Army Automatic Promotion to U.S. Army Private Second Class Rank + + + + + + + + + Regular Army Automatic Promotion to U.S. Army Specialist Rank + + + + + + + + + Still researching this one. This is based on information gleaned from [https://en.wikipedia.org/wiki/First_sergeant] and from information taken from Army Regulation 600-8-19, Paragraph 7-11. The latter deals specifically with the case of Army National Guard promotions to the rank. I assume that the procedure for the Regular Army is similar, but need to vet the issue further. + An Act of Promotion to U.S. Army First Sergeant Rank in which some Regular Army soldier is selected by senior Department of the Army leadership to fill a billet requiring the U.S. Army First Sergeant Rank, and is temporarily advanced to that rank effective the billet appointment date. + Promotion to the U.S. Army First Sergeant Rank is temporary, and the rank is only held in concurrence with appointment to a First Sergeant billet. A Master Sergeant who has been laterally promoted to First Sergeant will be reassigned to the Master Sergeant Rank (unless they are being promoted to the E-9 Sergeant Major Rank) upon reassignment or attachment to positions not authorized for a First Sergeant. + Regular Army Centralized Promotion to U.S. Army First Sergeant Rank + + + + + + + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Rank in which some Regular Army Sergeant First Class, whose name is listed on a Headquarters, Department of the Army centralized promotion recommended list for the U.S. Army Master Sergeant Rank, is advanced to that rank by order of the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 4, Centralized Promotions (Sergeant First Class, Master Sergeant, and Sergeant Major): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Centralized promotions to U.S. Army Master Sergeant Rank are accounced by published orders from HRC on a monthly basis. The soldiers announced for promotion each month will be selected from the promotion list based on their MOS and sequence number (Army Regulation 600–8–19, Paragraph 4-7a). + +Sequence number ordering on the promotion list is according to the soldier's status on the promotion selection board's order of merit list. Where there are ties in order of merit, sequence numbers will be ordered according to recommended MOSs. (Army Regulation 600–8–19, Paragraph 4-6b). + Regular Army Centralized Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant First Class Rank in which some Regular Army Staff Sergeant, whose name is listed on a Headquarters, Department of the Army centralized promotion recommended list for the U.S. Army Sergeant First Class Rank, is advanced to that rank by order of the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 4, Centralized Promotions (Sergeant First Class, Master Sergeant, and Sergeant Major): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Centralized promotions to U.S. Army Sergeant First Class Rank are accounced by published orders from HRC on a monthly basis. The soldiers announced for promotion each month will be selected from the promotion list based on their MOS and sequence number (Army Regulation 600–8–19, Paragraph 4-7a). + +Sequence number ordering on the promotion list is according to the soldier's status on the promotion selection board's order of merit list. Where there are ties in order of merit, sequence numbers will be ordered according to recommended MOSs. (Army Regulation 600–8–19, Paragraph 4-6b). + Regular Army Centralized Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Major Rank in which some Regular Army Master Sergeant, or Regular Army First Sergeant, whose name is listed on a Headquarters, Department of the Army centralized promotion recommended list for the U.S. Army Sergeant Major Rank, is advanced to that rank by order of the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 4, Centralized Promotions (Sergeant First Class, Master Sergeant, and Sergeant Major): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Centralized promotions to U.S. Army Sergeant Major Rank are accounced by published orders from HRC on a monthly basis. The soldiers announced for promotion each month will be selected from the promotion list based on their MOS and sequence number (Army Regulation 600–8–19, Paragraph 4-7a). + +Sequence number ordering on the promotion list is according to the soldier's status on the promotion selection board's order of merit list. Where there are ties in order of merit, sequence numbers will be ordered according to recommended MOSs. (Army Regulation 600–8–19, Paragraph 4-6b). + +Soldiers selected for promotion to SGM are not assigned sequence numbers until they complete the U.S. Army Sergeants Major Course. + Regular Army Centralized Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + A Regular Army Centralized Promotion to U.S. Army First Sergeant Rank in which some Regular Army Master Sergeant is temporarily advanced to the U.S. Army First Sergeant Rank in concurrence with an appointment to a billet requiring that rank. + Regular Army Lateral Promotion to U.S. Army First Sergeant Rank + + + + + + + + + Regular Army Primary Zone Promotion to U.S. Army Sergeant Rank + + + + + + + + + A Regular Army Centralized Promotion to U.S. Army First Sergeant Rank in which some Regular Army Sergeant First Class on a promotion recommended list for the U.S. Army Master Sergeant Rank, is advanced to that rank and concurrently appointed temporarily to the U.S. Army First Sergeant Rank to fill a billet requiring the second rank. + Army Regulation 600-8-19, paragraph 7-22c. + +That passage is specifically about Army Guard Reserve, have to inquire further to see if this is the same for regular army promotions. + Regular Army Promotion from E-7 to U.S. Army First Sergeant Rank + + + + + + + + + Regular Army Promotion to U.S. Army Sergeant Rank + + + + + + + + + Regular Army Promotion to U.S. Army Staff Sergeant Rank + + + + + + + + + Regular Army Secondary Zone Promotion to U.S. Army Sergeant Rank + + + + + + + + + + + + + + + An Action Requirement that requires an Agent, who holds a Military Rank within some Armed Force, to complete some Act in order to be eligible for promotion to the next higher Military Rank. + I am assuming that action requirement could be future or past tense. Meaning that it might be a requirement that an agent is to complete an action in the future, or that an agent is to have completed an action in the past. But need to double check with the CCO people. + I am only putting this as a direct subclass of Action Requirement for now. There may be intermediary superclasses which I have not thought of. + +We may ask CCO to add a subclass 'Defeasible Action Requirement'. But 'Requirement for Promotion in Military Rank' cannot be a subclass of that since not all requirements are defeasible. Nor do I want to have separate hierarchies for promotion requirements that are defeasible and those that are not. + +I think it would be better to make 'Defeasible Action Requirement' a defined class, and create a quality of Directive ICE's such as 'defeasible'. We could then assert axioms involving this quality for any promotion requirements that are waiverable. + Action Requirement for Promotion in Military Rank + + + + + + + + + Royal Australian Air Force Aircraftwoman Rank + + + + + + + + + Royal Australian Air Force Aircraftwoman Rank + + + + + + + + + Royal Australian Air Force Junior Enlisted Rank + + + + + + + + + below corporal + Royal Australian Air Force Leading Aircraftman Rank + + + + + + + + + below corporal + Royal Australian Air Force Leading Aircraftwoman Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Brigadier-général Rank + Royal Canadian Air Force Brigadier General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Capitaine Rank + Royal Canadian Air Force Captain Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + There are three special appointments or positions that a holder of this rank may fill. They are: + +Senior appointment chief warrant officer / Formation chief warrant officer + +Command chief warrant officer -> Chief Warrant Officer of the Air Force + +Canadian Forces chief warrant officer + +See: + +https://en.wikipedia.org/wiki/Royal_Canadian_Air_Force#Non-commissioned_members + +https://en.wikipedia.org/wiki/Chief_warrant_officer#Senior_appointments + Royal Canadian Air Force Adjudant-chef Rank + Royal Canadian Air Force Chief Warrant Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Colonel Rank + Senior Officer Rank + + + + + + + + + Royal Canadian Air Force Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + Royal Canadian Air Force Caporal Rank + Royal Canadian Air Force Corporal Rank + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Général Rank + Royal Canadian Air Force General Rank + General Officer Rank + + + + + + + + + Royal Canadian Air Force Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Lieutenant-colonel Rank + Royal Canadian Air Force Lieutenant Colonel Rank + Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Lieutenant-général Rank + Royal Canadian Air Force Lieutenant General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Equivalent to the U.S. Air Force First Lieutenant Rank and the U.K. Royal Air Force Flight Lieutenant Rank. + Royal Canadian Air Force Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Major-général Rank + Royal Canadian Air Force Major General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Major Rank + Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + Royal Canadian Air Force Caporal-chef Rank + Royal Canadian Air Force Master Corporal Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Adjudant-maître Rank + Royal Canadian Air Force Master Warrant Officer Rank + + + + + + + + + Royal Canadian Air Force Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Sous-lieutenant Rank + Royal Canadian Air Force Second Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SNCO + Royal Canadian Air Force Sergent Rank + Royal Canadian Air Force Sergeant Rank + + + + + + + + + Royal Canadian Air Force Warrant Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Is the equivalent of the U.S. Navy Ensign Rank and the U.K. Royal Navy Midshipman Rank. + https://en.wikipedia.org/wiki/Sub-lieutenant#Acting_sub-lieutenant + Royal Canadian Navy Enseigne de vaisseau de 2e classe Rank + Royal Canadian Navy Acting Sub-Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Amiral Rank + Royal Canadian Navy Admiral Rank + Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + There are three special appointments or positions that a holder of this rank may fill. They are: + +Senior appointment chief petty officer 1st class / Formation chief petty officer + +Command chief petty officer 1st class / Chief Petty Officer of the Navy + +Canadian Forces chief warrant officer + +See: + +https://en.wikipedia.org/wiki/Royal_Canadian_Navy#Non-commissioned_members + +https://en.wikipedia.org/wiki/Chief_petty_officer,_1st_class + Royal Canadian Navy Premier maître de 1re classe Rank + Royal Canadian Navy Chief Petty Officer 1st Class Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Premier maître de 2e classe Rank + Royal Canadian Navy Chief Petty Officer 2nd Class Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Capitaine de frégate Rank + Royal Canadian Navy Commander Rank + Senior Officer Rank + + + + + + + + + Royal Canadian Navy Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Commodore Rank + Flag Officer Rank + + + + + + + + + Royal Canadian Navy Junior Enlisted Rank + + + + + + + + + Royal Canadian Navy Junior Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Capitaine de corvette Rank + Royal Canadian Navy Lieutenant-commander Rank + Royal Canadian Navy Lieutenant Commander Rank + Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + Technically, an appointment of sailors holding the rank of Sailor First Class.https://en.wikipedia.org/wiki/Master_sailor + Royal Canadian Navy Master Seaman Rank + Royal Canadian Navy Matelot-chef Rank + Royal Canadian Navy Master Sailor Rank + + + + + + + + + Royal Canadian Navy Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Note that this rank is not an equivalent to the U.S. Navy Petty Officer First Class Rank. The latter is a Junior NCO rank that has a NATO Rank Scale Code of OR-6, whereas the Royal Canadian Navy Petty Officer 1st Class Rank has a NATO code of OR-7 and is a warrant officer rank. + Royal Canadian Navy Maître de 1re classe Rank + Royal Canadian Navy Petty Officer 1st Class Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + Royal Canadian Navy Maître de 2e classe Rank + Royal Canadian Navy Petty Officer 2nd Class Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Contre-amiral Rank + Royal Canadian Navy Rear-admiral Rank + Royal Canadian Navy Rear Admiral Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + Royal Canadian Navy Leading Seaman Rank + Royal Canadian Navy Matelot de 1re classe Rank + Royal Canadian Navy Sailor 1st Class Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Matelot de 2e classe Rank + Royal Canadian Navy Sailor 2nd Class Rank + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Matelot de 3e classe Rank + Royal Canadian Navy Sailor 3rd Class Rank + + + + + + + + + Royal Canadian Navy Senior Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Enseigne de vaisseau de 1re classe Rank + Royal Canadian Navy Sub-Lieutenant Rank + Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Vice-admiral Rank + Royal Canadian Navy Vice-amiral Rank + Royal Canadian Navy Vice Admiral Rank + Flag Officer Rank + + + + + + + + + Royal Malaysian Air Force Aircraftman First Class Rank + + + + + + + + + Royal Malaysian Air Force Aircraftman Second Class Rank + + + + + + + + + Royal New Zealand Air Force Aircraftman Rank + + + + + + + + + below corporal + Royal New Zealand Air Force Leading Aircraftman Rank + + + + + + + + + Russian Aerospace Forces Army General Rank + + + + + + + + + Russian Aerospace Forces Captain Rank + + + + + + + + + Russian Aerospace Forces Colonel General Rank + + + + + + + + + Polkóvnik + Russian Aerospace Forces Colonel Rank + + + + + + + + + Russian Aerospace Forces Commissioned Officer Rank + + + + + + + + + Russian Aerospace Forces General Officer Rank + + + + + + + + + Russian Aerospace Forces Junior Enlisted Rank + + + + + + + + + Russian Aerospace Forces Junior Lieutenant Rank + + + + + + + + + Russian Aerospace Forces Junior Officer Rank + + + + + + + + + + + + + + + Russian Aerospace Forces Junior Sergeant Rank + + + + + + + + + Podpolkóvnik + Russian Aerospace Forces Lieutenant Colonel Rank + + + + + + + + + Russian Aerospace Forces Lieutenant General Rank + + + + + + + + + Russian Aerospace Forces Lieutenant Rank + + + + + + + + + Russian Aerospace Forces Major General Rank + + + + + + + + + Russian Aerospace Forces Major Rank + + + + + + + + + Russian Aerospace Forces Non-Commissioned Officer Rank + + + + + + + + + Russian Aerospace Forces Private First Class Rank + + + + + + + + + Russian Aerospace Forces Private Rank + + + + + + + + + Russian Aerospace Forces Senior Lieutenant Rank + + + + + + + + + Russian Aerospace Forces Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + Russian Aerospace Forces Senior Sergeant Rank + + + + + + + + + + + + + + + Russian Aerospace Forces Senior Warrant Officer Rank + + + + + + + + + + + + + + + + + + + + + Russian Aerospace Forces Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Russian Aerospace Forces Starshina Rank + + + + + + + + + + + + + + + + + + + + + Russian Aerospace Forces Warrant Officer Rank + + + + + + + + + Generál ármii + Генера́л а́рмии + Russian Ground Forces Army general Rank + + + + + + + + + + + + + + + Russian Ground Forces Captain Rank + + + + + + + + + + + + + + + + + + + + + Russian Ground Forces Colonel Rank + + + + + + + + + 3rd highest general officer rank (below Army general and Marshal of the Russian Federation). + +Interestingly, historically it derives from German "Generaloberst", which was equivalent to a 4-star general rank. But the Russian 'Colonel general' is the equivalent of a 3-star U.S. Army General. + Generál-polkóvnik + Генера́л-полко́вник + "The rank has usually been given to district, front and army commanders, and also to deputy ministers of defense, deputy heads of the general staff and so on." https://en.wikipedia.org/wiki/Colonel_general#Russia + Russian Ground Forces Colonel general Rank + + + + + + + + + Russian Ground Forces Commissioned Officer Rank + + + + + + + + + Russian Ground Forces General Officer Rank + + + + + + + + + Those with junior ranks are called conscripted. + Russian Ground Forces Junior Enlisted Rank + + + + + + + + + Russian Ground Forces Junior Lieutenant Rank + + + + + + + + + Russian Ground Forces Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + Russian Ground Forces Junior Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Russian Ground Forces Lieutenant Colonel Rank + + + + + + + + + This is equivalent to a 2-star general in the U.S. Army, whereas the U.S. Army Lieutenant General Rank is a 3-star rank. + Generál-leytenánt + Генера́л-лейтена́нт + Russian Ground Forces Lieutenant General Rank + + + + + + + + + Russian Ground Forces Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Russian Ground Forces Major Rank + + + + + + + + + Generál-mayór + Генера́л-майо́р + Russian Ground Forces Major general Rank + + + + + + + + + Variant Non-Commissioned Officer Rank of the Russian Ground Forces that is above the Russian Ground Forces Junior Enlisted Ranks and below the Russian Ground Forces Commissioned Officer Ranks, and which signifies that rank holders primarily serve in technical positions requiring advanced skills and training. + Bartles, "Russian Armed Forces: Enlisted Professionals" + Congressional Research Service, "Russian Armed Forces: Military Modernization and Reforms": https://crsreports.congress.gov/product/pdf/IF/IF11603 + Grau and Bartles, "The Russian Way of War": https://www.armyupress.army.mil/portals/7/hot%20spots/documents/russia/2017-07-the-russian-way-of-war-grau-bartles.pdf + In the Russian Armed Forces, many of the roles served by NCOs are served by commissioned officers. For instance, a lieutenant in the Russian Ground Forces will typically serve both as Platoon Commander and as Platoon Sergeant, the latter of which is usually served by NCOs in Western militaries. + +In addition to serving as commanding officers, Russian commissioned officers typically take on the role of trainers and disciplinarians of enlisted personnel--a role that is given to NCOs in Western militaries. + +Russian NCOs do have the option of pursuing a career in small unit leadership (e.g. leadership of squads, crews, and in some cases platoons). But this requires graduating from an academy whose program last for 2 years and 9 months, with education and training that is comparable to that which is completed by a newly commissioned lieutenant at a military academy (4-5 years). + While some NCOs are promoted to these ranks after completing their service as conscripts in the junior ranks (private ranks), Russian civilians who have training in a militarily useful vocation can enlist as NCOs. In that respect, the manner of entrance into the Russian NCO ranks is a deviation from the canonical type NCO rank. + Russian Ground Forces Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Russian Ground Forces Private First Class Rank + + + + + + + + + + + + + + + Russian Ground Forces Private Rank + + + + + + + + + Russian Ground Forces Senior Lieutenant Rank + + + + + + + + + Russian Ground Forces Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + Russian Ground Forces Senior Sergeant Rank + + + + + + + + + + + + + + + Russian Ground Forces Senior Warrant Officer Rank + + + + + + + + + + + + + + + + + + + + + Russian Ground Forces Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Note, that in Army terminology, the Russian term 'Starshina' is similar to 'Sergeant Major' in the U.S. Army. + +In naval terminology, 'Starshina' is similar in usage to 'petty officer'. + +https://en.wikipedia.org/wiki/Starshina#Insignia_in_the_Russian_Federation + Russian Ground Forces Starshina Rank + + + + + + + + + + + + + + + + + + + + + Russian Ground Forces Warrant Officer Rank + + + + + + + + + Russian Naval Infantry Commissioned Officer Rank + + + + + + + + + Russian Naval Infantry Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Russian Navy Admiral Rank + + + + + + + + + + + + + + + Equivalent to General of the Army Rank in the ground and air forces. + Russian Navy Fleet Admiral Rank + Russian Navy Admiral of the Fleet Rank + + + + + + + + + + + + + + + + + + + + + Russian Navy Captain-Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + O-6 + Russian Navy Captain 1st Rank Rank + + + + + + + + + + + + + + + + + + + + + O-5 + Russian Navy Captain 2nd Rank Rank + + + + + + + + + + + + + + + + + + + + + O-4 + Russian Navy Captain 3rd Rank Rank + + + + + + + + + + + + + + + + + + + + + Equivalent to an E-7, Chief Petty Officer in the U.S. Navy, according to: https://www.oni.navy.mil/Portals/12/Intel%20agencies/russia/Russia%202015screen.pdf?ver=2015-12-14-082028-313 + Russian Navy Chief Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + Equivalent to an E-9 (Master Chief Petty Officer) in the U.S. Navy, according to: https://www.oni.navy.mil/Portals/12/Intel%20agencies/russia/Russia%202015screen.pdf?ver=2015-12-14-082028-313 + Russian Navy Chief Petty Officer of the Ship Rank + + + + + + + + + Russian Navy Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Russian Navy Counter Admiral Rank + + + + + + + + + Russian Navy Deck Commissioned Officer Rank + + + + + + + + + We distinguish between Russian Navy 'Deck' Ranks and Russian Naval Infantry Ranks. Within the Russian Armed Forces, the Naval Infantry -- which is Russia's equivalent of a Marine Corps -- is a proper part of the Russian Navy. This differs from the U.S., where the Navy and Marine Corps are sister services that are both part of the Department of the Navy. In the case of the U.S. naval forces, we can thus distinguish between U.S. Navy Ranks and U.S. Marine Corps Ranks. + +Like the U.S. and British Marine Corps, the Russian Naval Infantry uses 'army-style' ranks (generals, colonels, sergeants, and so on.) Whereas deck personnel use 'naval-style' ranks (admirals, petty officers). But given that the Russian Naval Infantry is a part of its Navy proper (rather than a sister service), the ranks of the Naval Infantry are technically ranks of the Russian Navy. Thus we distinguish between Russian Navy deck ranks and Russian Navy naval infantry ranks. + Russian Navy Deck Non-Commissioned Officer Rank + + + + + + + + + Russian Navy Flag Officer Rank + + + + + + + + + Russian Navy Junior Enlisted Rank + + + + + + + + + Russian Navy Deck Junior Officer Rank + + + + + + + + + Variant Non-Commissioned Officer Rank of the Russian Navy that is above the Russian Navy Junior Enlisted Ranks and below the Russian Navy Commissioned Officer Ranks, and which signifies that rank holders primarily serve in technical positions requiring advanced skills and training. + Russian Navy Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Russian Navy Petty Officer 1st Class Rank + + + + + + + + + + + + + + + + + + + + + Russian Navy Petty Officer 2nd Class Rank + + + + + + + + + + + + + + + Russian Navy Seaman Rank + + + + + + + + + + + + + + + + + + + + + Russian Navy Senior Seaman Rank + + + + + + + + + + + + + + + Russian Navy Deck Senior Warrant Officer Rank + + + + + + + + + Russian Navy Deck Staff Officer Rank + + + + + + + + + + + + + + + + + + + + + Russian Navy Vice Admiral Rank + + + + + + + + + + + + + + + + + + + + + Russian Navy Deck Warrant Officer Rank + + + + + + + + + Seaman-level Aviation Rank + true + + + + + + + + + Seaman-level Construction Group Rank + true + + + + + + + + + Seaman-level Engineering and Hull Group Rank + true + + + + + + + + + There are a variety of occupational fields, or 'rates', associated with each of these ranks in the U.S. Navy and Coast Guard. + +For instance, those sailors holding the Seaman Recruit Rank have different 'rate' depending on their occupational field or specialty. Thus there are Fireman Recruits, Constructionman Recruits, and Hospitalman Recruits, and Seaman Recruits. Notice here that 'Seaman Recruit' is used both for the rank under which each of these rates falls, as well as a specific rate (specifically, for those in the general deck and administrative community). A sailor's actual title is determined by the rate or occupational field. Thus a sailor falling under the Seaman Recruit Rank who is in the medical field would have as their title 'Hospitalman Recruit'. + Seaman-level General Deck and Administration Group Rank + true + + + + + + + + + Seaman-level Medical Group Rank + true + + + + + + + + + Junior Lieutenant Rank + Second Lieutenant Rank + true + + + + + + + + + Second Lieutenant Role + true + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Military Rank that appies to some U.S. Army soldier who is a participant in the U.S. Army's secondary zone promotion process. + Secondary Zone Time in Service Requirement + true + + + + + + + + + + + + + + + + + + + + + U.S. Secretary of the Army Role + + + + + + + + + A Requirement for Promotion in Military Rank that requires some U.S. military soldier to obtain the appropriate security clearance, as a condition of promotion to some Military Rank. + Security Clearance Requirement for Promotion in Military Rank + + + + + + + + + A U.S. Army Security Clearance Requirement for Promotion in Military Rank that requires some U.S. Army soldier to obtain a security clearance appropriate to their promotion military occupational specialty or an interim security clearance at the same level, as a condition for promotion to the U.S. Army Corporal Rank. + Paragraph 1-16c: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Security Clearance Requirement for Promotion to U.S. Army Corporal Rank + + + + + + + + + A U.S. Army Security Clearance Requirement for Promotion in Military Rank that requires some U.S. Army soldier to obtain the security clearance appropriate to their promotion military occupational specialty or an interim security clearance at the same level, as a condition for promotion to the U.S. Army Sergeant First Class Rank. + Paragraph 1-16c: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Security Clearance Requirement for Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + + + + + + + Security Clearance Requirement for Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Security Clearance Requirement for Promotion in Military Rank that requires some U.S. Army Corporal to obtain the security clearance appropriate to their promotion military occupational specialty or an interim security clearance at the same level, as a condition for promotion to the U.S. Army Sergeant Rank. + Paragraph 1-16c: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Security Clearance Requirement for Promotion to U.S. Army Sergeant Rank + + + + + + + + + A U.S. Army Security Clearance Requirement for Promotion in Military Rank that requires some U.S. Army soldier to obtain the security clearance appropriate to their promotion military occupational specialty or an interim security clearance at the same level, as a condition for promotion to the U.S. Army Specialist Rank. + Paragraph 1-16c: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Security Clearance Requirement for Promotion to U.S. Army Specialist Rank + + + + + + + + + A U.S. Army Security Clearance Requirement for Promotion in Military Rank that requires some U.S. Army soldier to obtain the security clearance appropriate to their promotion military occupational specialty or an interim security clearance at the same level, as a condition for promotion to the U.S. Army Staff Sergeant Rank. + Paragraph 1-16c: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Security Clearance Requirement for Promotion to U.S. Army Staff Sergeant Rank + + + + + + + + + A Chief Petty Officer who has some Senior Chief Petty Officer Rank and is the bearer of some Senior Chief Petty Officer Role. + Senior Chief Petty Officer + true + + + + + + + + + Senior Chief Petty Officer Rank + true + + + + + + + + + Senior Chief Petty Officer Role + true + + + + + + + + + A U.S. Navy Enlisted Leadership Development Course Requirement that requires some U.S. Navy Senior Chief Petty Officer to have completed the Senior Enlisted Academy to be eligible for consideration for advancement to the U.S. Navy Master Chief Petty Officer Rank by a promotion selection board. + BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', paragraph 210e + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Senior Enlisted Academy Requirement + + + + + + + + + This is an appointment, not a rank. This appointment can be taken on by someone from either the Army, Air Force, and Marine Corps. Each branch will assign one its members to hold this appointment on an alternating basis. + +Should this be under roles? + Senior Enlisted Advisor to the Chairman Role + + + + + + + + + A U.S. Army Enlisted Professional Military Education Requirement for Promotion in Military Rank that requires some U.S. Army Staff Sergeant to have graduated the Senior Leaders Course, as a condition of promotion to the U.S. Army Sergeant First Class Rank. + Army Regulation 600–8–19, Paragraph 1-29a(6): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + U.S. Army Senior Leaders Course Requirement + + + + + + + + + Senior Lieutenant Rank + true + + + + + + + + + A Senior Non-Commissioned Officer who has some Senior Master Sergeant Rank and is the bearer of some Senior Master Sergeant Role. + Senior Master Sergeant + true + + + + + + + + + These are Senior NCOs + Senior Master Sergeant Rank + true + + + + + + + + + Senior Master Sergeant Role + true + + + + + + + + + Meant to be a superclass for sergeant ranks where the rank is used for senior NCO rank. Better to have a defined class for the broad senior NCO rank grouping. + Senior NCO Army Sergeant Rank + true + + + + + + + + + Senior NCO Army Staff Sergeant Rank + true + + + + + + + + + Replaced with a defined class for the broad senior NCO rank grouping. + Senior NCO Marine Corps Sergeant Rank + true + + + + + + + + + Senior NCO Marine Corps Staff Sergeant Rank + true + + + + + + + + + Labeled with the 'Senior NCO' prefix to distinguish from Junior NCO petty officer ranks, such as those in the U.S. Navy and Coast Guard + Senior NCO Petty Officer Rank + true + + + + + + + + + Replaced with a defined class for the broad senior NCO rank grouping. + Senior NCO Sergeant Rank + true + + + + + + + + + Replaced with broad defined class for the senior NCO rank grouping + Senior NCO Staff Sergeant Rank + true + + + + + + + + + Replaced with defined class for broad senior NCO grouping. + Senior NCO Technical Sergeant Rank + true + + + + + + + + + + + + + + + + + + + + + A Non-Commissioned Officer who has some Senior Non-Commissioned Officer Rank and is the bearer of some Senior Non-Commissioned Officer Role. + Senior Non-Commissioned Officer + + + + + + + + + Abbreviated as SNCO + DEFINED CLASS + Senior Non-Commissioned Officer Rank + + + + + + + + + DEFINED CLASS + Senior Non-Commissioned Officer Role + + + + + + + + + + + + + + + + + + + + + + + A Junior Non-Commissioned Officer who has some Sergeant Rank and is the bearer of some Sergeant Role. + Sergeant + + + + + + + + + A Senior Non-Commissioned Officer who has some Sergeant First Class Rank and is the bearer of some Sergeant First Class Role. + Sergeant First Class + true + + + + + + + + + Senior NCO in U.S. Army + +But in Israel Defense Force, this is the lowest NCO rank. + Sergeant First Class Rank + true + + + + + + + + + Sergeant First Class Role + true + + + + + + + + + A Senior Non-Commissioned Officer who has some Sergeant Major Rank and is the bearer of some Sergeant Major Role. + Sergeant Major + true + + + + + + + + + A U.S. Army Non-Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the Sergeant Major of the Army Rank, and which the Agent realizes by serving as the senior enlisted advisor and consultant to the Secretary of the Army and Chief of Staff of the Army, advising senior Army leadership on matters affecting manning, equipping, training, quality of life, and other policies and programs that may affect the Army. + Army Regulation 600-20, 'Army Command Policy', 2-19b(1): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN32931-AR_600-20-004-WEB-6.pdf + https://www.army.mil/ranks/ + There is only one Sergeant Major of the Army. This is the highest Authority Role in the enlisted ranks of the U.S. Army. + Sergeant Major of the Army Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 ranks below U.S. Coast Guard Chief Warrant Officer 2 (there is no Coast Guard Warrant Officer 1 Rank). This class is one rank below the Navy, Army and Marine Corps Warrant Officer 1 Ranks, which are themselves 1 rank below U.S. Coast Guard Chief Warrant Officer 2. + The rank holder serves as personal advisor to the U.S. Chief of Staff of the Army, addressing all issues and matters pertaining to U.S. Army soldiers (both enlisted and commissioned officers), and serves as the final authority on standards and discipline for all U.S. Army soldiers (both enlisted and commissioned officers). + +https://en.wikipedia.org/wiki/Sergeant_Major_of_the_Army + https://www.federalpay.org/military/army/sergeant-major-of-the-army + A U.S. Army Non-Commissioned Officer Rank that is highest enlisted rank in the U.S. Army, directly above the U.S. Army Command Sergeant Major Rank and directly below the U.S. Army Warrant Officer 1 Rank, and which signifies that the rank holder serves as the senior enlisted advisor and consultant to the Secretary of the Army and Chief of Staff, Army, and advises senior Army leadership on matters affecting manning, equipping, training, quality of life, and other policies and programs that may affect the Army. + Army Regulation 600–20, Army Command Policy, paragraph 2-19b(1) + +p. 24: +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN32931-AR_600-20-004-WEB-6.pdf + Sergeant Major of the Army Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Staff Non-Commissioned Officer who has some Sergeant Major of the Marine Corps Rank and is the bearer of some Sergeant Major of the Marine Corps Role. + Sergeant Major of the Marine Corps + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 ranks below U.S. Coast Guard Chief Warrant Officer 2 (not Coast Guard Warrant Officer 1 Rank). This class is one rank below the Navy, Army and Marine Corps Warrant Officer 1 Ranks, which are themselves 1 rank below U.S. Coast Guard Chief Warrant Officer 2. + unique rank + A U.S. Marine Corps Non-Commissioned Officer Rank that is highest enlisted rank in the U.S. Marine Corps, directly above the U.S. Marines Corps Sergeant Major Rank and directly below the U.S. Marine Corps Warrant Officer 1 Rank, and which signifies that the rank holder serves as Senior Enlisted Advisor to the Commandant of the Marine Corps, addressing all issues and matters pertaining to U.S. enlisted marines. + https://www.federalpay.org/military/marine-corps/sergeant-major-of-the-marine-corps + Sergeant Major of the Marine Corps Rank + + + + + + + + + Sergeant Major of the Marine Corps Role + + + + + + + + + In the British Army and Royal Marines, the title of 'Sergeant Major' is used for an appointment that can be held by officer with the rank of WO-2. It is not a rank. + Senior NCO + Sergeant Major Rank + true + + + + + + + + + Sergeant Major Role + true + + + + + + + + + Sergeant Rank + + + + + + + + + Sergeant role + true + + + + + + + + + A U.S. Air Force Skill Level Requirement for Promotion in Military Rank that requires a U.S. Air Force Senior Sergeant to have achieved a skill level of 9 (Superintendent) in their primary Air Force specialty code as of the promotion eligibility cut off date in order to be promoted to the U.S. Air Force Chief Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Skill Level Requirement for Promotion to U.S. Air Force Chief Master Sergeant Rank + + + + + + + + + A U.S. Air Force Skill Level Requirement for Promotion in Military Rank that requires a U.S. Air Force Technical Sergeant to have achieved a skill level of 7 (Craftsman) in their primary Air Force specialty code as of the promotion eligibility cut off date in order to be promoted to the U.S. Air Force Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Skill Level Requirement for Promotion to U.S. Air Force Master Sergeant Rank + + + + + + + + + + + + + + + A U.S. Air Force Skill Level Requirement for Promotion in Military Rank that requires a U.S. Air Force Master Sergeant to have achieved a skill level of 7 (Craftsman) in their primary Air Force specialty code as of the promotion eligibility cut off date in order to be promoted to the U.S. Air Force Senior Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Skill Level Requirement for Promotion to U.S. Air Force Senior Master Sergeant Rank + + + + + + + + + Space Force Brigadier General Rank + true + + + + + + + + + Space Force Brigadier General Role + true + + + + + + + + + Space Force Captain Rank + true + + + + + + + + + Space Force Captain Role + true + + + + + + + + + A Chief Master Sergeant who has some Space Force Chief Master Sergeant Rank and is the bearer of some Space Force Chief Master Sergeant Role. + Space Force Chief Master Sergeant + true + + + + + + + + + Space Force Chief Master Sergeant Rank + true + + + + + + + + + Space Force Chief Master Sergeant Role + true + + + + + + + + + Space Force Colonel Rank + true + + + + + + + + + Space Force Colonel Role + true + + + + + + + + + Space Force First Lieutenant Rank + true + + + + + + + + + Space Force First Lieutenant Role + true + + + + + + + + + Space Force First Sergeant Rank + true + + + + + + + + + Space Force General Rank + true + + + + + + + + + Space Force General Role + true + + + + + + + + + Space Force Lieutenant Colonel Rank + true + + + + + + + + + Space Force Lieutenant Colonel Role + true + + + + + + + + + Space Force Lieutenant General Rank + true + + + + + + + + + Space Force Lieutenant General Role + true + + + + + + + + + Space Force Major General Rank + true + + + + + + + + + Space Force Major General Role + true + + + + + + + + + Space Force Major Rank + true + + + + + + + + + Space Force Major Role + true + + + + + + + + + A Master Sergeant who has some Space Force Master Sergeant Rank and is the bearer of some Space Force Master Sergeant Role. + Space Force Master Sergeant + true + + + + + + + + + Space Force Master Sergeant Rank + true + + + + + + + + + Space Force Master Sergeant Role + true + + + + + + + + + Space Force Second Lieutenant Rank + true + + + + + + + + + Space Force Second Lieutenant Role + true + + + + + + + + + An Senior Master Sergeant who has some Space Force Senior Master Sergeant Rank and is the bearer of some Space Force Senior Master Sergeant Role. + Space Force Senior Master Sergeant + true + + + + + + + + + Space Force Senior Master Sergeant Rank + true + + + + + + + + + Space Force Senior Master Sergeant Role + true + + + + + + + + + A Sergeant who has some Space Force Sergeant Rank and is the bearer of some Space Force Sergeant Role. + Space Force Sergeant + true + + + + + + + + + Space Force Sergeant Rank + true + + + + + + + + + Space Force Sergeant role + true + + + + + + + + + A Technical Sergeant who has some Space Force Technical Sergeant Rank and is the bearer of some Space Force Technical Sergeant Role. + Space Force Technical Sergeant + true + + + + + + + + + Space Force Technical Sergeant Rank + true + + + + + + + + + Space Force Technical Sergeant role + true + + + + + + + + + Special Grade + + + + + + + + + Used in many air forces in Commonwealth nations. Equivalent to the rank of major in the U.S. Air Force. + Squadron Leader Rank + true + + + + + + + + + In the U.S. Army, Air Force and Space Force this is a Junior NCO Rank. 'Staff Sergeant' is used in the U.S. Marine Corps for a Senior NCO rank. But also in the British Armed Forces it is a Senior NCO rank. + +This term may be undeprecated in the future as a 'generic staff sergeant rank' + Staff Sergeant Rank + true + + + + + + + + + An Act of Promotion to U.S. Army Master Sergeant Rank (USAR) in which the Commanding General, Human Resources Command selects some Standby Reserve (active status list) Sergeant First Class from a promotion recommended list and transfers that Soldier to a Troop Program Unit to fill a position vacancy authorized for the U.S. Army Master Sergeant Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Chapters 5 and 6 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +See in particular paragraphs: +5-1c, 5-16d, 6-1c, 6-2, 6-3f(2), and 6-9b. + All promotions of Standby Reserve soldiers to the rank of SFC through SGM must be made against an existing or projected position vacancy within an Army Reserve Troop Program Unit. The Standby Reserve soldier is promoted to the next rank in order to fill a position vacancy that requires that rank. The promotion is effective the date that soldier accepts their new assignment. Standby Reserve soldiers are only promoted to fill position vacancies when those vacancies cannot be filled with a qualified soldier that already holds the authorized rank. Thus, if there is already a qualified soldier in the Troop Unit Program who holds the authorized rank, they would be assigned to fill the vacancy. + +"When the position vacancy cannot be filled with a qualified Soldier in the authorized rank, the CG, HRC (AHRC–PDV–PE) will promote from the recommended list, by sequence number, a Soldier who possesses the required MOS. Promotions to TPU vacancies will be accomplished through coordination with the USARC and in conjunction with a TPU assignment. If available and otherwise eligible, HRC will transfer promotable Soldiers to TPU vacancies and promote them effective the date of assignment." +Army Regulation 600–8–19, Ch. 6, 6-9b. + Standby Reserve Centralized Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant First Class Rank (USAR) in which the Commanding General, Human Resources Command selects from a promotion recommended list a Standy Reserve (active status list) Staff Sergeant, and tranfers that Soldier to a Troop Program Unit to fill a position vacancy authorized for the U.S. Army Sergeant First Class Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Chapters 5 and 6 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +See in particular paragraphs: +5-1c, 5-16d, 6-1c, 6-2, 6-3f(2), and 6-9. + All promotions of Standby Reserve soldiers to the rank of SFC through SGM must be made against an existing or projected position vacancy within an Army Reserve Troop Program Unit. The Standby Reserve soldier is promoted to the next rank in order to fill a position vacancy that requires that rank. The promotion is effective the date that soldier accepts their new assignment. Standby Reserve soldiers are only promoted to fill position vacancies when those vacancies cannot be filled with a qualified soldier that already holds the authorized rank. Thus, if there is already a qualified soldier in the Troop Unit Program who holds the authorized rank, they would be assigned to fill the vacancy. + +"When the position vacancy cannot be filled with a qualified Soldier in the authorized rank, the CG, HRC (AHRC–PDV–PE) will promote from the recommended list, by sequence number, a Soldier who possesses the required MOS. Promotions to TPU vacancies will be accomplished through coordination with the USARC and in conjunction with a TPU assignment. If available and otherwise eligible, HRC will transfer promotable Soldiers to TPU vacancies and promote them effective the date of assignment." +Army Regulation 600–8–19, Ch. 6, 6-9b. + Standby Reserve Centralized Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Major Rank in which the Commanding General, Human Resources Command selects from a promotion recommended list a Standy Reserve (active status list) Master Sergeant or First Sergeant, and tranfers that Soldier to a Troop Program Unit to fill a position vacancy authorized for the U.S. Army Sergeant Major Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Chapters 5 and 6 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +See in particular paragraphs: +5-1c, 5-16d, 6-1c, 6-2, 6-3f(2), and 6-9. + All promotions of Standby Reserve soldiers to the rank of SFC through SGM must be made against an existing or projected position vacancy within an Army Reserve Troop Program Unit. The Standby Reserve soldier is promoted to the next rank in order to fill a position vacancy that requires that rank. The promotion is effective the date that soldier accepts their new assignment. Standby Reserve soldiers are only promoted to fill position vacancies when those vacancies cannot be filled with a qualified soldier that already holds the authorized rank. Thus, if there is already a qualified soldier in the Troop Unit Program who holds the authorized rank, they would be assigned to fill the vacancy. + +[See: Army Regulation 600–8–19, Ch. 6, 6-9b.] + Standby Reserve Centralized Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + A Stasis of Generically Dependent Continuant in which some Person carries some Military Rank which remains unchanged during a Temporal Interval. + Stasis of Military Rank + + + + + + + + + Used in many Commonwealth Nations. This is the equivalent of the Lieutenant Junior Grade ranks in the U.S. Navy and Coast Guard. + Sub-Lieutenant Rank + true + + + + + + + + + + + + + + + + + + + A Commander_CCO who is subordinate to some other Commander_CCO who has a higher Military Rank. + Subordinate Officer + + + + + + + + + + + + + + + + + + + A Commander_CCO who has as a subordinate some other Commander_CCO who has a lower Military Rank. + A superior officer is an officer with a higher rank than some other officer . + Superior Officer + + + + + + + + + A Sergeant who has some Technical Sergeant Rank and is the bearer of some Technical Sergeant Role. + Technical Sergeant + true + + + + + + + + + Technical Sergeant Rank + true + + + + + + + + + Technical Sergeant role + true + + + + + + + + + I need to check if there is an already established general term used by the various branches of the U.S. Armed Forces to refer to this sort of training (as with the general term 'Enlisted Professional Military Education Requirement' used by the different branches). + +Cf: https://en.wikipedia.org/wiki/Enlisted_Professional_Military_Education + A Requirement for Promotion in Military Rank that requires an enlisted member of the U.S. Armed Forces to complete some military technical training, in order to be eligible for promotion to the next higher Military Rank. + Technical Training Requirement for Promotion in Military Rank + + + + + + + + + Temporary Military Rank + true + + + + + + + + + Requires review + An Act of Promotion to U.S. Army Captain Rank in which a U.S. Army Soldier of a lower permanent rank is given the U.S. Army Captain Rank, but only for the duration of that Soldier's appointment to a specific position, or assignment to a specific task or mission, that is authorized for the U.S. Army Captain Rank. + Such a promotion is terminated at the termination of the Soldier's service in the qualifying position, task, or mission. + Shane Babcock + Temporary Promotion to U.S. Army Captain Rank + + + + + + + + + Requires review + An Act of Promotion to U.S. Army Colonel Rank in which some U.S. Army Soldier of a lower permanent rank is given the U.S. Army Colonel Rank, but only for the duration of that Soldier's appointment to a specific position, or assignment to a specific task or mission, that is authorized for that rank. + Such a promotion is terminated at the termination of the Soldier's service in the qualifying position, task, or mission. + Temporary Promotion to U.S. Army Colonel Rank + + + + + + + + + Requires review + An Act of Promotion to U.S. Army First Lieutenant Rank in which some U.S. Army Soldier of a lower permanent rank is given the U.S. Army First Lieutenant Rank, but only for the duration of that Soldier's appointment to a specific position, or assignment to a specific task or mission, that is authorized for that rank. + Such a promotion is terminated at the termination of the Soldier's service in the qualifying position, task, or mission. + Temporary Promotion to U.S. Army First Lieutenant Rank + + + + + + + + + Requires review + An Act of Promotion to U.S. Army Lieutenant Colonel Rank in which some U.S. Army Soldier of a lower permanent rank is given the U.S. Army Lieutenant Colonel Rank, but only for the duration of that Soldier's appointment to a specific position, or assignment to a specific task or mission, that is authorized for that rank. + Such a promotion is terminated at the termination of the Soldier's service in the qualifying position, task, or mission. + Temporary Promotion to U.S. Army Lieutenant Colonel Rank + + + + + + + + + Requires review + An Act of Promotion to U.S. Army Major Rank in which some U.S. Army Soldier of a lower permanent rank is given the U.S. Army Major Rank, but only for the duration of that Soldier's appointment to a specific position, or assignment to a specific task or mission, that is authorized for that rank. + Such a promotion is terminated at the termination of the Soldier's service in the qualifying position, task, or mission. + Temporary Promotion to U.S. Army Major Rank + + + + + + + + + This rank is not used in U.S. military + Third Lieutenant Rank + true + + + + + + + + + + + + + + + + + + + A Military Rank Insignia that bears some Three-Star Military Rank. + Three-Star Military Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A Measurement Information Content Entity that is a measurement of the time some Person has served in some U.S. military branch at their current U.S. Department of Defense Pay Grade. + Shane Babcock + Time in Grade Measurement Information Content Entity + + + + + + + + + A Central Selection Board is responsible for considering for promotion officers seeking advancement to any rank of major through major general. + +See p. 90 of "Air Force Guidance Memorandum to AFI 36-2501, Officer Promotions and Selective +Continuation" +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2501/afi36-2501.pdf + Note that the Air Force policy regarding TIG for promotion from O-6 to O-7 amends the federal policy, which requires 1 year TIG for officer promotions from O-6 to O-7: + +Title 10, U.S.C., Section 619(a)(2)(B): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that requires some U.S. Air Force Colonel to have completed a minimum of 2 years in the O-6 Pay Grade, in order to be considered by a Central Selection Board for promotion to the U.S. Air Force Brigadier General Rank. + "Air Force Guidance Memorandum to AFI 36-2501, Officer Promotions and Selective +Continuation", Paragraph 9.2. +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2501/afi36-2501.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Brigadier General Rank + + + + + + + + + + + + + + + A Requirement for Promotion in Military Rank that requires some member of some U.S. Armed Force to complete some temporal interval of work within their current U.S. Department of Defense Pay Grade. + https://www.rand.org/paf/projects/dopma-ropma/promotion-and-appointments/promotion-timing-zones-and-opportunity.html provides a nice overview of the Commissioned Officer TIG requirements as mandated by U.S. Code 619, as well as modifications (e.g. lengthened TIG requirements) prescribed by the secretaries of the specific service branches (including lengthened TIG requirements that apply for COs in reserve elements). + Time in Grade Requirement for Promotion in Military Rank + + + + + + + + + broad term for any part of Air Force (regular, reserve or Air National Guard) + A Time in Grade Requirement for Promotion in Military Rank that requires some airman in the U.S. Air Force to complete some temporal interval of work within their current U.S. Department of Defense Pay Grade in order to be promoted to the next higher grade of U.S. Air Force Rank. + Shane Babcock + Time in Grade Requirement for Promotion in U.S. Air Force Rank + + + + + + + + + A Time in Grade Requirement for Promotion in Military Rank that requires some U.S. Army Soldier to complete some minimum temporal interval of work within their current U.S. Department of Defense Pay Grade, and their current U.S. Army Rank, in order to be eligible for promotion to the next higher grade of U.S. Army Rank. + Time in Grade Requirement for Promotion in U.S. Army Rank + + + + + + + + + A Time in Grade Requirement for Promotion in Military Rank that requires some U.S. Marine to complete some minimum temporal interval of work within their current U.S. Department of Defense Pay Grade, as a condition for promotion to some U.S. Marine Corps Rank. + Time in Grade Requirement for Promotion in U.S. Marine Corps Rank + + + + + + + + + Time in Grade Requirement for Promotion in U.S. Navy Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Military Rank that requires a U.S. Air Force Senior Master Sergeant to have completed a minimum of 21 months in the E-8 Pay Grade in order to be eligible for promotion to the U.S. Air Force Chief Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to Chief Master Sergeant Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank which requires a U.S. Air Force Airman to have served a minimum of 10 months in the E-2 Pay Grade in order to be eligible for promotion to the U.S. Air Force Airman First Class Rank. + AIR FORCE INSTRUCTION 36-2502, §2.1.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + +https://www.military.com/air-force/enlisted-ranks.html + Time in Grade Requirement for Promotion to U.S. Air Force Airman First Class Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank which requires a U.S. Air Force Airman Basic to have served a minimum of 6 months in the E-1 Pay Grade in order to be eligible for promotion to the U.S. Air Force Airman Rank. + AIR FORCE INSTRUCTION 36-2502, §2.1.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + +https://www.military.com/air-force/enlisted-ranks.html + Time in Grade Requirement for Promotion to U.S. Air Force Airman Rank + + + + + + + + + A Central Selection Board is responsible for considering for promotion officers seeking advancement to any rank of major through major general. + +See p. 90 of "Air Force Guidance Memorandum to AFI 36-2501, Officer Promotions and Selective +Continuation" +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2501/afi36-2501.pdf + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that requires some U.S. Air Force Brigadier General to have completed a minimum of 1 year in the O-7 Pay Grade, in order to be considered by a Central Selection Board for promotion to the U.S. Air Force Major General Rank. + Title 10, U.S.C., Section 619(a)(2)(B): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Air Force Major General Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Military Rank that requires a U.S. Air Force Technical Sergeant to have completed a minimum of 24 months in the E-6 Pay Grade in order to be eligible for promotion to the U.S. Air Force Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Master Sergeant Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Airman First Class to have completed either: i) a minimum of 28 months in the E-3 Pay Grade, or; ii) a minimum of 36 months time in service and a minimum of 20 months in the E-3 Pay Grade, whichever occurs first, in order to be eligible for promotion to the U.S. Air Force Senior Airman Rank. + AIR FORCE INSTRUCTION 36-2502, §2.2.1. + https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + +https://www.military.com/air-force/enlisted-ranks.html + Time in Grade Requirement for Promotion to U.S. Air Force Senior Airman Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Senior Airman to have completed a minimum of 6 months in the E-4 Pay Grade in order to be eligible for promotion to the U.S. Air Force Staff Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Staff Sergeant Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Staff Sergeant to have completed a minimum of 23 months in the E-5 Pay Grade in order to be eligible for promotion to the U.S. Air Force Technical Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Technical Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + "If selected, they may be promoted without regard to any additional TIG requirements." Paragraph 2-7c(5): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Time in Grade Requirement for Promotion in U.S. Army Rank that requires some U.S. Army Colonel to have served a minimum of 1 year at their current rank in the O-6 pay grade, in order to be considered for promotion to the U.S. Army Brigadier General Rank by a promotion selection board of the Headquarters, Department of the Army. + Paragraph 2-7c(5): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + +Also: + +Title 10, U.S.C., Section 619(a)(2)(B): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Army Brigadier General Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + "If selected, they may be promoted without regard to any additional TIG requirements." Paragraph 2-7c(5): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + A Time in Grade Requirement for Promotion in U.S. Army Rank that requires some U.S. Army Brigadier General to have served a minimum of 1 year at their current rank in the O-7 pay grade, in order to be considered for promotion to the U.S. Army Major General Rank by a promotion selection board of the Headquarters, Department of the Army. + Paragraph 2-7c(5): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + +Also: + +Title 10, U.S.C., Section 619(a)(2)(B): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Army Major General Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank that requires a U.S. Army Sergeant First Class to complete some minimum temporal interval of work within the E-7 pay grade, as a condition for promotion to the U.S. Army Master Sergeant Rank. + Time in Grade Requirement for Promotion to U.S. Army Master Sergeant Rank + true + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank that requires a U.S. Army Master Sergeant or U.S. Army First Sergeant to complete some minimum temporal interval of work within the E-8 pay grade, as a condition for promotion to the U.S. Army Sergeant Major Rank. + Time in Grade Requirement for Promotion to U.S. Army Sergeant Major Rank + true + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Lance Corporal to have completed a minimum of 8 months in the E-3 Pay Grade, as a condition for promotion to the U.S. Marine Corps Corporal Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Grade Requirement for Promotion to U.S. Marine Corps Corporal Rank + + + + + + + + + Gunnery Sgts have the option of seeking promotion to either of the two E-8 pay grade ranks, the Master Sergeant or First Sergeant Rank. The TIS and TIG requirements for promotion to each of these ranks is the same. Though there are additional, more demanding requirements for the First Sergeant Rank. + Waiver exception: The U.S. Marine Corps First Sergeant Rank is a Staff NCO rank. + +From Paragaraph 1202.2. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf: + +"The TIG requirements may be reduced 6 months for SNCOs, if the needs of the Marine Corps dictate and as directed by the CMC." [CMC = Commandant of the Marine Corps] + A Time in Grade Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Gunnery Sergeant to have completed a minimum of 4 years in the E-7 Pay Grade, as a condition for promotion to the U.S. Marine Corps First Sergeant Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Grade Requirement for Promotion to U.S. Marine Corps First Sergeant Rank + + + + + + + + + Waiver exception: The U.S. Marine Corps Gunnery Sergeant Rank is a Staff NCO rank. + +From Paragaraph 1202.2. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf: + +"The TIG requirements may be reduced 6 months for SNCOs, if the needs of the Marine Corps dictate and as directed by the CMC." [CMC = Commandant of the Marine Corps] + A Time in Grade Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Staff Sergeant to have completed a minimum of 3 years in the E-6 Pay Grade, as a condition for promotion to the U.S. Marine Corps Gunnery Sergeant Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Grade Requirement for Promotion to U.S. Marine Corps Gunnery Sergeant Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Private First Class to have completed a minimum of 8 months in the E-2 Pay Grade, as a condition for promotion to the U.S. Marine Corps Lance Corporal Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Grade Requirement for Promotion to U.S. Marine Corps Lance Corporal Rank + + + + + + + + + Various secondary sources claim that a Marine serving in the E-8 pay grade at the Master Sergeant Rank is only eligible for promotion to the Master Gunnery Sergeant Rank at E-9, and not the E-9 Sergeant Major Rank. + +See for example: https://www.indeed.com/career-advice/finding-a-job/us-marine-corps-ranks + +and: https://www.military.com/marine-corps/enlisted-ranks.html#staff-nco + +But I will still need to verify that this the official position stated in Marine Corps publications. I am not sure about this. + Waiver exception: The U.S. Marine Corps Master Gunnery Sergeant Rank is a Staff NCO rank. + +From Paragaraph 1202.2. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf: + +"The TIG requirements may be reduced 6 months for SNCOs, if the needs of the Marine Corps dictate and as directed by the CMC." [CMC = Commandant of the Marine Corps] + A Time in Grade Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Master Sergeant to have completed a minimum of 3 years in the E-8 Pay Grade, as a condition for promotion to the U.S. Marine Corps Master Gunnery Sergeant Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Grade Requirement for Promotion to U.S. Marine Corps Master Gunnery Sergeant Rank + + + + + + + + + Gunnery Sgts have the option of seeking promotion to either of the two E-8 pay grade ranks, the Master Sergeant or First Sergeant Rank. The TIS and TIG requirements for promotion to each of these ranks is the same. Though there are additional, more demanding requirements for the First Sergeant Rank. + Waiver exception: The U.S. Marine Corps Master Sergeant Rank is a Staff NCO rank. + +From Paragaraph 1202.2. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf: + +"The TIG requirements may be reduced 6 months for SNCOs, if the needs of the Marine Corps dictate and as directed by the CMC." [CMC = Commandant of the Marine Corps] + A Time in Grade Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Gunnery Sergeant to have completed a minimum of 4 years in the E-7 Pay Grade, as a condition for promotion to the U.S. Marine Corps Master Sergeant Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Grade Requirement for Promotion to U.S. Marine Corps Master Sergeant Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Private to have completed a minimum of 6 months in the E-1 Pay Grade, as a condition for promotion to the U.S. Marine Corps Private First Class Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Grade Requirement for Promotion to U.S. Marine Corps Private First Class Rank + + + + + + + + + Various secondary sources claim that a Marine serving in the E-8 pay grade at the Master Sergeant Rank is only eligible for promotion to the Master Gunnery Sergeant Rank at E-9, and not the E-9 Sergeant Major Rank. Whereas First Sergeants are on track for promotion to the Sergeant Major Rank. + +See for example: https://www.indeed.com/career-advice/finding-a-job/us-marine-corps-ranks + +and: https://www.military.com/marine-corps/enlisted-ranks.html#staff-nco + +But I will still need to verify that this the official position stated in Marine Corps publications. I am not sure about this. + Waiver exception: The U.S. Marine Corps Sergeant Major Rank is a Staff NCO rank. + +From Paragaraph 1202.2. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf: + +"The TIG requirements may be reduced 6 months for SNCOs, if the needs of the Marine Corps dictate and as directed by the CMC." [CMC = Commandant of the Marine Corps] + A Time in Grade Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps First Sergeant to have completed a minimum of 3 years in the E-8 Pay Grade, as a condition for promotion to the U.S. Marine Corps Sergeant Major Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Grade Requirement for Promotion to U.S. Marine Corps Sergeant Major Rank + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Corporal to have completed a minimum of 12 months in the E-4 Pay Grade, as a condition for promotion to the U.S. Marine Corps Sergeant Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Grade Requirement for Promotion to U.S. Marine Corps Sergeant Rank + + + + + + + + + Waiver exception: The U.S. Marine Corps Staff Sergeant Rank is a Staff NCO rank. + +From Paragaraph 1202.2. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf: + +"The TIG requirements may be reduced 6 months for SNCOs, if the needs of the Marine Corps dictate and as directed by the CMC." [CMC = Commandant of the Marine Corps] + A Time in Grade Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Sergeant to have completed a minimum of 36 months in the E-5 Pay Grade, as a condition for promotion to the U.S. Marine Corps Staff Sergeant Rank. + Paragraph 4.c.2. https://www.marines.mil/News/Messages/Messages-Display/Article/2003700/announcement-of-authority-for-early-reenlistment-delegation-of-reenlistment-app/ + Time in Grade Requirement for Promotion to U.S. Marine Corps Staff Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Navy Rank that requires some U.S. Navy Commander to have served a minimum of 3 years at their current rank in the O-5 pay grade, in order to be considered for promotion to the U.S. Navy Captain Rank by a promotion selection board of the Headquarters, Department of the Navy. + 10 USC 619(a)(2)(A): +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Navy Captain Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Navy Rank that requires some U.S. Navy Lieutenant Commander to have served a minimum of 3 years at their current rank in the O-4 pay grade, in order to be considered for promotion to the U.S. Navy Commander Rank by a promotion selection board of the Headquarters, Department of the Navy. + 10 USC 619(a)(2)(A): +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Navy Commander Rank + + + + + + + + + Time in Grade Requirement for Promotion to U.S. Navy Ensign Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Navy Rank that requires some U.S. Navy Lieutenant Junior Grade to have served a minimum of 2 years at their current rank in the O-2 pay grade, in order to be considered for promotion to the U.S. Navy Lieutenant Rank by a promotion selection board of the Headquarters, Department of the Navy. + 10 USC 619(a)(B): +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Navy Lieutenant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Navy Rank that requires some U.S. Navy Lieutenant to have served a minimum of 3 years at their current rank in the O-3 pay grade, in order to be considered for promotion to the U.S. Navy Lieutenant Commander Rank by a promotion selection board of the Headquarters, Department of the Navy. + 10 USC 619(a)(2)(A): +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Navy Lieutenant Commander Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 18 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Navy Rank that requires some U.S. Navy Ensign to have served a minimum of 18 months at their current rank in the O-1 pay grade, in order to be considered for promotion to the U.S. Navy Lieutenant Junior Grade Rank by a promotion selection board of the Headquarters, Department of the Navy. + 10 USC 619(a)(A): +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Navy Lieutenant Junior Grade Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Navy Rank that requires some U.S. Navy Captain to have served a minimum of 1 year at their current rank in the O-6 pay grade, in order to be considered for promotion to the U.S. Navy Rear Admiral Lower Half Rank by a promotion selection board of the Headquarters, Department of the Navy. + 10 USC 619(a)(2)(B): +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Navy Rear Admiral Lower Half Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Navy Rank that requires some U.S. Navy Rear Admiral Lower Half to have served a minimum of 1 year at their current rank in the O-7 pay grade, in order to be considered for promotion to the U.S. Navy Rear Admiral Rank by a promotion selection board of the Headquarters, Department of the Navy. + 10 USC 619(a)(2)(B): +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Navy Rear Admiral Rank + + + + + + + + + + + + + + + An Action Requirement for Promotion in Military Rank that requires an elisted sailor of an Armed Force employing the enlisted rate system, to complete some minimum temporal interval of work within their current rate, as a condition for promotion to some Military Rank. + Time in Rate Requirement for Promotion in Military Rank + + + + + + + + + A U.S. Navy Time in Rate Requirement that requires some U.S. Navy Petty Officer First Class to have served a minimum of 36 months in their current rate, as a condition for promotion to the U.S. Navy Chief Petty Officer Rank. + BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', Table 2-1 Basic Time-in-Rate (TIR) Requirements: + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Time in Rate Requirement for Promotion to U.S. Navy Chief Petty Officer Rank + + + + + + + + + A U.S. Navy Time in Rate Requirement that requires some U.S. Navy Senior Chief Petty Officer to have served a minimum of 36 months in their current rate, as a condition for promotion to the U.S. Navy Master Chief Petty Officer Rank. + BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', Table 2-1 Basic Time-in-Rate (TIR) Requirements: + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Time in Rate Requirement for Promotion to U.S. Navy Master Chief Petty Officer Rank + + + + + + + + + A U.S. Navy Time in Rate Requirement that requires some U.S. Navy Petty Officer Second Class to have served a minimum of 36 months in their current rate, as a condition for promotion to the U.S. Navy Petty Officer First Class Rank. + BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', Table 2-1 Basic Time-in-Rate (TIR) Requirements: + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Time in Rate Requirement for Promotion to U.S. Navy Petty Officer First Class Rank + + + + + + + + + A U.S. Navy Time in Rate Requirement that requires some U.S. Navy Petty Officer Third Class to have served a minimum of 12 months in their current rate, as a condition for promotion to the U.S. Navy Petty Officer Second Class Rank. + BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', Table 2-1 Basic Time-in-Rate (TIR) Requirements: + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Time in Rate Requirement for Promotion to U.S. Navy Petty Officer Second Class Rank + + + + + + + + + A U.S. Navy Time in Rate Requirement that requires some U.S. Navy Seaman to have served a minimum of 6 months in their current rate, as a condition for promotion to the U.S. Navy Petty Officer Third Class Rank. + BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', Table 2-1 Basic Time-in-Rate (TIR) Requirements: + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Time in Rate Requirement for Promotion to U.S. Navy Petty Officer Third Class Rank + + + + + + + + + A U.S. Navy Time in Rate Requirement that requires some U.S. Navy Seaman Recruit to have served a minimum of 9 months in their current rate, as a condition for promotion to the U.S. Navy Seaman Apprentice Rank. + BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', Table 2-1 Basic Time-in-Rate (TIR) Requirements: + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Time in Rate Requirement for Promotion to U.S. Navy Seaman Apprentice Rank + + + + + + + + + A U.S. Navy Time in Rate Requirement that requires some U.S. Navy Seaman Apprentice to have served a minimum of 9 months in their current rate, as a condition for promotion to the U.S. Navy Seaman Rank. + BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', Table 2-1 Basic Time-in-Rate (TIR) Requirements: + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Time in Rate Requirement for Promotion to U.S. Navy Seaman Rank + + + + + + + + + A U.S. Navy Time in Rate Requirement that requires some U.S. Navy Chief Petty Officer to have served a minimum of 36 months in their current rate, as a condition for promotion to the U.S. Navy Senior Chief Petty Officer Rank. + BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', Table 2-1 Basic Time-in-Rate (TIR) Requirements: + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Time in Rate Requirement for Promotion to U.S. Navy Senior Chief Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Needs to be refined with reference to initial enlistment date (for enlisted ranks) or date commissioned (for commissioned officers). + A Measurement Information Content Entity that is a measurement of the time a Person has served in some U.S. military branch since the date on which that Person officially began their service. + Shane Babcock + Time in Service Measurement Information Content Entity + + + + + + + + + A Requirement for Promotion in Military Rank that requires some member of some U.S. Armed Force to complete some minimum time in service within some U.S. military branch. + Time in Service Requirement for Promotion in Military Rank + + + + + + + + + "Initial six-year enlistees are promoted from AB or Amn to A1C upon completion of +either technical training or 20 weeks of technical training (start date of the 20-week period is +the date completed Basic Military Training), whichever occurs first. The date of rank for A1C +is then adjusted to the date completed Basic Military Training without back pay and +allowances." + +Paragraph 2.1.2. https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + A Time in Service Requirement for Promotion in Military Rank that requires some Airman in the U.S. Air Force to complete some minimum time of service in order to be promoted to the next higher grade of U.S. Air Force Rank. + Time in Service Requirement for Promotion in U.S. Air Force Rank + + + + + + + + + A Time in Service Requirement for Promotion in Military Rank that requires some U.S. Army Soldier holding some U.S Army Rank to have completed some minimum time of service within the U.S. Army, in order to be eligible for promotion to the next higher grade of U.S. Army Rank. + Time in Service Requirement for Promotion in U.S. Army Rank + + + + + + + + + With respect to the enlisted Marine Corps ranks, the Sergeant Major of the Marine Corps Rank (the highest enlisted rank, except in the case that some enlisted Marine is serving as the Senior Enlisted Advisor to the Chairman) is a special case. The sergeant major of the Marine Corps is selected by the commandant of the Marine Corps and normally serves a four-year term with them. + A Time in Service Requirement for Promotion in Military Rank that requires some U.S. Marine to complete some minimum time of service within the U.S. Marine Corps, as a condition for promotion to some U.S. Marine Corps Rank. + Time in Service Requirement for Promotion in U.S. Marine Corps Rank + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Airman Basic to have completed a minimum of 6 months time in service in order to be eligible for promotion to the U.S. Air Force Airman Rank. + https://www.military.com/air-force/enlisted-ranks.html + Time in Service Requirement for Promotion to U.S. Air Force Airman Rank (REGAF) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Senior Master Sergeant to have completed a minimum of 14 years time in service in order to be eligible for promotion to the U.S. Air Force Chief Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Chief Master Sergeant Rank (REGAF) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Technical Sergeant to have completed a minimum of 8 years time in service in order to be eligible for promotion to the U.S. Air Force Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Master Sergeant Rank (REGAF) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Airman to have completed a minimum of 1 year time in service in order to be eligible for promotion to the U.S. Air Force Senior Airman Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Senior Airman Rank (REGAF) + + + + + + + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Master Sergeant to have completed a minimum of 11 years time in service in order to be eligible for promotion to the U.S. Air Force Senior Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Senior Master Sergeant Rank (REGAF) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Senior Airman to have completed a minimum of 3 years time in service in order to be eligible for promotion to the U.S. Air Force Staff Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Staff Sergeant Rank (REGAF) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Staff Sergeant to have completed a minimum of 5 years time in service in order to be eligible for promotion to the U.S. Air Force Technical Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Technical Sergeant Rank (REGAF) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4 + + + + + + + + + + + + + + + + + + + + + + + + + + This should be deprecated. Commissioned officer ranks do not have TIS requirements. Though there are guidelines for considering officers for promotion that look to TIS, these are not definitive requirements as such. + A Time in Service Requirement for Promotion in U.S. Army Military Rank that requires some U.S. Army First Lieutenant to have served a minimum of 4 years time in service, in order to be considered for promotion to the U.S. Army Captain Rank by a promotion selection board of the Headquarters, Department of the Army. + https://www.thebalancecareers.com/army-commissioned-officer-career-information-3345007 + +https://www.thebalancecareers.com/military-commissioned-officer-promotions-4055887 + +Will eventually replace the above links with link for the primary source at the U.S. DOD website. + Time in Service Requirement for Promotion to U.S. Army Captain Rank + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 22 + + + + + + + + + + + + + + + + + + + + + + + + + + This should be deprecated. Commissioned officer ranks do not have TIS requirements. Though there are guidelines for considering officers for promotion that look to TIS, these are not definitive requirements as such. + A Time in Service Requirement for Promotion in U.S. Army Military Rank that requires some U.S. Army Lieutenant Colonel to have served a minimum of 22 years time in service, in order to be considered for promotion to the U.S. Army Colonel Rank by a promotion selection board of the Headquarters, Department of the Army. + https://www.thebalancecareers.com/army-commissioned-officer-career-information-3345007 + +https://www.thebalancecareers.com/military-commissioned-officer-promotions-4055887 + +Will eventually replace the above links with link for the primary source at the U.S. DOD website. + Time in Service Requirement for Promotion to U.S. Army Colonel Rank + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 18 + + + + + + + + + + + + + + + + + + + + This should be deprecated. Commissioned officer ranks do not have TIS requirements. Though there are guidelines for considering officers for promotion that look to TIS, these are not definitive requirements as such. + A Time in Service Requirement for Promotion in U.S. Army Military Rank that requires some U.S. Army Second Lieutenant to have completed a minimum of 18 months time in service, in order to be considered by a promotion selection board of the Headquarters of the Department of the Army for promotion to the U.S. Army First Lieutenant Rank. + https://www.thebalancecareers.com/army-commissioned-officer-career-information-3345007 + +https://www.thebalancecareers.com/military-commissioned-officer-promotions-4055887 + +Will eventually replace the above links with link for the primary source at the U.S. DOD website. + Time in Service Requirement for Promotion to U.S. Army First Lieutenant Rank + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 16 + + + + + + + + + + + + + + + + + + + + + + + + + + This should be deprecated. Commissioned officer ranks do not have TIS requirements. Though there are guidelines for considering officers for promotion that look to TIS, these are not definitive requirements as such. + A Time in Service Requirement for Promotion in U.S. Army Military Rank that requires some U.S. Army Major to have completed a minimum of 16 years time in service, in order to be considered for promotion to the U.S. Army Lieutenant Colonel Rank by a promotion selection board of the Headquarters, Department of the Army. + https://www.thebalancecareers.com/army-commissioned-officer-career-information-3345007 + +https://www.thebalancecareers.com/military-commissioned-officer-promotions-4055887 + +Will eventually replace the above links with link for the primary source at the U.S. DOD website. + Time in Service Requirement for Promotion to U.S. Army Lieutenant Colonel Rank + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 10 + + + + + + + + + + + + + + + + + + + + + + + + + + This should be deprecated. Commissioned officer ranks do not have TIS requirements. Though there are guidelines for considering officers for promotion that look to TIS, these are not definitive requirements as such. + A Time in Service Requirement for Promotion in U.S. Army Military Rank that requires some U.S. Army Captain to have completed a minimum of 10 years time in service, in order to be considered for promotion to the U.S. Army Major Rank by a promotion selection board of the Headquarters, Department of the Army. + https://www.thebalancecareers.com/army-commissioned-officer-career-information-3345007 + +https://www.thebalancecareers.com/military-commissioned-officer-promotions-4055887 + +Will eventually replace the above links with link for the primary source at the U.S. DOD website. + Time in Service Requirement for Promotion to U.S. Army Major Rank + true + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank that requires some enlisted U.S. Army soldier to complete some minimum time of service within the U.S. Army, as a condition for promotion to the U.S. Army Master Seargent Rank. + Time in Service Requirement for Promotion to U.S. Army Master Sergeant Rank + true + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank that requires some enlisted U.S. Army soldier to complete some minimum time of service within the U.S. Army, as a condition for promotion to the U.S. Army Seargent First Class Rank. + Time in Service Requirement for Promotion to U.S. Army Sergeant First Class Rank + true + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank that requires some enlisted U.S. Army soldier to complete some minimum time of service within the U.S. Army, as a condition for promotion to the U.S. Army Seargent Major Rank. + Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank + true + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Lance Corporal to have completed a minimum of 12 months time in service, as a condition for promotion to the U.S. Marine Corps Corporal Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Service Requirement for Promotion to U.S. Marine Corps Corporal Rank + + + + + + + + + Gunnery Sgts have the option of seeking promotion to either of the two E-8 pay grade ranks, the Master Sergeant or First Sergeant Rank. The TIS and TIG requirements for promotion to each of these ranks is the same. Though there are additional, more demanding requirements for the First Sergeant Rank. + A Time in Service Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Gunnery Sergeant to have completed a minimum of 8 years time in service, as a condition for promotion to the U.S. Marine Corps First Sergeant Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Service Requirement for Promotion to U.S. Marine Corps First Sergeant Rank + + + + + + + + + Various secondary sources claim that a Marine serving in the E-8 pay grade at the Master Sergeant Rank is only eligible for promotion to the Master Gunnery Sergeant Rank at E-9, and not the E-9 Sergeant Major Rank. + +See for example: https://www.indeed.com/career-advice/finding-a-job/us-marine-corps-ranks + +and: https://www.military.com/marine-corps/enlisted-ranks.html#staff-nco + +But I will still need to verify that this the official position stated in Marine Corps publications. I am not sure about this. + A Time in Service Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Master Sergeant to have completed a minimum of 10 years time in service, as a condition for promotion to the U.S. Marine Corps Master Gunnery Sergeant Rank. + Paragraphs 1202.1. & 3201.4. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Service Requirement for Promotion to U.S. Marine Corps Master Gunnery Sergeant Rank + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Staff Sergeant to have completed a minimum of 6 years time in service, as a condition for promotion to the U.S. Marine Corps Gunnery Sergeant Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Service Requirement for Promotion to U.S. Marine Corps Gunnery Sergeant Rank + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Private First Class to have completed a minimum of 9 months time in service, as a condition for promotion to the U.S. Marine Corps Lance Corporal Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Service Requirement for Promotion to U.S. Marine Corps Lance Corporal Rank + + + + + + + + + Gunnery Sgts have the option of seeking promotion to either of the two E-8 pay grade ranks, the Master Sergeant or First Sergeant Rank. The TIS and TIG requirements for promotion to each of these ranks is the same. Though there are additional, more demanding requirements for the First Sergeant Rank. + A Time in Service Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Gunnery Sergeant to have completed a minimum of 8 years time in service, as a condition for promotion to the U.S. Marine Corps Master Sergeant Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Service Requirement for Promotion to U.S. Marine Corps Master Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Private to have completed a minimum of 6 months time in service, as a condition for promotion to the U.S. Marine Corps Private First Class Rank. + Paragraph 1202.1. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Service Requirement for Promotion to U.S. Marine Corps Private First Class Rank + + + + + + + + + Various secondary sources claim that a Marine serving in the E-8 pay grade at the Master Sergeant Rank is only eligible for promotion to the Master Gunnery Sergeant Rank at E-9, and not the E-9 Sergeant Major Rank. Whereas First Sergeants are on track for promotion to the Sergeant Major Rank. + +See for example: https://www.indeed.com/career-advice/finding-a-job/us-marine-corps-ranks + +and: https://www.military.com/marine-corps/enlisted-ranks.html#staff-nco + +But I will still need to verify that this the official position stated in Marine Corps publications. I am not sure about this. + A Time in Service Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps First Sergeant to have completed a minimum of 10 years time in service, as a condition for promotion to the U.S. Marine Corps Sergeant Major Rank. + Paragraphs 1202.1. & 3201.4. https://www.marines.mil/portals/1/Publications/MCO%20P1400.32D%20W%20CH%201-2.pdf + Time in Service Requirement for Promotion to U.S. Marine Corps Sergeant Major Rank + + + + + + + + + This TIS requirement is non-waiverable. + +Paragraph 4.c.1. https://www.marines.mil/News/Messages/Messages-Display/Article/2003700/announcement-of-authority-for-early-reenlistment-delegation-of-reenlistment-app/ + A Time in Service Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Corporal to have completed a minimum of 4 years time in service, as a condition for promotion to the U.S. Marine Corps Sergeant Rank. + Paragraph 4.c.1. https://www.marines.mil/News/Messages/Messages-Display/Article/2003700/announcement-of-authority-for-early-reenlistment-delegation-of-reenlistment-app/ + Time in Service Requirement for Promotion to U.S. Marine Corps Sergeant Rank + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Marine Corps Military Rank that requires some U.S. Marine Corps Sergeant to have completed a minimum of 60 months time in service, as a condition for promotion to the U.S. Marine Corps Staff Sergeant Rank. + Paragraph 4.c.2. https://www.marines.mil/News/Messages/Messages-Display/Article/2003700/announcement-of-authority-for-early-reenlistment-delegation-of-reenlistment-app/ + Time in Service Requirement for Promotion to U.S. Marine Corps Staff Sergeant Rank + + + + + + + + + I say "who holds a rank below U.S. Army Captain Rank" because it appears to me that 10 USC 603, which authorizes such promotions, also authorizes the President to appoint a soldier of a higher rank to a lower rank (e.g., if there is a critical shortage of CPTs due to wartime casualties, but still plenty of qualified Majors). + +That is what 10 USC 603(d) appears to me to suggest: "An appointment under this section does not change the permanent status of a member of the armed forces so appointed. A member who is appointed under this section shall not incur any reduction in the pay and allowances to which the member was entitled, by virtue of his permanent status, at the time of his appointment under this section." I took this to mean that when appointed to a position at a lower rank the officer would still be paid at the higher rate tied to their permanently held higher rank. + A Temporary Promotion to U.S. Army Captain Rank, executed during a time of war, or during a time of national emergency declared by the Congress or President, in which some qualified U.S. Army Soldier who holds a rank below the U.S. Army Captain Rank, is temporarily appointed in the U.S. Army Captain Rank by the President. + 10 USC 603, "Appointments in time of war or national emergency" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section603&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Shane Babcock + War and National Emergency Promotion to U.S. Army Captain Rank + + + + + + + + + An Act of Promotion to U.S. Army Master Sergeant Rank in which a U.S. Army Reserve Troop Program Unit Commander selects a Sergeant First Class under their command from the Permanent Promotion Recommended List, and assigns that Soldier to a position vacancy authorized for the U.S. Army Master Sergeant Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Ch. 5 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Particularly: + +Paragraphs 5-2c, 5-2a, 5-5b(3), 5-7g, and 5-16a. + Troop Program Unit Centralized Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Major Rank (USAR) in which a U.S. Army Reserve Troop Program Unit Commander selects a Staff Sergeant under their command from the Permanent Promotion Recommended List, and assigns that Soldier to a position vacancy authorized for the U.S. Army Sergeant First Class Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Ch. 5 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Particularly: + +Paragraphs 5-2c, 5-2a, 5-5b(3), 5-7g, and 5-16a. + Troop Program Unit Centralized Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Major Rank (USAR) in which a U.S. Army Reserve Troop Program Unit Commander selects a Master Sergeant or First Sergeant under their command from the Permanent Promotion Recommended List, and assigns that Soldier to a position vacancy authorized for the U.S. Army Sergeant Major Rank, advancing the Soldier to that rank effective the date of the assignment. + Army Regulation 600–8–19, Ch. 5 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +Particularly: + +Paragraphs 5-2c, 5-2a, 5-5b(3), 5-7g, and 5-16a. + Troop Program Unit Centralized Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + + + + + + + + + + + A Military Rank Insignia that bears some Two-Star Military Rank. + Two-Star Military Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + Increased responsibility, as officers rely heavily on their skills and expertise. + Senior NCO + British Royal Navy Chief Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + + + An U.S. Air Force Junior Enlisted Airman who has some U.S. Air Force Airman Rank and is the bearer of some U.S. Air Force Airman Role. + U.S. Air Force Airman + + + + + + + + + + + + + + + + + + + + + + + An U.S. Air Force Junior Enlisted Airman who has some U.S. Air Force Airman Basic Rank and is the bearer of some U.S. Air Force Airman Basic Role. + U.S. Air Force Airman Basic + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Has no rank insignia + U.S. Air Force Airman Basic Rank + + + + + + + + + U.S. Air Force Airman Basic Role + + + + + + + + + + + + + + + + + + + + + + + An U.S. Air Force Junior Enlisted Airman who has some U.S. Air Force Airman First Class Rank and is the bearer of some U.S. Air Force Airman First Class Role. + U.S. Air Force Airman First Class + + + + + + + + + + + + + + + + + + + An Airman-level Rank Insignia that bears some U.S. Air Force Airman First Class Rank. + U.S. Air Force Airman First Class Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Air Force Airman First Class Rank + + + + + + + + + U.S. Air Force Airman First Class Role + + + + + + + + + + + + + + + + + + + U.S. Air Force Junior Enlisted Rank Insignia that bears some U.S. Air Force Airman Rank. + U.S. Air Force Airman Basic Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Air Force Airman Rank + + + + + + + + + U.S. Air Force Airman Role + + + + + + + + + A Military Recruit Training Requirement that requires some U.S. Air Force airman to complete the U.S. Air Force Basic Military Training Program. + U.S. Air Force Basic Military Training Requirement + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some U.S. Air Force Brigadier General Rank and is the bearer of some U.S. Air Force Brigadier General Role. + U.S. Air Force Brigadier General + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia that bears some U.S. Air Force Brigadier General Rank. + U.S. Air Force Brigadier General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + the use of 'larger' here is admittedly vague. I will need to do some more research to see if there are numbers breaking down the base sizes that typically commanded by air force brigadier generals. + A U.S. Air Force Commissioned Officer Rank that is directly above the U.S. Air Force Colonel Rank and directly below the U.S. Air Force Major General Rank, and which signifies that the rank holder bears an Authority Role that typically involves the command of a larger U.S. Air Force wing or base, the deputy command of a Numbered Air Force, or assignment to high-level staff positions in the U.S. Air Force or other services (such as at the Pentagon, joint bases overseas, or NORAD). + https://en.wikipedia.org/wiki/Brigadier_general_(United_States) + https://www.federalpay.org/military/air-force/brigadier-general + U.S. Air Force Brigadier General Rank + + + + + + + + + U.S. Air Force Brigadier General Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some U.S. Air Force Captain Rank and is the bearer of some U.S. Air Force Captain Role. + U.S. Air Force Captain + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia that bears some U.S. Air Force Captain Rank. + U.S. Air Force Captain Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer Rank that is directly above the U.S. Air Force First Lieutenant Rank and directly below the U.S. Air Force Major Rank, and which signifies that the rank holder bears an Authority Role of either Flight Commander or Department Head, and which varies according to the group assignment and seniority of the rank holder. + https://en.wikipedia.org/wiki/Captain_(United_States_O-3) + https://www.federalpay.org/military/air-force/captain + Within U.S. Air Force operations groups, senior rank holders may serve as Flight Commanders while junior rank holders may be Department Heads. Rank holders in the maintenance or logistics and mission support groups are almost always Flight Commanders. + U.S. Air Force Captain Rank + Company Grade Rank + + + + + + + + + U.S. Air Force Captain Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Non-Commissioned Officer who has some U.S. Air Force Chief Master Sergeant Rank and is the bearer of some U.S. Air Force Chief Master Sergeant Role. + U.S. Air Force Chief Master Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + Is equivalent in rank to: U.S. Army Sergeant Major, U.S. Marine Corps Master Gunnery Sergeant, and U.S. Navy/Coast Guard Master Chief Petty Officer. + +In that case, it will be one rank above U.S. Navy/Coast Guard Senior Chief Petty Officer. And also one rank above First Sergeant ranks of the army and marines. In that case, what is the relationship between the First Sergeant Ranks the Navy/Coast Guard ranks? + U.S. Air Force Chief Master Sergeant Rank + + + + + + + + + U.S. Air Force Chief Master Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some U.S. Air Force Colonel Rank and is the bearer of some U.S. Air Force Colonel Role. + U.S. Air Force Colonel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer Rank that is directly above the U.S. Air Force Lieutenant Colonel Rank and driectly below the of U.S. Air Force Brigadier General Rank, and which signifies that the rank holder bears an Authority Role that typically involves the role of U.S. Air Force group commander or wing commander. + https://www.federalpay.org/military/air-force/colonel + U.S. Air Force Colonel Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia that bears some U.S. Air Force Colonel Rank. + U.S. Air Force Colonel Rank Insignia + + + + + + + + + U.S. Air Force Colonel Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Senior Non-Commissioned Officer who has some U.S. Air Force Command Chief Master Sergeant Rank and is the bearer of some U.S. Air Force Command Chief Master Sergeant Role. + U.S. Air Force Command Chief Master Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + U.S. Air Force Command Chief Master Sergeant Rank + + + + + + + + + U.S. Air Force Command Chief Master Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + A Commissioned Officer who is a member of the United States Air Force, has some U.S. Air Force Commissioned Officer Rank, and is the bearer of some U.S. Air Force Commissioned Officer Role. + U.S. Air Force Commissioned Officer + + + + + + + + + U.S. Air Force Commissioned Officer Rank + + + + + + + + + A Commissioned Officer Role which inheres in an Agent in virtue of that Agent holding some U.S. Air Force Commissioned Officer Rank, and which primarily involves the command of some U.S. Air Force unit. + U.S. Air Force Commissioned Officer Role + + + + + + + + + U.S. Air Force Company Grade Commissioned Officer Rank + + + + + + + + + The term 'airman' is also used as a generic title for any member of the Air Force, whether enlisted personnel or commissioned officer. Usually when it is used in this generic sense, the term is not capitalized. Whereas when it is used to refer to Air Force enlisted ranks, the term is capitalized. + U.S. Air Force Junior Enlisted Rank + + + + + + + + + U.S. Air Force Field Grade Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some U.S. Air Force First Lieutenant Rank and is the bearer of some U.S. Air Force First Lieutenant Role. + U.S. Air Force First Lieutenant + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia that bears some U.S. Air Force First Lieutenant Rank. + U.S. Air Force First Lieutenant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer Rank that is directly above the U.S. Air Force Second Lieutenant Rank and directly below the U.S. Air Force Captain Rank, and which: i) in the case of rank holders in non-rated (non-flying) and intelligence career fields, signifies that the rank holder bears an Authority Role that typically involves supervising flights as a Flight Commander or Deputy Flight Commander, or a staff position at the squadron, group or (rarely) wing level; and ii) in the case of rated officers, signifies either that the rank holder has no command responsibilities and is finishing their rated training to become either a pilot, combat systems officers, remotely piloted aircraft officer, or air battle manager, or that the rank holder has finished their rated training and has few supervisory responsibilities in their respective field. + https://en.wikipedia.org/wiki/First_lieutenant + https://www.federalpay.org/military/air-force/first-lieutenant + U.S. Air Force First Lieutenant Rank + Company Grade Rank + + + + + + + + + U.S. Air Force First Lieutenant Role + + + + + + + + + + + + + + + U.S. Air Force First Sergeant + + + + + + + + + Senior NCO + This is a special duty, temporary rank. It is a rank that can be held: + +At the E-7 grade (which also has the U.S. Air Force Master Sergeant Rank). + +At the E-8 grade (which also has the U.S. Air Force Senior Master Sergeant Rank). + +At the E-9 grade (which also has the U.S. Air Force Chief Master Sergeant Rank and Command Chief Master Sergeant Rank). + +https://en.wikipedia.org/wiki/First_sergeant#United_States_Air_Force_and_United_States_Space_Force + U.S. Air Force First Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some U.S. Air Force General Rank and is the bearer of some U.S. Air Force General Role. + U.S. Air Force General + + + + + + + + + U.S. Air Force General Officer Rank + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia that bears some U.S. Air Force General Rank. + U.S. Air Force General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia Quality Pattern, inhering in some U.S. Air Force General Rank Insignia, that concretizes some U.S. Air Force General Rank. + U.S. Air Force General Rank Insignia Quality Pattern + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer Rank that is directly above the U.S. Air Force Lieutenant General Rank, and which signifies that: i) the rank holder bears an Authority Role involving either the command of a Major Command, or a command within a treaty organization such as NATO; ii) the rank holder may, if qualified, serve in the Vice Chief of Staff of the Air Force Role or Chief of Staff of the Air Force Role, or serve as a member of the U.S. Department of Defense Joint Chiefs of Staff. + https://en.wikipedia.org/wiki/General_(United_States) + https://en.wikipedia.org/wiki/Structure_of_the_United_States_Air_Force + https://www.federalpay.org/military/air-force/general + U.S. Air Force General Rank + General Officer Rank + + + + + + + + + U.S. Air Force General Role + + + + + + + + + U.S. Air Force Junior Enlisted Airman Role + + + + + + + + + + + + + + + + + + + Junior Enlisted Rank Insignia that bears some U.S. Air Force Junior Enlisted Rank. + The U.S. Air Force Airman Basic (E-1) does not wear a rank insignia. + U.S. Air Force Junior Enlisted Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + A Junior Enlisted Personnel who has some U.S. Air Force Junior Enlisted Rank and is the bearer of some U.S. Air Force Junior Enlisted Airman Role. + U.S. Air Force Junior Enlisted Airman + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Non-Commissioned Officer who has one of the U.S. Air Force Non-Commissioned Officer Ranks with a U.S. uniformed services grade of E-5 or E-6. + U.S. Air Force Junior Non-Commissioned Officer + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some U.S. Air Force Lieutenant Colonel Rank and is the bearer of some U.S. Air Force Lieutenant Colonel Role. + U.S. Air Force Lieutenant Colonel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Holders of the rank "also may serve as a Director of Operations (DO) in a squadron in the operations group before assuming command of his or her own squadron (this is common for rated officers in flying units), or as a deputy commander of a squadron in the maintenance, mission-support, or medical group. Lieutenant colonels may serve also on general staffs and may be the heads of some wing staff departments." https://en.wikipedia.org/wiki/Lieutenant_colonel_(United_States) + A U.S. Air Force Commissioned Officer Rank that is directly above the U.S. Air Force Major Rank and directly below the U.S. Air Force Colonel Rank, and which signifies that the rank holder bears an Authority Role that typically involves the role of U.S. Air Force squadron commander. + https://www.federalpay.org/military/air-force/lieutenant-colonel + U.S. Air Force Lieutenant Colonel Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia that bears some U.S. Air Force Lieutenant Colonel Rank. + U.S. Air Force Lieutenant Colonel Rank Insignia + + + + + + + + + U.S. Air Force Lieutenant Colonel Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some U.S. Air Force Lieutenant General Rank and is the bearer of some U.S. Air Force Lieutenant General Role. + U.S. Air Force Lieutenant General + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia that bears some U.S. Air Force Lieutenant General Rank. + U.S. Air Force Lieutenant General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer Rank that is directly above the U.S. Air Force Major General Rank and directly below the U.S. Air Force General Rank, and which signifies that the rank holder bears an Authority Role that typically involves the role of Numbered Air Force commander, or service at a high-level U.S. Department of Defense headquarters such as the Pentagon. + https://www.federalpay.org/military/air-force/lieutenant-general + U.S. Air Force Lieutenant General Rank + General Officer Rank + + + + + + + + + U.S. Air Force Lieutenant General Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some U.S. Air Force Major Rank and is the bearer of some U.S. Air Force Major Role. + U.S. Air Force Major + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some U.S. Air Force Major General Rank and is the bearer of some U.S. Air Force Major General Role. + U.S. Air Force Major General + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia that bears some U.S. Air Force Major General Rank. + U.S. Air Force Major General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer Rank that is directly above the U.S. Air Force Brigadier General Rank and directly below the U.S. Air Force Lieutenant General Rank, and which signifies that the rank holder bears an Authority Role that typically involves a high-level command, such as Numbered Aired Force commander, joint force commander, air operations center commander, training program commander, or logistics operations center commander, or service as as a senior director on a joint staff or as a vice commander to a U.S. Air Force Lieutenant General. + https://www.federalpay.org/military/air-force/major-general + U.S. Air Force Major General Rank + General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + In the USAF, 'flight' is a term for the basic subunit of an air force squadron. + The holder of the rank typically has the duty of serving as a senior staff officer directly under the commander of a squadron or wing. + A U.S. Air Force Commissioned Officer Rank that is directly above the U.S. Air Force Captain Rank and directly below the U.S. Air Force Lieutenant Colonel Rank, and which signifies that the rank holder bears an Authority Role that typically involves the role of either squadron operations officer (Director of Operations), squadron assistant operations officer, or flight commander. + https://en.wikipedia.org/wiki/Structure_of_the_United_States_Air_Force + https://www.federalpay.org/military/air-force/major + U.S. Air Force Major Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia that bears some U.S. Air Force Major Rank. + U.S. Air Force Major Rank Insignia + + + + + + + + + U.S. Air Force Major Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Senior Non-Commissioned Officer who has some U.S. Air Force Master Sergeant Rank and is the bearer of some U.S. Air Force Master Sergeant Role. + U.S. Air Force Master Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + senior NCO + U.S. Air Force Master Sergeant Rank + + + + + + + + + U.S. Air Force Master Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + A Non-Commissioned Officer who is a member of the U.S. Air Force. + U.S. Air Force Non-Commissioned Officer + + + + + + + + + U.S. Air Force Non-Commissioned Officer Rank + + + + + + + + + U.S. Air Force Non-Commissioned Officer Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Commissioned Officer who has some U.S. Air Force Second Lieutenant Rank and is the bearer of some U.S. Air Force Second Lieutenant Role. + U.S. Air Force Second Lieutenant + + + + + + + + + + + + + + + + + + + U.S. Air Force Commissioned Officer Rank Insignia that bears some U.S. Air Force Second Lieutenant Rank. + U.S. Air Force Second Lieutenant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This is interesting. While a second lieutenant outranks the Chief Master Sergeant of the Air Force (the latter is enlisted, whereas lieutenants are commissioned) the power dynamic is complicated... + A U.S. Air Force Commissioned Officer Rank that is directly above the Chief Master Sergeant of the Air Force Rank and directly below the U.S. Air Force First Lieutenant Rank, and which: i) in the case of rank holders in non-rated (non-flying) and intelligence career fields, signifies that the rank holder bears an Authority Role that typically involves either the role of Flight Commander or Deputy Flight Commander, or a staff position at the squadron, group or (rarely) wing level; and ii) in the case of rated officers, signifies that the rank holder typically has no command responsibilities and is full time student in training to become either a pilot, combat systems officers, remotely piloted aircraft officer, or air battle manager. + https://en.wikipedia.org/wiki/Second_lieutenant#United_States + https://www.federalpay.org/military/air-force/second-lieutenant + U.S. Air Force Second Lieutenant Rank + Company Grade Rank + + + + + + + + + U.S. Air Force Second Lieutenant Role + + + + + + + + + + + + + + + + + + + + + + + An U.S. Air Force Junior Enlisted Airman who has some U.S. Air Force Senior Airman Rank and is the bearer of some U.S. Air Force Senior Airman Role. + U.S. Air Force Senior Airman + + + + + + + + + + + + + + + + + + + An Airman-level Rank Insignia that bears some U.S. Air Force Senior Airman Rank. + U.S. Air Force Senior Airman Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Senior Airman Rank is equivalent to the rank of Army Specialist, which is also in the E-4 DoD paygrade. The Marine Corps, Navy and Coast Guard do not have an equivalent non-officer enlisted personnel rank equivalent in the E-4 paygrade. + +The Army rank of Specialist is below the NCO rank of Corporal, which is also in the E-4 paygrade. The Air Force used to have an equivalent NCO rank of 'Sergeant' in the E-4 paygrade (which, if were still in use, would itself be equivalent to the lowest ranking NCOs in the Marine Corps, Navy and Coast Guard, i.e., Corporal/Petty Officer Third Class). + U.S. Air Force Senior Airman Rank + + + + + + + + + U.S. Air Force Senior Airman Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Senior Non-Commissioned Officer who has some U.S. Air Force Senior Master Sergeant Rank and is the bearer of some U.S. Air Force Senior Master Sergeant Role. + U.S. Air Force Senior Master Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + Is two ranks above U.S. Army Sergeant First Class Rank. See the rdfs:comment for that class. + +Is two ranks above U.S. Army Gunnery Sergeant Rank. See the rdfs:comment for that class. + U.S. Air Force Senior Master Sergeant Rank + + + + + + + + + U.S. Air Force Senior Master Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Non-Commissioned Officer who has one of the U.S. Air Force Non-Commissioned Officer Ranks with a U.S. uniformed services grade of E-7, E-8, or E-9. + U.S. Air Force Senior Non-Commissioned Officer + + + + + + + + + + + + + + + "If EPME is not completed by the promotion increment month, the projected promotion will be placed +into “withhold” status as referenced in Table 1.3., item 10. (T-1). If EPME is not completed by the end of +the promotion cycle the projected promotion will be canceled and not reinstated (except for promotion to +SSgt). (T-1). The end of the promotion cycle is defined as the last month promotions will increment for +that particular cycle as outlined in the Enlisted Promotion Eligibility Chart available on myPers." + +Table 1.1.https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Exception: "The only exceptions for waivers beyond 179 days is for Airmen on +Temporary Duty (TDYs) or deployments that exceed 179 days, short-tour locations with no EPME +available, and those who cannot complete required EPME before promotion due to circumstances beyond +their control (e.g., retraining, medical issues, personal hardship, Exceptional Family Member Prgram). (T1). The squadron commander is the approval or disapproval authority for EPME waivers (cannot be further +delegated). Commanders use Attachment 3 to request a promotion waiver for deserving Airmen who meet +these scenarios. Route these requests through AFPC/DP2SPP. If approved, AFPC/DP2SPP will update +MilPDS and, if required, will grant a retroactive effective date in accordance with paragraph 1.17. (T-1). +Commanders may only approve one EPME waiver per Airman; approval authority for subsequent EPME +waiver requests are at the discretion of the Directorate of Force Development (AF/A1D)." + +Table 1.1.https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + A U.S. Air Force Enlisted Professional Military Education Requirement that requires a U.S. Air Force Master Sergeant to have completed the Senior Non-Commissioned Officer Academy course within 179 days, and prior to the promotion increment month, as a condition for promotion to the U.S. Air Force Senior Master Sergeant Rank. + Table 1.1. https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + U.S. Air Force Senior Non-Commissioned Officer Academy Requirement + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Junior Non-Commissioned Officer who has some U.S. Air Force Staff Sergeant Rank and is the bearer of some U.S. Air Force Staff Sergeant Role. + U.S. Air Force Staff Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + Lowest ranking non-commissioned officer rank in the Air Force. + +Add comment explaining history behind this rank, to make clear how it came to be the equivalent of the Sergeant rank in the army and marines. + U.S. Air Force Staff Sergeant Rank + + + + + + + + + U.S. Air Force Staff Sergeant role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Air Force Junior Non-Commissioned Officer who has some U.S. Air Force Technical Sergeant Rank and is the bearer of some U.S. Air Force Technical Sergeant Role. + U.S. Air Force Technical Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + U.S. Air Force Technical Sergeant Rank + + + + + + + + + U.S. Air Force Technical Sergeant role + + + + + + + + + U.S. Air Force Major General Role + + + + + + + + + + + + + + + + + + + + + + + Person who is a member of some Armed Force of the United States and who has some U.S. Armed Forces Field Grade Officer Rank. + U.S. Armed Forces Company Grade Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Armed Forces Company Grade Rank + + + + + + + + + + + + + + + + + + + A U.S. Armed Forces Warrant Officer who holds some U.S. Armed Forces Company Grade Rank. + The U.S. Armed Forces Company Grade Warrant Officers are: the U.S. Army Warrant Officer 1 and U.S. Army Chief Warrant Officer 2; the U.S. Marine Corps Warrant Officer 1 and U.S. Marine Corps Chief Warrant Officer 2. + U.S. Armed Forces Company Grade Warrant Officer + + + + + + + + + + + + + + + + + + + + + + + Person who is a member of some Armed Force of the United States and who has some U.S. Armed Forces Field Grade Officer Rank. + U.S. Armed Forces Field Grade Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Armed Forces Field Grade Rank + + + + + + + + + + + + + + + + + + + A U.S. Armed Forces Warrant Officer who holds some U.S. Armed Forces Field Grade Rank. + The U.S. Armed Forces Field Grade Warrant Officers are those Chief Warrant Officers of the Army and Marine Corps with a rank in the grade of W-3, W-4, or W-5. + U.S. Armed Forces Field Grade Warrant Officer + + + + + + + + + + + + + + + + + + + A Commissioned Officer in the U.S. Navy or U.S. Coast Guard, who has some U.S. Armed Forces Flag Officer Rank. + U.S. Armed Forces Flag Officers are Commissioned Officers of the U.S. Navy and U.S. Coast Guard holding one of the admiral ranks (ranks in the grade of O-6, O-7, O-8, O-9, or O-10. + Shane Babcock + U.S. Armed Forces Flag Officer + https://en.wikipedia.org/wiki/Flag_officer#United_States + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Armed Forces Flag Officer Rank + + + + + + + + + + + + + + + + + + + U.S. Armed Forces General Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Armed Forces General Officer Rank + + + + + + + + + + + + + + + + + + + + + + + Person who is a member of the U.S. Navy or Coast Guard, and who has some U.S. Armed Forces Junior Grade Rank. + U.S. Armed Forces Junior Grade Officers are: + +Chief Warrant Officers of the U.S. Navy and U.S. Coast Guard with a rank in the grade of W-2, W-3, or W-4; + +U.S. Navy and U.S. Coast Guard Commissioned Officers with a rank in the grade of O-1, O-2, O-3, or O-4. + U.S. Armed Forces Junior Grade Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unhelpfully, the notion of a 'Junior Grade Officer' is sometimes used synonymously with 'Company Grade Officer'. + +This seems incorrect, as Junior Grade Officer is a grouping of naval and coast guard commissioned officers of grades O-1 through O-4, and Chief Warrant Officers of grade W-2 through W-4. Whereas Company Grade Officer is a grouping of army, marine corps and air force commissioned officers of grades O-1 through O-3, and Chief Warrant Officers W-1 and W-2. + +Normally, a U.S. Navy Warrant Officer 1 (W-1) is appointed via a warrant, rather than a commission. Though, the Secretary of the Navy does have the authority to appoint a W-1 via commission. + +That they are not normally commissioned explains why the Navy W-1 Warrant Officer are not groupd under the term 'Junior Officer', as 'Officer'. + +https://en.wikipedia.org/wiki/Junior_officer + +https://en.wikipedia.org/wiki/Field_officer#United_States + U.S. Armed Forces Junior Grade Rank + + + + + + + + + Deprecate, once I figure out to do with the subclasses + A Petty Officer Rank held by some enlisted member of the U.S. Navy or the U.S. Coast Guard. + U.S. Armed Forces Petty Officer Rank + true + + + + + + + + + + + + + + + + + + + + + + + + + + + Person who is a member of some Armed Force of the United States, who has some U.S. Armed Forces Warrant Officer Rank, and is the bearer of some U.S. Armed Forces Warrant Officer Role. + U.S. Armed Forces Warrant Officer + + + + + + + + + In U.S. military usage, warrant officer is a grade in between enlisted grade and commissioned officer grade. + +But in other militaries, warranter officers are the highest of the enlisted ranks. Thus, for instance, the warrant officer ranks of the British and Canadian Armed Forces are classified under 'Enlisted Rank'. + +In the U.S. Armed Forces, the highest enlisted ranks are non-commissioned officer ranks. As a result, the rank structures of the U.S. Armed Forces contain more grades of non-commissioned officer ranks than are found within rank structures following the Commonwealth model. + Please note that the lack of a U.S. Coast Guard WO-1 'warrant officer rank' and WO-5 'Chief Warrant Officer 5 rank' are not ommissions. These are not ranks currently used in the coast guard. + +There is a provision for the latter rank, but it is not currently in use. + A Military Rank that is appointed by warrant or Military Commission and specifies an Authority Role which is held by a member of the U.S. Armed Forces by virtue of their specialty and expertise in certain military technologies or capabilities. + Military Rank of the U.S. Armed Forces that is above the Enlisted Ranks but below the Commissioned Officer Ranks, is appointed by warrant or Military Commission, and possession of which signifies that the rank holder is a technical specialist serving in a position requiring greater authority and responsibility than that of a senior Non-Commissioned Officer. + Warrant Officer ranks in the U.S. Armed Forces (except for in the Coast Guard), include both a W-1 'warrant officer' rank, and 4 grades of 'Chief Warrant Officer' (W-2 through W-5). + +The W-1 ranks are usually appointed via a warrant approved by the Department Secretary of the respective service. Less commonly, these ranks are appointed via a commission from either the service secretary, the Secretary of Defense, or the President. + +All appointments to the Chief Warrant Officer Ranks are made via a commission from the President. + +Appointment to warrant officer ranks of all grades must be authorized by the Senate. + U.S. Armed Forces Warrant Officer Rank + + + + + + + + + U.S. Armed Forces Warrant Officer Role + + + + + + + + + A Military Recruit Training Requirement that requires some U.S. Army soldier to complete the U.S. Army Basic Combat Training Program. + U.S. Army Basic Combat Training Requirement + + + + + + + + + + + + + + + + + + + + + + + U.S. Army General Officer who has some U.S. Army Brigadier General Rank and is the bearer of some U.S. Army Brigadier General Role. + U.S. Army Brigadier General + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia that bears some U.S. Army Brigadier General Rank. + U.S. Army Brigadier General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Army General Officer Rank that is directly above the U.S. Army Colonel Rank and directly below the U.S. Army Major General Rank, and which signifies that the rank holder bears the Authority Role of deputy commander to a U.S. Army Major General in a division. + https://www.federalpay.org/military/army/brigadier-general + U.S. Army Brigadier General Rank + General Officer Rank + + + + + + + + + A U.S. Army Brigadier General may also hold the unique billet of Adjutant General of the Army.* The Adjutant General is the chief administrative officer of the U.S. Army, serving directly under the Assistant Chief of Staff of the U.S. Army. Since 1984 this billet has been held by a brigadier general. But before then, it was a billet held by a Major General. +https://en.wikipedia.org/wiki/Adjutant_general +https://en.wikipedia.org/wiki/List_of_Adjutants_General_of_the_U.S._Army + +*Not to be confused with the Adjutant General of a particular major Army unit, such as a Division or Corps. This is the chief administrative officer of the unit, serving under the unit's Chief of Staff. + U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Brigadier General Rank, and which primarily involves service as a deputy commander of an Army Division, assisting in the oversight of the staff's planning and coordination of missions. + https://www.army.mil/ranks/ + U.S. Army Brigadier General Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Commissioned Officer who has some U.S. Army Captain Rank and is the bearer of some U.S. Army Captain Role. + U.S. Army Captain + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia that bears some U.S. Army Captain Rank. + U.S. Army Captain Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Army Company Grade Commissioned Officer Rank that is directly above the U.S. Army First Lieutenant Rank and directly below the U.S. Army Major Rank, and which signifies that rank holder's primary role is that of U.S. Army company commander, but that the rank holder may also serve as a staff officer within a U.S. Army battalion or brigade. + https://en.wikipedia.org/wiki/Captain_(United_States_O-3) + https://www.federalpay.org/military/army/captain + U.S. Army Captains spend some of their time in grade attending professional-development courses designed to prepare them for greater responsibilities at higher ranks. + +This work, as well as service as a staff officer within a battalion or brigade, is always done post completion of the job of company commander. + +[https://www.federalpay.org/military/army/captain] + U.S. Army Captain Rank + Company Grade Rank + + + + + + + + + U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Captain Rank, which primarily involves the command of a company sized unit of three to five platoons, but often also involves service as a battalion or brigade staff officer. + https://www.army.mil/ranks/ + When serving as a company commander, a U.S. Army Captain usually has a U.S. Army First Sergeant as his or her principal NCO assistant. + Shane Babcock + U.S. Army Captain Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Warrant Officer who has some U.S. Army Chief Warrant Officer 2 Rank and is the bearer of some U.S. Army Chief Warrant Officer 2 Role. + U.S. Army Chief Warrant Officer 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Warrant Officer Rank that is directly above the U.S. Army Warrant Officer 1 Rank and directly below the U.S. Army Chief Warrant Officer 3 Rank, and which signifies that the rank holder is an intermediate level technical and tactical expert, serving at the team through battalion levels, whose primary role is to develop proficiency in the operation and maintenance of systems linked directly to their AOC or MOS, and subsequently integrate their systems with other branch systems. + Paragraph 3-9: https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN31964-PAM_600-3-001-WEB-3.pdf + https://www.army.mil/ranks/#chief-warrant-officer-ranks-title + https://www.federalpay.org/military/army/chief-warrant-officer-2 + U.S. Army Chief Warrant Officer 2 Rank + Company Grade Rank + + + + + + + + + U.S. Army Chief Warrant Officer 2 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Warrant Officer who has some U.S. Army Chief Warrant Officer 3 Rank and is the bearer of some U.S. Army Chief Warrant Officer 3 Role. + U.S. Army Chief Warrant Officer 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Warrant Officer Rank that is directly above the U.S. Army Chief Warrant Officer 2 Rank and directly below the U.S. Army Chief Warrant Officer 4 Rank, and which signifies that the rank holder is an advanced level technical and tactical expert, whose primary duties are those of technical leader, trainer, operator, manager, maintainer, sustainer, integrator, and advisor at operations levels from team or detachment through brigade, but also performs branch-related duties, with a focus on integrating branch systems into larger Army systems as they become more senior. + Paragraph 3-9: https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN31964-PAM_600-3-001-WEB-3.pdf + https://www.army.mil/ranks/#chief-warrant-officer-ranks-title + https://www.federalpay.org/military/army/chief-warrant-officer-3 + U.S. Army Chief Warrant Officer 3 Rank + Field Grade Rank + + + + + + + + + U.S. Army Chief Warrant Officer 3 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Warrant Officer who has some U.S. Army Chief Warrant Officer 4 Rank and is the bearer of some U.S. Army Chief Warrant Officer 4 Role. + U.S. Army Chief Warrant Officer 4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Warrant Officer Rank that is directly above the U.S. Army Chief Warrant Officer 3 Rank and directly below the U.S. Army Chief Warrant Officer 5 Rank, and which signifies that rank holders are senior level technical and tactical experts who perform the duties of technical leader, manager, maintainer, sustainer, integrator, and advisor within battalion, brigade, division, corps, and echelons above corps operations, and who also serve in a wide variety of branch level positions, with a focus on integrating branch and Army systems into joint and national-level +systems as they become more senior. + Paragraph 3-9: +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN31964-PAM_600-3-001-WEB-3.pdf + https://www.army.mil/ranks/#chief-warrant-officer-ranks-title + https://www.federalpay.org/military/army/chief-warrant-officer-4 + U.S. Army Chief Warrant Officer 4 Rank + Field Grade Rank + + + + + + + + + U.S. Army Chief Warrant Officer 4 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Warrant Officer who has some U.S. Army Chief Warrant Officer 5 Rank and is the bearer of some U.S. Army Chief Warrant Officer 5 Role. + U.S. Army Chief Warrant Officer 5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Warrant Officer Rank that is directly above the U.S. Army Chief Warrant Officer 4 Rank and directly below the U.S. Army Second Lieutenant Rank, and which signifies that rank holders are master-level technical and tactical experts who perform the primary duties of technical leader, manager, integrator, and advisor within brigade, division, corps, echelons above corps, and major command operations, + Paragraph 3-9: +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN31964-PAM_600-3-001-WEB-3.pdf + https://www.army.mil/ranks/#chief-warrant-officer-ranks-title + https://www.federalpay.org/military/army/chief-warrant-officer-5 + U.S. Army Chief Warrant Officer 5 Rank + Senior Field Grade Rank + + + + + + + + + U.S. Army Chief Warrant Officer 5 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Commissioned Officer who has some U.S. Army Colonel Rank and is the bearer of some U.S. Army Colonel Role. + U.S. Army Colonel + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia that bears some U.S. Army Colonel Rank. + U.S. Army Colonel Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + What I want to say is that there is the army colonel role -- which is a position of authority within the chain of command between that of brigadier general and lieutenanta colonel -- and then there is the brigade commander role. As things are structured in the U.S. Army, typically the colonel role involves the brigade commander role, but not necessarily. + +Similarly, the teacher and mentor role are not the same, but sometimes the teacher role can involve a mentorship role? + U.S. Army Field Grade Commissioned Officer Rank that is directly above the U.S. Army Colonel Rank and directly below the U.S. Army Brigadier General Rank, and which signifies that the rank holder bears an Authority Role that typically involves the command of a U.S. army bridage. + https://www.federalpay.org/military/army/colonel + U.S. Army Colonel Rank + Senior Field Grade Rank + + + + + + + + + U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Colonel Rank, which primarily involves the command of brigade-sized units of three or more battalions (1,500-3,200 Soldiers), but also often involves service as a Division level Chief of Staff. + Field Manual 6-0, 'Commander and Staff Organization and Operations' + https://www.army.mil/ranks/ + When serving in the capacity of chief of staff of a division-level staff element, a U.S. Army Colonel usually serves under a U.S. Army Major General, as the latter usually serve as division commander. + +The Division Chief of Staff has executive management authority over its staff element, freeing the division commander "from routine details of staff operations and management of the headquarters." Field Manual 6-0, 'Commander and Staff Organization and Operations', section 2-43. + +Traditionally, a brigade was composed of two or more regiments, and was commanded by a U.S. Army Brigadier General. But this command structure has now become obsolete. Today "a brigade is roughly equal to or a little larger than a regiment, consisting of three to seven battalions." [https://en.wikipedia.org/wiki/Military_rank#Rank_and_unit_size] + Shane Babcock + U.S. Army Colonel Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Senior Non-Commissioned Officer who has some U.S. Army Command Sergeant Major Rank and is the bearer of some U.S. Army Command Sergeant Major Role. + U.S. Army Command Sergeant Major + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Non-Commissioned Officer Rank that is directly above the U.S. Army Sergeant Major Rank and directly below the Sergeant Major of the Army Rank, and which signifies that the rank holder is a senior NCO in the headquarters of units, commands or organizations at the battalion level or higher, serving as the senior enlisted adviser to the commanding officer. + Serves at the battalion level or higher (brigade, division, corps, combatant command, forces command). + Army Regulation 614-200, "Enlisted Assignments and Utilization Management." §7-14 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN14314_AR614-200_FINAL.pdf + Army Training Circular 7-22.7, "The Noncommissioned Officer Guide" §2.3 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN20340_TC%207-22x7%20FINAL%20WEB.pdf + "The CSM carries out, and enforces, policies and standards on performance, training, appearance and conduct of the organization. The CSM is the principal advisor to the commander, giving advice and making recommendations to the commander and staff in matters pertaining to the organization. The CSM is responsible for enlisted talent management and ensures all aspects of the NCO C3 are present in the operational domain." +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN20340_TC%207-22x7%20FINAL%20WEB.pdf + U.S. Army Command Sergeant Major Rank + + + + + + + + + Need to consider what is said about this role in FM 6-0, Commander and Staff Organization and Operations (1-31). + U.S. Army Non-Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Command Sergeant Rank, which the Agent realizes by serving as the senior non-commissioned officer of the command at the battalion level or higher, carrying out policies and standards, and advising the unit commander on the performance, training, appearance, and conduct of enlisted Soldiers in the unit. + Army Regulation 600-20, 'Army Command Policy', 2-19b(2): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN32931-AR_600-20-004-WEB-6.pdf + https://www.army.mil/ranks/ + U.S. Army Command Sergeant Major Role + + + + + + + + + + + + + + + + + + + + + + + A Commissioned Officer who is a member of the United States Army, has some U.S. Army Commissioned Officer Rank, and is the bearer of some U.S. Army Commissioned Officer Role. + U.S. Army Commissioned Officer + + + + + + + + + http://wwww.ontologylibrary.mil/CommonCore/Mid/MilitaryRanksOntology + U.S. Army Commissioned Officer Rank + + + + + + + + + A Commissioned Officer Role which inheres in an Agent in virtue of that Agent holding some U.S. Army Commissioned Officer Rank, and which primarily involves the command, or deputy command, of some U.S. Army unit (a platoon or larger unit). + A U.S. Army Commissioned Officer Role, --such as the U.S. Army Major Role -- is a role that involves service within certain roles that are designated for officers holding the corresponding rank --for example, the U.S. Army Major Rank. The primary role for which U.S. Army commissioned officers are designated is that of unit commander, with officers of successively higher ranks generally commanding successively larger units. Thus, for example, a captain usually commands a company sized unit, a lieutenant colonel usually commands battalion sized unit (of 3-5 companies), a colonel usually commands a brigade sized unit (of 3 or more battalions), and a major general usually commands a division (of 3 brigades). Though, in some cases an officer of lower rank may command a unit normally designated for an officer of higher rank, for instance a senior First Lieutenant may be selected to command a company in lieu of an available captain. + +Commissioned officers also often serve in other high-level positions, such as executive officer (second-in-command) to the unit-commander, within echelons immediately above those for which they typically serve as commanders. For example, while a lieutenant colonel typically commands a battalion sized unit, they also may serve within a brigade as executive officer to the brigade's commanding colonel. + U.S. Army Commissioned Officer Role + + + + + + + + + U.S. Army Commissioned Officer Rank that signifies that the rank holder bears a command role in a company or company sub-unit (i.e. platoon). + U.S. Army Company Grade Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Junior Non-Commissioned Officer who has some U.S. Army Corporal Rank and is the bearer of some U.S. Army Corporal Role. + U.S. Army Corporal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Non-Commissioned Officer Rank that is directly above the U.S. Army Specialist Rank and directly below the U.S. Army Sergeant Rank, and which signifies that the rank holder's job is to serve as a team leader of 2-5 soldiers. + The job of team leader has often been given to Army Specialists because that rank has usually been given out far more often than the rank of Army Corporal. (Although the latter rank has more responsibilities, both ranks have the same pay level). But officially the role of team leader is the responsibility of Corporals, since that is the job of NCOs. [https://www.federalpay.org/military/army/corporal] + +This probably has to do with the fact that these ranks are both in the O-4 pay grade, and traditionally a Specialist was able to skip the rank of Corporal and be promoted straight to the rank of Sergeant. + +Of course, this will probably change given the Army's recent policy shift that requires that all enlisted soldiers serve in the Corporal rank before moving to Sergeant. [https://www.military.com/daily-news/2021/06/07/major-promotion-shift-all-soldiers-will-serve-corporal-moving-sergeant.html] + U.S. Army Corporal Rank + + + + + + + + + A U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Corporal Rank, and which the Agent realizes by leading a team of Junior Enlisted Soldiers, overseeing their individual training, personal appearance, and cleanliness. + https://www.army.mil/ranks/ + A team consists of 4 soldiers, including the NCO in charge. + U.S. Army Corporal Role + + + + + + + + + An Authority Role inhering in some Agent in virtue of that Agent holding an office within the U.S. Department of the Army. + U.S. Department of the Army Authority Role + + + + + + + + + U.S. Army Commissioned Officer Rank that signifies that the rank holder bears either a command role, or staff officer role, within either a battalion or brigade-sized unit. + U.S. Army Field Grade Commissioned Officer Rank + + + + + + + + + Need to fit field grade warrant officers here. But avoid multiple inheritance. + U.S. Army Field Grade Officer + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Commissioned Officer who has some U.S. Army First Lieutenant Rank and is the bearer of some U.S. Army First Lieutenant Role. + U.S. Army First Lieutenant + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia that bears some U.S. Army First Lieutenant Rank. + U.S. Army First Lieutenant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Army Company Grade Commissioned Officer Rank that is directly above the U.S. Army Second Lieutenant Rank and directly below the U.S. Army Captain Rank, and which signifies that the rank holder bears an Authority Role that primarily involves the command of specialized weapons platoons, but which often also involves service as the executive officer of a company-sized unit. + https://www.army.mil/ranks/ + https://www.federalpay.org/military/army/first-lieutenant + Once a U.S. Army First Lieutenant has completed their time in the rank serving as the leader of a platoon, they will usually serve as a staff officer preparing and competing for promotion to the U.S. Army Captain Rank. + +While command of a company-sized unit is officially designated for holders of the U.S. Army Captain Rank, in lieu of an available U.S. Army Captain, senior U.S. Army First Lieutenants may be selected for command of a company-sized unit. [https://en.wikipedia.org/wiki/Company_commander] + Shane Babcock + U.S. Army First Lieutenant Rank + Company Grade Rank + + + + + + + + + A U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army First Lieutenant Rank, which primarily involves the command of more specialized weapons platoons and indirect fire computation centers, but often also involves service as the executive officer of a company-sized unit. + https://www.army.mil/ranks/ + In the command of a platoon, a First Lieutenant is assisted by a Platoon Sergeant, normally a Sergeant First Class. + U.S. Army First Lieutenant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Senior Non-Commissioned Officer who has some U.S. Army First Sergeant Rank and is the bearer of some U.S. Army First Sergeant Role. + U.S. Army First Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Usually serves as principal NCO for a company sized unit of around 150 soldiers. + A U.S. Army Non-Commissioned Officer Rank that is directy above the U.S. Army Master Sergeant Rank and directly below the U.S. Army Sergeant Major Rank, and which signifies that the rank holder serves as the senior enlisted advisor to a commanding officer at the company level, handling the leadership and professional development of all soldiers in the company, and serving as the ultimate enforcer of standard and discipline. + Army Regulation 600–20, Paragraph 2-19b(3) +https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN32931-AR_600-20-004-WEB-6.pdf + https://en.wikipedia.org/wiki/First_sergeant + https://www.federalpay.org/military/army/first-sergeant + https://www.military.com/army/enlisted-ranks.html + U.S. Army First Sergeant Rank + + + + + + + + + A U.S. Army Non-Commissioned Officer Role that inheres in an Agent who holds the U.S. Army First Sergeant Rank and who is the senior non-commissioned officer of an Army Company responsible for instructing subordinate sergeants, advising the company commander, assisting in the training and professional development of all the unit's enlisted soldiers, and initiating disciplinary procedures. + https://en.wikipedia.org/wiki/First_sergeant#United_States_Army + https://www.army.mil/ranks/ + U.S. Army First Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + U.S. Army General Officer who has some U.S. Army General Rank and is the bearer of some U.S. Army General Role. + U.S. Army General + + + + + + + + + + + + + + + + + + + U.S. Army General Officer + + + + + + + + + requires review + U.S. Army Commissioned Officer Rank that signifies that the rank holder bears either a command role, or staff officer role, at the Division level or higher. + U.S. Army General Officer Rank + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia that bears some U.S. Army General Rank. + U.S. Army General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia Quality Pattern, inhering in some U.S. Army General Rank Insignia, that concretizes some U.S. Army General Rank. + U.S. Army General Rank Insignia Quality Pattern + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Army General Officer Rank that is directly above the U.S. Army Lieutenant General Rank and directly below the General of the Army Rank, and which signifies that: i) the rank holder bears an Authority Role involving a command at one of the highest levels of the U.S. Army, such as in TRADOC or Forces Command; ii) the rank holder may, if qualified, serve in the Vice Chief of Staff of the Army Role or Chief of Staff of the Army Role, or serve as a member of the U.S. Department of Defense Joint Chiefs of Staff. + https://en.wikipedia.org/wiki/General_(United_States) + https://www.federalpay.org/military/army/general + U.S. Army General Rank + General Officer Rank + + + + + + + + + U.S. Army General Role + + + + + + + + + A Joint Duty Assignment Requirement for Promotion to General-Officer Rank or Flag Officer Rank that requires some U.S. Army Commissioned Officer at the O-6 pay grade to have completed a Joint Duty Assignment in which the unit they were responsible for commanding was made up of service members from two or more branches of the U.S. military, as a condition for promotion to some O-7 U.S. Army General-Officer Rank. + U.S. Army Joint Duty Assignment Requirement for Promotion to General-Officer Rank + true + + + + + + + + + A Junior Enlisted Rank that is held by some U.S. Army enlisted soldier. + U.S. Army Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + A Junior Enlisted Personnel who is a member of the U.S. Army, has some U.S. Army Junior Enlisted Rank, and is the bearer of some U.S. Army Junior Enlisted Soldier Role. + U.S. Army Junior Enlisted Soldier + + + + + + + + + See 4-14a of Army Regulation 600-20, 'Army Command Policy' + U.S. Army Junior Enlisted Soldier Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Non-Commissioned Officer who has one of the U.S. Army Non-Commissioned Officer Ranks with a U.S. uniformed services grade of E-4, E-5, or E-6. + U.S. Army Junior Non-Commissioned Officer + + + + + + + + + U.S. Army Junior Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Commissioned Officer who has some U.S. Army Lieutenant Colonel Rank and is the bearer of some U.S. Army Lieutenant Colonel Role. + U.S. Army Lieutenant Colonel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Often selected for command of a bridage in lieu of an available colonel. + U.S. Army Field Grade Commissioned Officer Rank that is directly above the U.S. Army Major Rank and directly below the U.S. Army Colonel Rank, and which signifies that the rank holder bears an Authority Role that typically involves the role of U.S. Army battalion commander. + https://www.federalpay.org/military/army/lieutenant-colonel + U.S. Army Lieutenant Colonel Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia that bears some U.S. Army Lieutenant Colonel Rank. + U.S. Army Lieutenant Colonel Rank Insignia + + + + + + + + + U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Lieutenant Colonel Rank, which primarily involves the command of a battalion-sized unit of three to five companies, but may also involve service as a brigade or task force Executive Officer. + Field Manual 6-0, 'Commander and Staff Organization and Operations' + https://www.army.mil/ranks/ + A brigade Executive Officer is second-in-command to the brigade commander, typically a U.S. Army Colonel. Thus, when serving in the capacity of brigade Executive Officer, a U.S. Army Lieutenant Colonel typically serves under an officer of the next higher rank. This, of course, is by design. Serving as second-in-command to an officer of the next higher rank is part of the the Lieutenant Colonel's preparation for advancement to that rank. + +As brigade Executive Officer, the Lieutenant Colonel has executive management authority over its staff element, freeing the division commander "from routine details of staff operations and management of the headquarters." Field Manual 6-0, 'Commander and Staff Organization and Operations', section 2-43. + Shane Babcock + U.S. Army Lieutenant Colonel Role + + + + + + + + + + + + + + + + + + + + + + + U.S. Army General Officer who has some U.S. Army Lieutenant General Rank and is the bearer of some U.S. Army Lieutenant General Role. + U.S. Army Lieutenant General + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia that bears some U.S. Army Lieutenant General Rank. + U.S. Army Lieutenant General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Army General Officer Rank that is directly above the U.S. Army Major General Rank and directly below the U.S. Army General Rank, and which signifies that the rank holder bears an Authority Role involving service in higher commands, such as combatant commands, or as a staff officer in the highest levels of the U.S. Army, such as in TRADOC or Forces Command. + https://www.federalpay.org/military/army/lieutenant-general + U.S. Army Lieutenant General Rank + General Officer Rank + + + + + + + + + Though typically commanded by Lieutenant Generals, Army Corps are also sometimes commanded by Major Generals, and even Brigadier Generals. + Definition in progress + U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Lieutenant General Rank, and which primarily involves the command of an Army Corps of 2-5 Divisions. + https://www.army.mil/ranks/ + "Command by commanders in the grade of lieutenant general. Army commanders in the grade of lieutenant general or above may not assume command of Army installations, except when the installation serves as the location for a corps or higher headquarters. The CSA must approve exceptions to this policy and HQDA (DACS–GOM) will issue orders to implement the exception." DA 600-20 Army Command Policy + U.S. Army Lieutenant General Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Commissioned Officer who has some U.S. Army Major Rank and is the bearer of some U.S. Army Major Role. + U.S. Army Major + + + + + + + + + + + + + + + + + + + + + + + U.S. Army General Officer who has some U.S. Army Major General Rank and is the bearer of some U.S. Army Major General Role. + U.S. Army Major General + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia that bears some U.S. Army Major General Rank. + U.S. Army Major General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Army Major Generals serve as the commanders of the posts at which their division are based. + U.S. Army General Officer Rank that is directly above the U.S. Army Brigadier General Rank and directly below the U.S. Army Lieutenant General Rank, and which signifies that the rank holder bears the Authority Role of U.S. Army division commander. + https://www.federalpay.org/military/army/major-general + U.S. Army Major General Rank + General Officer Rank + + + + + + + + + A U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Major General Role, and which the Agent realizes by serving as the commander of an Army Division of three brigades. + https://www.army.mil/ranks/ + U.S. Army Major General Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Army Field Grade Commissioned Officer Rank that is directly above the U.S. Army Captain Rank and directly below the U.S. Army Lieutenant Colonel Rank, and which signifies that the rank holder bears an Authority Role that typically involves the role of either operations officer or executive officer in a U.S. Army battalion or brigade. + https://www.federalpay.org/military/army/major + U.S. Army Major Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia that bears some U.S. Army Major Rank. + U.S. Army Major Rank Insignia + + + + + + + + + Requires review + +What is a 'primary staff officer'? I don't find this in the army regulations. Is it another term for executive officer? [SB 11/18/21] + +Seems to be 'principal staff officer' from FM 6-0, Commander and Staff Organization and Operations + +Sections 2-41 and 2-42: at the battalion and brigade levels, the principal staff officer to the unit commander is called the executive officer. + +Not sure how to interpret this: +"There are three basic types of staff officers: coordinating, special, and personal. A principal staff officer—who may be a coordinating, special, or personal staff officer for the commander—leads each staff section." + +Does this mean there is a principal staff officer in the sense of XO, but also subordinate to them on the staff also a separate principal staff officer for each of the 3 types of "staff section" that leads that section? + +Or does it mean that there is THE one principal staff officer, who can be one of these 3 types, that leads all the sections? + +2-44: "Coordinating staff officers are the commander’s principal staff assistants who advise, plan, and coordinate actions of special staff officers within their area of expertise. They are directly accountable to the COS or XO and have functional responsibilities over one or a combination of fields of interest." +-This implies that there are various principal staff officers, who are directly subordinate to the XO, the top of principal staff officer. + +Often serves as the operations officer, S-3, at battalion or brigade levels. On the role of an S-3, see FM 6-0, section 2-52. 2-52 also shows overlap and differences from the G-3, assistant chief of staff role: Major may serve as G-3 at the Division level and up, where these have G-staffs, the G standing for the staffs of orgs led by general officers. Division commanded by Major General. + +[SB 06/22/22] + "In the U.S. Army, a task force is a battalion-sized (usually, although there are variations in size) ad hoc unit formed by attaching smaller elements of other units." https://en.wikipedia.org/wiki/Task_force#Army + Info taken from: https://en.wikipedia.org/wiki/Major_(United_States) + +"majors command augmented companies in Combat Service and Service Support units. U.S. Army majors also command Special operations companies, such as U.S. Army Special Forces companies, Civil Affairs companies, Military Information Support Operations companies, and certain types of separate, numbered vice lettered, Military Intelligence companies." + +Why do they usually only command special operations, and not basic Army tactical units? + +Post Korean War, "regiments with organic battalions were no longer used as tactical units. Battalions attached to brigades replaced the regiment. Battalions commanded by lieutenant colonels became the US Army's basic tactical unit. As a result, there were only a limited number of command positions for majors although Medical, Special Forces and Aviation companies are usually commanded by majors." + U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Major Rank, which typically involves service as a Battalion Executive Officer or Battalion Operations Officer, but also involves service as a principal staff officer for brigade and task force commands in the areas of personnel, intelligence, operations, or logistics. + Field Manual 6-0, 'Commander and Staff Organization and Operations'. + https://www.army.mil/ranks/ + The U.S. Army Major Role typically involves service as a Battalion Executive Officer, in which case a U.S. Army Major would serve directly under the battalion commander, usually a U.S. Army Lieutenant Colonel. + +The Battalion Executive Officer has executive management authority over its staff, freeing the Battalion commander "from routine details of staff operations and management of the headquarters." Field Manual 6-0, 'Commander and Staff Organization and Operations', section 2-43. + U.S. Army Major Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Senior Non-Commissioned Officer who has some U.S. Army Master Sergeant Rank and is the bearer of some U.S. Army Master Sergeant Role. + U.S. Army Master Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Requires discussion + A U.S. Army Non-Commissioned Officer Rank that is directly above the U.S. Army Sergeant First Class Rank and directly below the U.S. Army First Sergeant Rank, and which signifies that the rank holder serves as the principal NCO at the battalion level and often higher. + https://www.military.com/army/enlisted-ranks.html + U.S. Army Master Sergeant Rank + + + + + + + + + A U.S. Army Non-Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Master Sergeant Rank, and which the Agent realizes by serving as the principal non-commissioned officer at the battalion or brigade level, providing subject matter expertise in their military occupational specialty. + https://en.wikipedia.org/wiki/Master_sergeant#U.S._Army + https://www.army.mil/ranks/ + U.S. Army Master Sergeant Role + + + + + + + + + Perhaps this should be changed to: "Noncommissioned Officer Professional Development System requirement" in line with paragraph 1-29 of Army Regulation 600–8–19. + An Enlisted Professional Military Education Requirement for Promotion in Military Rank that requires some U.S. Army enlisted soldier to complete some Enlisted Professional Military Education Course, as a condition for promotion to some U.S. Army Rank. + U.S. Army Enlisted Professional Military Education Requirement + + + + + + + + + + + + + + + + + + + + + + + A Non-Commissioned Officer who is a member of the U.S. Army. + U.S. Army Non-Commissioned Officer + + + + + + + + + A Non-Commissioned Officer Rank that is used by the U.S. Army. + U.S. Army Non-Commissioned Officer Rank + + + + + + + + + A Non-Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding a U.S. Army Non-Commissioned Officer Rank, which the Agent realizes by leading Soldiers of lower rank, training and educating those Soldiers, caring for those Soldiers and their equipment, and by maintaining and enforcing U.S. Army standards. + Army Regulation 600-8-19, paragraph 1-6a. +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + "Our NCOs (1) lead, (2) train and educate; (3) care for Soldiers and equipment; and (4) maintain and enforce standards. These four roles establish the foundation for NCO development and serve as measurements of success throughout an NCO’s career. Leaders must continually assess how Soldiers perform in their current rank and, when successful, identify those who show the capacity and potential, with training and education, to perform at higher levels of responsibility." [Army Regulation 600-8-19, paragraph 1-6a.] + U.S. Army Non-Commissioned Officer Role + + + + + + + + + U.S. Army Physical Fitness Requirement for Promotion in Military Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Junior Enlisted Soldier who has some U.S. Army Private Rank and is the bearer of some U.S. Army Private Role. + U.S. Army Private + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Junior Enlisted Soldier who has some U.S. Army Private First Class Rank and is the bearer of some U.S. Army Private First Class Role. + U.S. Army Private First Class + + + + + + + + + + + + + + + + + + + U.S. Army Junior Enlisted Rank Insignia that bears some U.S. Army Private First Class Rank. + U.S. Army Private First Class Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enlisted soldiers entering Basic Combat Training with prior military training, an Associates Degree, or the rank of Eagle Scout in the Boy Scouts, are entitled to automatic promotion to the U.S. Army Private First Class Rank. + A U.S. Army Junior Enlisted Rank that is directly above the U.S. Army Private Second Class Rank and directly below the U.S. Army Specialist Rank, and which signifies that the rank holder's job is to begin developing their technical and leadership skills, and to carry out the orders issued to them. + https://www.military.com/army/enlisted-ranks.html + U.S. Army Private First Class Rank + + + + + + + + + U.S. Army Private First Class Role + + + + + + + + + U.S. Army Private Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Junior Enlisted Soldier who has some U.S. Army Private Second Class Rank and is the bearer of some U.S. Army Private Second Class Role. + U.S. Army Private Second Class + + + + + + + + + + + + + + + + + + + U.S. Army Junior Enlisted Rank Insignia that bears some U.S. Army Private Second Class Rank. + U.S. Army Private Second Class Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PV2 + A U.S. Army Private Rank that is directly above the U.S. Army Private Rank and directly below the U.S. Army Private First Class Rank, and which signifies that the rank holder's job is to apply the new skills and knowledge learned during Basic Combat Training and to carry out the orders issued to them. + https://www.army.mil/ranks/ + https://www.military.com/army/enlisted-ranks.html + This rank is not customarily referred to as 'Private Second Class Rank' anymore, but for labelling purposes I decided on this rather than using 'Private PV1 Rank' and 'Private PV2 Rank' for the first two Army ranks. -SB + U.S. Army Private Second Class Rank + + + + + + + + + U.S. Army Private Second Class Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This rank has no insigna. + PV1 + A U.S. Army Junior Enlisted Rank that is lowest rank in the U.S. Army, directly below the U.S. Army Private Second Class Rank, and which signifies that the rank holder is a trainee in Basic Combat Training whose primary role is to carry out the orders issued to them. + https://www.army.mil/ranks/ + https://www.military.com/army/enlisted-ranks.html + This rank is designated for new recruits, but the rank is also occassionally assigned to Soldiers as a demotion after a disciplinary action has been taken. + U.S. Army Private Rank + + + + + + + + + List of soldiers that have been recommended for promotion to ranks SGT through SGM. + +Used only for Active Reserve Elements, Troop Unit Programs, and Multi-component units. + +Active Guard Reserve promotions, just like Regular Army promotions, use promotion recommended lists centralized to Headquarters, Department of the Army. + U.S. Army Reserve Permanent Promotion Recommended List + + + + + + + + + An Act of Promotion to U.S. Army Master Sergeant Rank wherein some U.S. Army Reserve Sergeant First Class is advanced to the U.S. Army Master Sergeant Rank by some promotion authority. + Act of Promotion to U.S. Army Master Sergeant Rank (USAR) + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Commissioned Officer who has some U.S. Army Second Lieutenant Rank and is the bearer of some U.S. Army Second Lieutenant Role. + U.S. Army Second Lieutenant + + + + + + + + + + + + + + + + + + + U.S. Army Commissioned Officer Rank Insignia that bears some U.S. Army Second Lieutenant Rank. + U.S. Army Second Lieutenant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "While serving in the leadership position of platoon leader, Second Lieutenants have five senior non-commissioned officers (NCO's), one platoon sergeant (E-6 or E-7) and four squad leaders (E-5 or E-6) serving underneath them. Underneath these NCO's, there is a variable amount of junior NCO's (E-4 or E-5) serving in other leadership positions. The rest of the platoon--that is to say the bulk of the platoon--is made of soldiers (E-1 to E-4). The job of the platoon leader is to plan training for the unit, supervise its execution, and lead the unit in all its actions, through the use of orders and disciplined initiative, executed by the NCO's in the platoon on behalf of the platoon leader, a Second Lieutenant." + +https://www.federalpay.org/military/army/second-lieutenant + U.S. Army Company Grade Commissioned Officer Rank that is directly above the U.S. Army Chief Warrant Officer 5 Rank and directly below the U.S. Army First Lieutenant Rank, and which signifies that the rank holder bears an Authority Role, serving either as a staff officer preparing to become a platoon commander, or as platoon commander (having completed the required training while a staff officer). + https://www.federalpay.org/military/army/second-lieutenant + The rank holder must complete their work as a staff officer before assuming the position of platoon commander. Service as a platoon leader is required for promotion to the next rank of first lieutenant. + U.S. Army Second Lieutenant Rank + Company Grade Rank + + + + + + + + + A U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Second Lieutenant Rank, and which the Agent realizes by commanding a platoon consisting of two or more squads (16-44 Soldiers). + https://www.army.mil/ranks/ + In the command of a platoon, a Second Lieutenant is assisted by a Platoon Sergeant, normally a Sergeant First Class. + U.S. Army Second Lieutenant Role + + + + + + + + + Some form of security clearance is required for promotion to ranks of SPC through SGM. See page 10 of: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + A Security Clearance Requirement for Promotion in Military Rank that requires some U.S. Army soldier to obtain the appropriate security clearance, as a condition of promotion to some U.S. Army Military Rank. + U.S. Army Security Clearance Requirement for Promotion in Military Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Non-Commissioned Officer who has one of the U.S. Army Non-Commissioned Officer Ranks with a U.S. uniformed services grade of E-7, E-8, or E-9. + U.S. Army Senior Non-Commissioned Officer + + + + + + + + + U.S. Army Senior Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Junior Non-Commissioned Officer who has some U.S. Army Sergeant Rank and is the bearer of some U.S. Army Sergeant Role. + U.S. Army Sergeant + + + + + + + + + + + + + + + + + + + + + + + U.S. Army Senior Non-Commissioned Officer who has some U.S. Army Sergeant First Class Rank and is the bearer of some U.S. Army Sergeant First Class Role. + U.S. Army Sergeant First Class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From after WW1, up until 1948, this rank was named 'technical sergeant'. + Is two ranks below: + +U.S. Air Force Senior Master Sergeant, U.S. Space Force Senior Master Sergeant, U.S. Coast Guard Senior Chief Petty Officer and U.S. Navy Chief Petty Officer. Call this Group A. + +The ranks in Group A are each directly above the rank in their respective services that is equivalent in rank to U.S. Army Sergeant First class. + +But U.S. Army Sergeant First Class is also one rank directly below the U.S. Army Master Sergeant Rank, which has no equivalent rank in the U.S. Air Force, Space Force, Navy and Coast Guard. In this case, U.S. Army Sergeant First Class is two ranks below U.S. Army First Sergeant, which is the U.S. Army rank that is equivalent in rank to the ranks in Group A. It is for this reason that we say that U.S. Army Sergeant First Class is two ranks below those ranks. + When serving in the role of Platoon Sergeant, a Sergeant First Class generally has several Staff Sergeants who work under their direct leadership. [https://www.military.com/army/enlisted-ranks.html] + A U.S. Army Non-Commissioned Officer Rank that is directly above the U.S. Army Staff Sergeant Rank and directly below the U.S. Army Master Sergeant Rank, and which signifies that the rank holder bears an Authority Role, typically serving in the role of Platoon Sergeant at the company level, or Battalion Operations Non-Commissioned Officer in Charge at the battalion level. + https://en.wikipedia.org/wiki/Sergeant_first_class + https://www.military.com/army/enlisted-ranks.html + U.S. Army Sergeant First Class Rank + + + + + + + + + requires review + A U.S. Army Non-Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Sergeant First Class Rank, and which the Agent typically realizes by serving as a Platoon Sergeant, assisting, and advising the platoon leader, while also training and caring for the unit's subordinate Soldiers. + https://www.army.mil/ranks/ + U.S. Army Sergeant First Class Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Senior Non-Commissioned Officer who has some U.S. Army Sergeant Major Rank and is the bearer of some U.S. Army Sergeant Major Role. + U.S. Army Sergeant Major + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Senior Non-Commissioned Officer who has some U.S. Army Sergeant Major of the Army Rank and is the bearer of some U.S. Army Sergeant Major of the Army Role. + U.S. Army Sergeant Major of the Army + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Since Sergeant Majors typically have at least 18 years of experience serving as a U.S. Army enlisted soldier, they often provide the commanding officer with valuable insight and advice on how unit operations could be better conducted in the future. Sergeant Majors also supervise all those enlisted soldiers that are appointed to staff positions underneath them within the unit. [https://www.federalpay.org/military/army/sergeant-major] + There is a puzzle about how this relates to the nearest Navy and Coast Guard Ranks. + +Two ranks higher than: U.S. Air Force/Space Force Senior Master Sergeant Rank and U.S. Navy/Coast Guard Senior Chief Petty Officer? + A U.S. Army Non-Commissioned Officer Rank that is directly above the U.S. Army First Sergeant Rank and directly below the Command Sergeant Major Rank, and which signifies that the rank holder serves as a staff officer at the battalion level or higher (brigade, division, corps, combatant command, forces command), helping to plan, resource and conduct unit missions. + https://www.federalpay.org/military/army/sergeant-major + U.S. Army Sergeant Major Rank + + + + + + + + + Double check: sources say "a primary staff officer". My elucidation seems to imply that it is the Chief of Staff/Executive Officer. But it could also be a principal staff officer of one of the 3 kinds of staff sections. +-FM 6-0, Commander and Staff Organization and Operations (2-41) + A U.S. Army Non-Commissioned Officer Role that inheres in an Agent who holds the U.S. Army Sergeant Major Rank, and which the Agent realizes by serving as the senior enlisted advisor to a primary staff officer at the battalion level or higher, advising on policy development and providing analytical review of regulatory guidance. + Here 'primary staff officer' refers to a commissioned officer serving in the staff element of an Army headquarters. At the brigade level, the primary staff officer would typically be a Major. + U.S. Army Sergeant Major Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + In practice, many soldiers with the rank of SGT command squads. This of course, would seem confusing, as Staff Sergeants, who outrank Sergeants, are typically in command of squads, with one or more Sergeants serving directly under their direct leadership. + +There is a reason for why most Sergeants also command squads: "according the US Army's Modification Table of Organization and Equipment (MTO&E), Sergeants are supposed to serve as team leaders, while the next highest rank, that of Staff Sergeant, is supposed to serve as squad leaders. + +However, given the number of sergeants serving the in the Army and the rate at which promotion works, it has become accepted practice for a Sergeant to serve as a squad leader more often than a team leader." [https://www.federalpay.org/military/army/sergeant] + While the U.S. Army Sergeant Rank is directly below the U.S. Army Staff Sergeant Rank, it is above the U.S. Air Force Staff Sergeant Rank. This is because the Air Force Staff Sergeant Rank is the lowest non-commissioned officer rank in that service (and Army Staff Sergeant Rank is third lowest in the Army). + A U.S. Army Non-Commissioned Officer Rank that is directly above the U.S. Army Corporal Rank and directly below the U.S. Army Staff Sergeant Rank, and which signifies that a holder of the rank typically serves as the leader of a section or team, and occassionally as a squad leader. + https://www.army.mil/ranks/ + U.S. Army Sergeant Rank + + + + + + + + + U.S. Army Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Sergeant Rank, and which the Agent typically realizes by leading a team of 4 Soldiers, overseeing them in their daily tasks, while insuring they are each trained to competency in their Military Occupational Specialty and the unit is trained to function in its primary mission roles. + https://www.army.mil/ranks/ + Like the U.S. Army Corporal, the Sergeant is responsible for overseeing the individual training, personal appearance, and cleanliness of the Junior Soldiers under their leadership. + +In practice, many soldiers with the rank of SGT command squads. This of course, would seem confusing, as Staff Sergeants, who outrank Sergeants, are typically in command of squads, with one or more Sergeants serving directly under their direct leadership. + +There is a reason for why most Sergeants also command squads: "according the US Army's Modification Table of Organization and Equipment (MTO&E), Sergeants are supposed to serve as team leaders, while the next highest rank, that of Staff Sergeant, is supposed to serve as squad leaders. + +However, given the number of sergeants serving the in the Army and the rate at which promotion works, it has become accepted practice for a Sergeant to serve as a squad leader more often than a team leader." [https://www.federalpay.org/military/army/sergeant] + U.S. Army Sergeant Role + + + + + + + + + + + + + + + A U.S. Army Enlisted Professional Military Education Requirement that requires a U.S. Army Master Sergeant, or a U.S. Army First Sergeant, to have graduated the U.S. Army Sergeants Major Course, in order to be eligible for promotion to the U.S. Army Sergeant Major Rank. + Army Regulation 600–8–19, Paragraph 1-29a(b)(9): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + U.S. Army Sergeants Major Course Requirement + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Junior Enlisted Soldier who has some U.S. Army Specialist Rank and is the bearer of some U.S. Army Specialist Role. + U.S. Army Specialist + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Notice that being equivalent in rank to Senior Airman Rank does not imply that an Army Specialist is one rank below the next highest Air Force rank that is directly above Senior Airman, namely Staff Sergeant. Falling directly under Army Corporal, the Army Specialist is two ranks below the Army Sergeant Rank, which is the equivalent of the Air Force Staff Sergeant Rank. So it is two ranks below Air Force Staff Sergeant. + Though not an officer rank, persons holding this rank have basic management duties and may command soldiers of lower rank: +https://www.military-ranks.org/army/specialist#:~:text=Specialist%20is%20a%20junior%20enlisted,are%20the%20responsibility%20of%20Corporals. + +The use of 'may command' at the above link makes me unsure of whether the CLASS should be said to have an Authority Role (it may just be some instances of specialist take on authority roles). + +"A soldier in the Army holding the rank of Specialist holds the first rank with leadership responsibilities. Unofficially known as a team leader, Specialists manage a small number of other soldiers of lower rank, privates of all class." [https://thestargateprogram.fandom.com/wiki/United_States_Army_Enlisted_Ranks} + A U.S. Army Junior Enlisted Rank that is directly above the U.S. Army Private First Class Rank and directly below the U.S. Army Corporal Rank, and which signifies that: i) the rank holder manages a small number of U.S. Army privates; ii) the rank holder is recognized as an expert in the specialized knowledge of individual soldiers in all capacities. + https://www.federalpay.org/military/army/specialist + Holders of the U.S. Army Specialist Rank are unofficially known as team leaders. While in practice, Specialists do manage team sized groups of lower ranking privates, Specialists are not NCOs, unlike U.S. Army Corporals who share the same pay grade of E-4. + +This is likely due to a combination of three factors: i) the Army's need to fill team leader slots; ii) the fact that when advancing from the E-3 paygrade most soldiers holding the rank of Private First Class opt for promotion to the rank of Specialist rather than that of Corporal, as the rank of Corporal involves more responsibilities while offering the same pay level as that of a Specialist; iii) traditionally, a soldier holding the rank of Specialist can skip the rank of Corporal and move directly from Specialist to Sergeant. + +This may change in the future given new Army policy on promotions to the Sergeant rank: https://www.military.com/daily-news/2021/06/07/major-promotion-shift-all-soldiers-will-serve-corporal-moving-sergeant.html + U.S. Army Specialist Rank + + + + + + + + + U.S. Army Specialist Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Junior Non-Commissioned Officer who has some U.S. Army Staff Sergeant Rank and is the bearer of some U.S. Army Staff Sergeant Role. + U.S. Army Staff Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + A U.S. Army Non-Commissioned Officer Rank that is directly above the U.S. Army Sergeant Rank and directly below the U.S. Army Sergeant First Class Rank, and which signifies that the rank holder bears an Authority Role that primarily involves leadership of a squad of 8 to 16 Soldiers. + https://en.wikipedia.org/wiki/Staff_sergeant#U.S._Army + https://www.federalpay.org/military/army/staff-sergeant + A U.S. Army Staff Sergeant often has one or more U.S. Army Sergeants that work under their direct leadership. + +A U.S. Army Staff Sergeant may also serve as a Platoon Sergeant in the absence of a U.S. Army Sergeant First Class. + U.S. Army Staff Sergeant Rank + + + + + + + + + A U.S. Army Non-Commissioned Officer Role that inheres in an Agent in virtue of that Agent holding the U.S. Army Staff Sergeant Rank, and which the Agent typically realizes by leading a squad of 8 to 16 Soldiers, developing and training those Soldiers in Military Occupational Specialty skills and unit missions, while enforcing standards. + https://www.army.mil/ranks/ + A U.S. Army Staff Sergeant often has one or more U.S. Army Sergeants under their leadership, the latter leading the individual teams which compose squad. The Staff Sergeant is in charge of training and developing not only the Junior Enlisted Soldiers in their squad, but the subordinate Sergeants as well. + U.S. Army Staff Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Armed Forces Warrant Officer who is a member of the U.S. Army, has some U.S. Army Warrant Officer Rank, and is the bearer of some U.S. Army Warrant Officer Role. + U.S. Army Warrant Officer + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Warrant Officer who has some U.S. Army Warrant Officer 1 Rank and is the bearer of some U.S. Army Warrant Officer 1 Role. + U.S. Army Warrant Officer 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Army Warrant Officer Rank that is directly above the Sergeant Major of the Army Rank and directly below the U.S. Army Chief Warrant Officer 2 Rank, and which signifies that the rank holder is a tactically and technically focused officer, serving at the team through battalion levels, whose primary role is to develop proficiency in the operation and maintenance of systems linked directly to their AOC or MOS, and subsequently integrate their systems with other branch systems. + Paragraph 3-9: https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN31964-PAM_600-3-001-WEB-3.pdf + https://www.army.mil/ranks/#chief-warrant-officer-ranks-title + https://www.federalpay.org/military/army/warrant-officer-1 + U.S. Army Warrant Officer 1 Rank + Company Grade Rank + + + + + + + + + U.S. Army Warrant Officer 1 Role + + + + + + + + + A U.S. Armed Forces Warrant Officer Rank that is held by some U.S. Army soldier, is appointed either by warrant from the Secretary of the Army, or by commission from the President of the United States, and which signifies that the rank holder is a technical expert, combat leader, trainer, and advisor who administers, manages, maintains, operates, and integrates Army systems and equipment across unified land operations. + Paragraph 3-9, https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN31964-PAM_600-3-001-WEB-3.pdf + U.S. Army Warrant Officer Rank + + + + + + + + + U.S. Army Warrant Officer Role + + + + + + + + + + + + + + + U.S. Assistant Commandant of the Marine Corps Role + + + + + + + + + + + + + + + + + + + + + Bearers of this role hold the rank of Navy Admiral + U.S. Chief of Naval Operations Role + + + + + + + + + + + + + + + + + + + + + U.S. Chief of Staff of the Air Force Role + + + + + + + + + + + + + + + + + + + + + U.S. Chief of Staff of the Army Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Commissioned Officer who has some U.S. Coast Guard Admiral Rank and is the bearer of some U.S. Coast Guard Admiral Role. + U.S. Coast Guard Admiral + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Admiral Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Admiral Rank. + U.S. Coast Guard Admiral Rank Insignia + + + + + + + + + U.S. Coast Guard Admiral Role + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Seaman who is the bearer of a U.S. Coast Guard Airman Role. + U.S. Coast Guard Airman + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Seaman Apprentice who is the bearer of a U.S. Coast Guard Airman Apprentice Role. + U.S. Coast Guard Airman Apprentice + + + + + + + + + At the same rank level as seaman apprentice + U.S. Coast Guard Airman Apprentice Rank + true + + + + + + + + + U.S. Coast Guard Airman Apprentice Role + + + + + + + + + U.S. Coast Guard Airman Rank + true + + + + + + + + + U.S. Coast Guard Airman Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Commissioned Officer who has some U.S. Coast Guard Captain Rank and is the bearer of some U.S. Coast Guard Captain Role. + U.S. Coast Guard Captain + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Captain Rank + Senior Officer Rank / Midgrade + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Captain Rank. + U.S. Coast Guard Captain Rank Insignia + + + + + + + + + U.S. Coast Guard Captain Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Senior Non-Commissioned Officer who has some U.S. Coast Guard Chief Petty Officer Rank and is the bearer of some U.S. Coast Guard Chief Petty Officer Role. + U.S. Coast Guard Chief Petty Officer + + + + + + + + + U.S. Coast Guard Chief Petty Officer Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Chief Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Warrant Officer who has some U.S. Coast Guard Chief Warrant Officer 2 Rank and is the bearer of some U.S. Coast Guard Chief Warrant Officer 2 Role. + U.S. Coast Guard Chief Warrant Officer 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Chief Warrant Officer 2 Rank + Junior Grade + + + + + + + + + U.S. Coast Guard Chief Warrant Officer 2 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Warrant Officer who has some U.S. Coast Guard Chief Warrant Officer 3 Rank and is the bearer of some U.S. Coast Guard Chief Warrant Officer 3 Role. + U.S. Coast Guard Chief Warrant Officer 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Chief Warrant Officer 3 Rank + Junior Grade + + + + + + + + + U.S. Coast Guard Chief Warrant Officer 3 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Warrant Officer who has some U.S. Coast Guard Chief Warrant Officer 4 Rank and is the bearer of some U.S. Coast Guard Chief Warrant Officer 4 Role. + U.S. Coast Guard Chief Warrant Officer 4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Chief Warrant Officer 4 Rank + Junior Grade + + + + + + + + + U.S. Coast Guard Chief Warrant Officer 4 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Senior Non-Commissioned Officer who has some U.S. Coast Guard Command Master Chief Petty Officer Rank and is the bearer of some U.S. Coast Guard Command Master Chief Petty Officer Role. + U.S. Coast Guard Command Master Chief Petty Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + U.S. Coast Guard Command Master Chief Petty Officer Rank + + + + + + + + + U.S. Coast Guard Command Master Chief Petty Officer Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Commissioned Officer who has some U.S. Coast Guard Commander Rank and is the bearer of some U.S. Coast Guard Commander Role. + U.S. Coast Guard Commander + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commander Rank + Senior Officer Rank / Midgrade + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Commander Rank. + U.S. Coast Guard Commander Rank Insignia + + + + + + + + + U.S. Coast Guard Commander Role + + + + + + + + + + + + + + + + + + + + + + + A Commissioned Officer who is a member of the United States Coast Guard, has some U.S. Coast Guard Commissioned Officer Rank, and is the bearer of some U.S. Coast Guard Commissioned Officer Role. + U.S. Coast Guard Commissioned Officer + + + + + + + + + http://wwww.ontologylibrary.mil/CommonCore/Mid/MilitaryRanksOntology + U.S. Coast Guard Commissioned Officer Rank + + + + + + + + + A Commissioned Officer Role which inheres in an Agent in virtue of that Agent holding some U.S. Coast Guard Commissioned Officer Rank, and which primarily involves the command of some U.S. Coast Guard unit. + U.S. Coast Guard Commissioned Officer Role + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Seaman who is the bearer of a U.S. Coast Guard Constructionman Role. + U.S. Coast Guard Constructionman + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Seaman Apprentice who is the bearer of a U.S. Coast Guard Constructionman Apprentice Role. + U.S. Coast Guard Constructionman Apprentice + + + + + + + + + U.S. Coast Guard Constructionman Apprentice Role + + + + + + + + + U.S. Coast Guard Constructionman Role + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Seaman who is the bearer of a U.S. Coast Guard Seaman Deck and Administrative Role. + U.S. Coast Guard Deck and Administrative Seaman + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Seaman Apprentice who is the bearer of a U.S. Coast Guard Seaman Apprentice Deck and Administrative Role. + U.S. Coast Guard Deck and Administrative Seaman Apprentice + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Commissioned Officer who has some U.S. Coast Guard Ensign Rank and is the bearer of some U.S. Coast Guard Ensign Role. + U.S. Coast Guard Ensign + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Ensign Rank. + U.S. Coast Guard Ensign Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Ensign Rank + Junior Officer / Junior Grade + + + + + + + + + U.S. Coast Guard Ensign Role + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Seaman who is the bearer of a U.S. Coast Guard Fireman Role. + U.S. Coast Guard Fireman + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Seaman Apprentice who is the bearer of a U.S. Coast Guard Fireman Apprentice Role. + U.S. Coast Guard Fireman Apprentice + + + + + + + + + U.S. Coast Guard Fireman Apprentice Rank + true + + + + + + + + + U.S. Coast Guard Fireman Apprentice Role + + + + + + + + + U.S. Coast Guard Fireman Rank + true + + + + + + + + + U.S. Coast Guard Fireman Role + + + + + + + + + U.S. Coast Guard Flag Officer Rank + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Seaman who is the bearer of a U.S. Coast Guard Hospitalman Role. + U.S. Coast Guard Hospitalman + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Seaman Apprentice who is the bearer of a U.S. Coast Guard Hospitalman Apprentice Role. + U.S. Coast Guard Hospitalman Apprentice + + + + + + + + + U.S. Coast Guard Hospitalman Apprentice Role + + + + + + + + + U.S. Coast Guard Hospitalman Role + + + + + + + + + A Junior Enlisted Rank that is junior to the U.S. Coast Guard Non-Commissioned Officer Ranks, and specifies a position within the U.S. Coast Guard that includes certain duties and responsibilites but lacks an Authority Role. + U.S. Coast Guard Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + A Junior Enlisted Sailor that is a member of the U.S. Coast Guard, has some U.S. Coast Guard Junior Enlisted Rank, and is the bearer of some U.S. Coast Guard Junior Enlisted Sailor Role. + U.S. Coast Guard Junior Enlisted Sailor + + + + + + + + + U.S. Coast Guard Junior Enlisted Sailor Role + + + + + + + + + U.S. Coast Guard Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Commissioned Officer who has some U.S. Coast Guard Lieutenant Rank and is the bearer of some U.S. Coast Guard Lieutenant Role. + U.S. Coast Guard Lieutenant + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Commissioned Officer who has some U.S. Coast Guard Lieutenant Commander Rank and is the bearer of some U.S. Coast Guard Lieutenant Commander Role. + U.S. Coast Guard Lieutenant Commander + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Lieutenant Commander Rank. + U.S. Coast Guard Lieutenant Commander Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Lieutenant Commander Rank + Junior Officer Rank / Junior Grade + + + + + + + + + U.S. Coast Guard Lieutenant Commander Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Commissioned Officer who has some U.S. Coast Guard Lieutenant Junior Grade Rank and is the bearer of some U.S. Coast Guard Lieutenant Junior Grade Role. + U.S. Coast Guard Lieutenant Junior Grade + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Lieutenant Junior Grade Rank. + U.S. Coast Guard Lieutenant Junior Grade Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Lieutenant Junior Grade Rank + Junior Officer / Junior Grade + + + + + + + + + U.S. Coast Guard Lieutenant Junior Grade Role + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Lieutenant Rank. + U.S. Coast Guard Lieutenant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Lieutenant Rank + Junior Officer Rank / Junior Grade + + + + + + + + + U.S. Coast Guard Lieutenant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Senior Non-Commissioned Officer who has some U.S. Coast Guard Master Chief Petty Officer Rank and is the bearer of some U.S. Coast Guard Master Chief Petty Officer Role. + U.S. Coast Guard Master Chief Petty Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + U.S. Coast Guard Master Chief Petty Officer Rank + + + + + + + + + U.S. Coast Guard Master Chief Petty Officer Role + + + + + + + + + + + + + + + + + + + + + + + A Non-Commissioned Officer who is a member of the U.S. Coast Guard. + U.S. Coast Guard Non-Commissioned Officer + + + + + + + + + U.S. Coast Guard Non-Commissioned Officer Rank + + + + + + + + + U.S. Coast Guard Non-Commissioned Officer Role + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Petty Officer + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Petty Officer who has some U.S. Coast Guard Petty Officer First Class Rank and is the bearer of some U.S. Coast Guard Petty Officer First Class Role. + U.S. Coast Guard Petty Officer First Class + + + + + + + + + U.S. Coast Guard Petty Officer First Class Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Petty Officer First Class Rank + + + + + + + + + U.S. Coast Guard Petty Officer Rank + + + + + + + + + U.S. Coast Guard Petty Officer Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Petty Officer who has some U.S. Coast Guard Petty Officer Second Class Rank and is the bearer of some U.S. Coast Guard Petty Officer Second Class Role. + U.S. Coast Guard Petty Officer Second Class + + + + + + + + + U.S. Coast Guard Petty Officer Second Class Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Petty Officer Second Class Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Petty Officer who has some U.S. Coast Guard Petty Officer Third Class Rank and is the bearer of some U.S. Coast Guard Petty Officer Third Class Role. + U.S. Coast Guard Petty Officer Third Class + + + + + + + + + U.S. Coast Guard Petty Officer Third Class Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + I assert that this class is one rank higher than the U.S. Army Specialist Rank because: + +Petty Officer Third Class Rank is the equivalent of the U.S. Army Corporal Rank, and the latter is one rank directly above the Specialist Rank. + U.S. Coast Guard Petty Officer Third Class Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Commissioned Officer who has some U.S. Coast Gaurd Rear Admiral Upper Half Rank and is the bearer of some U.S. Coast Guard Rear Admiral Upper Half Role. + U.S. Coast Guard Rear Admiral + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Commissioned Officer who has some U.S. Coast Gaurd Rear Admiral Lower Half Rank and is the bearer of some U.S. Coast Guard Rear Admiral Lower Half Role. + U.S. Coast Guard Rear Admiral Lower Half + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Rear Admiral Lower Half Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Rear Admiral Lower Half Rank. + U.S. Coast Guard Rear Admiral Lower Half Rank Insignia + + + + + + + + + U.S. Coast Guard Rear Admiral Lower Half Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Rear Admiral Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Rear Admiral Rank. + U.S. Coast Guard Rear Admiral Rank Insignia + + + + + + + + + U.S. Coast Guard Rear Admiral Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Junior Sailor who has some U.S. Coast Guard Seaman Rank and is the bearer of some U.S. Coast Guard Seaman Role. + U.S. Coast Guard Seaman + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Junior Enlisted Sailor who has some U.S. Coast Guard Seaman Apprentice Rank and is the bearer of some U.S. Coast Guard Seaman Apprentice Role. + U.S. Coast Guard Seaman Apprentice + + + + + + + + + U.S. Coast Guard Seaman Apprentice Deck and Administrative Role + + + + + + + + + U.S. Coast Guard Seaman Apprentice Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Seaman Apprentice Rank + + + + + + + + + U.S. Coast Guard Seaman Deck and Administrative Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Junior Enlisted Sailor who has some U.S. Coast Guard Seaman Recruit Rank and is the bearer of some U.S. Coast Guard Seaman Recruit Role. + U.S. Coast Guard Seaman Recruit + + + + + + + + + Sailors bearing this role are in the process of undergoing an 8 week basic training course. + U.S. Coast Guard Seaman Recruit Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This rank has a rank insignia, whereas the equivalent navy rank has no rank insignia. + Unlike in the case of the Navy equivalent, U.S. Navy Seaman Recruit Rank, all members of the Coast Guard holding this rank are referred to by the title of "Seaman Recruit", regardless of the occupational field in which they are apprenticing. See comment for U.S. Navy Seaman Recruit Rank. + U.S. Coast Guard Seaman Recruit Rank + + + + + + + + + U.S. Coast Guard Seaman Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Seaman Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Senior Non-Commissioned Officer who has some U.S. Coast Guard Senior Chief Petty Officer Rank and is the bearer of some U.S. Coast Guard Senior Chief Petty Officer Role. + U.S. Coast Guard Senior Chief Petty Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Is two ranks above U.S. Army Sergeant First Class Rank. See the rdfs:comment for that class. + +Is two ranks above U.S. Army Gunnery Sergeant Rank. See the rdfs:comment for that class. + U.S. Coast Guard Senior Chief Petty Officer Rank + + + + + + + + + U.S. Coast Guard Senior Chief Petty Officer Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Senior Non-Commissioned Officer + + + + + + + + + U.S. Coast Guard Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Coast Guard Commissioned Officer who has some U.S. Coast Guard Vice Admiral Rank and is the bearer of some U.S. Coast Guard Vice Admiral Role. + U.S. Coast Guard Vice Admiral + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Commissioned Officer Rank Insignia that bears some U.S. Coast Guard Vice Admiral Rank. + U.S. Coast Guard Vice Admiral Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Coast Guard Vice Admiral Rank + Flag Officer Rank + + + + + + + + + U.S. Coast Guard Vice Admiral Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Armed Forces Warrant Officer who is a member of the U.S. Coast Guard, has some U.S. Coast Guard Warrant Officer Rank, and is the bearer of some U.S. Coast Guard Warrant Officer Role. + U.S. Coast Guard Warrant Officer + + + + + + + + + The lack of a U.S. Coast Guard W-1 warrant officer rank and W-5 Chief Warrant Officer 5 rank are not ommissions. These are not ranks currently used in the coast guard. + +There is a provision for the latter rank, but it is not currently in use. + U.S. Coast Guard Warrant Officer Rank + + + + + + + + + U.S. Coast Guard Warrant Officer Role + + + + + + + + + + + + + + + + + + + + + U.S. Commandant of the Marine Corps Role + + + + + + + + + Generally these are referred to as 'Officer' pay grade codes. This is because 'officer' "when used without further detail, [...] almost always refers to only commissioned officers" [https://en.wikipedia.org/wiki/Officer_(armed_forces)] + +But for the purposes of the ontology, we use 'Commissioned Officer' in the label to avoid any confusion. + U.S. Commissioned Officer Pay Grade + + + + + + + + + An Authority Role inhering in some Agent in virtue of that Agent holding an office within one of the Military Departments that are part of the U.S. Department of Defense. + U.S. Department of Defense Authority Role + + + + + + + + + An Authority Role inhering in some Agent in virtue of that Agent holding an office within the U.S. Department of the Air Force. + U.S. Department of the Air Force Authority Role + + + + + + + + + An Authority Role inhering in an Agent in virtue that Agent holding an office in the U.S. Department of the Navy. + U.S. Department of the Navy Authority Role + + + + + + + + + U.S. Enlisted Personnel Pay Grade + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer who has some U.S. Marine Corps Brigadier General Rank and is the bearer of some U.S. Marine Corps Brigadier General Role. + U.S. Marine Corps Brigadier General + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Brigadier General Rank. + U.S. Marine Corps Brigadier General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer Rank that is directly above the U.S. Marine Corps Colonel Rank and directly below the U.S. Marine Corps Major General Rank, and which signifies that the rank holder bears an Authority Role that typically involves the role of either brigade commander or division executive officer. + https://www.federalpay.org/military/marine-corps/brigadier-general + U.S. Marine Corps Brigadier General Rank + General Officer Rank + + + + + + + + + U.S. Marine Corps Brigadier General Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer who has some U.S. Marine Corps Captain Rank and is the bearer of some U.S. Marine Corps Captain Role. + U.S. Marine Corps Captain + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Captain Rank. + U.S. Marine Corps Captain Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer Rank that is directly above the U.S. Marine Corps First Lieutenant Rank and directly below the U.S. Marine Corps Major Rank, and which signifies that: i) the rank holder bears an Authority Role that typically involves the role of staff officer in either a U.S. Marine Corps battalion or aviation squadron, a U.S. Marine Corps Aircraft Group regiment, or a Marine Expeditionary Brigade or a Marine Expeditionary Unit: ii) that the rank holder may, if qualified, serve as a commander of a U.S. Marine Corps company, battery, or of various other types of detachments. + https://en.wikipedia.org/wiki/Captain_(United_States_O-3) + https://www.federalpay.org/military/marine-corps/captain + U.S. Marine Corps Captain Rank + Company Grade Rank + + + + + + + + + U.S. Marine Corps Captain Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Warrant Officer who has some U.S. Marine Corps Chief Warrant Officer 2 Rank and is the bearer of some U.S. Marine Corps Chief Warrant Officer 2 Role. + U.S. Marine Corps Chief Warrant Officer 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + requires vetting + A U.S. Marine Corps Warrant Officer Rank that is directly above the U.S. Marine Corps Warrant Officer 1 Rank and directly below the U.S. Marine Corps Chief Warrant Officer 3 Rank, and which signifies that holders of the rank are intermediate level experts in both the technical and tactical aspects of leading in their Marine Corps MOS's, and that they typically serve in leadership roles at the battalion level. + https://www.military-ranks.org/marine-corps/chief-warrant-officer-2 + U.S. Marine Corps Chief Warrant Officer 2 Rank + Company Grade Rank + + + + + + + + + U.S. Marine Corps Chief Warrant Officer 2 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Warrant Officer who has some U.S. Marine Corps Chief Warrant Officer 3 Rank and is the bearer of some U.S. Marine Corps Chief Warrant Officer 3 Role. + U.S. Marine Corps Chief Warrant Officer 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + requires further research +requires vetting + A U.S. Marine Corps Warrant Officer Rank that is directly above the U.S. Marine Corps Chief Warrant Officer 2 Rank and directly below the U.S. Marine Corps Chief Warrant Officer 4 Rank, and which signifies that holders of the rank are advanced level experts in both the technical and tactical aspects of leading in their Marine Corps MOS's, and that they typically support operations at the teams through bridage levels. + https://www.military-ranks.org/marine-corps/chief-warrant-officer-3 + U.S. Marine Corps Chief Warrant Officer 3 Rank + Field Grade Rank + + + + + + + + + U.S. Marine Corps Chief Warrant Officer 3 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Warrant Officer who has some U.S. Marine Corps Chief Warrant Officer 4 Rank and is the bearer of some U.S. Marine Corps Chief Warrant Officer 4 Role. + U.S. Marine Corps Chief Warrant Officer 4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + requires further research +requires vetting + https://en.wikipedia.org/wiki/Echelon_above_corps + A U.S. Marine Corps Warrant Officer Rank that is directly above the U.S. Marine Corps Chief Warrant Officer 3 Rank and directly below the U.S. Marine Corps Chief Warrant Officer 4 Rank, and which signifies that holders of the rank are senior level experts in both the technical and tactical aspects of leading in their Marine Corps MOS's, and that they typically support operations at the battalion through corps levels and echelons above corps operations. + https://www.military-ranks.org/marine-corps/chief-warrant-officer-4 + U.S. Marine Corps Chief Warrant Officer 4 Rank + Field Grade Rank + + + + + + + + + U.S. Marine Corps Chief Warrant Officer 4 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Warrant Officer who has some U.S. Marine Corps Chief Warrant Officer 5 Rank and is the bearer of some U.S. Marine Corps Chief Warrant Officer 5 Role. + U.S. Marine Corps Chief Warrant Officer 5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + requires further research +requires vetting + See: https://en.wikipedia.org/wiki/Echelon_above_corps + A U.S. Marine Corps Warrant Officer Rank that is directly above the U.S. Marine Corps Chief Warrant Officer 4 Rank and directly below the U.S. Marine Corps Second Lieutenant Rank, and which signifies that holders of the rank holder are master level experts of both the technical and tactical aspects of leading in their Marine Corps MOS's, and that they typically support operations at the battalion through corps levels and echelons above corps operations, including major operations. + https://www.military-ranks.org/marine-corps/chief-warrant-officer-5 + U.S. Marine Corps Chief Warrant Officer 5 Rank + Senior Field Grade Rank + + + + + + + + + U.S. Marine Corps Chief Warrant Officer 5 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer who has some U.S. Marine Corps Colonel Rank and is the bearer of some U.S. Marine Corps Colonel Role. + U.S. Marine Corps Colonel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer Rank that is directly above the U.S. Marine Corps Colonel Rank and directly below the U.S. Marine Corps Brigadier General Rank, and which signifies that the rank holder bears an Authority Role, typically involving service either as a U.S. Marine Corps regiment commander, brigade executive officer, or division staff member. + https://www.defense.gov/Experience/Military-Units/Marine-Corps/#units + https://www.federalpay.org/military/marine-corps/colonel + U.S. Marine Corps Colonel Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Colonel Rank. + U.S. Marine Corps Colonel Rank Insignia + + + + + + + + + U.S. Marine Corps Colonel Role + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer + + + + + + + + + http://wwww.ontologylibrary.mil/CommonCore/Mid/MilitaryRanksOntology + U.S. Marine Corps Commissioned Officer Rank + + + + + + + + + A Commissioned Officer Role which inheres in an Agent in virtue of that Agent holding some U.S. Marine Corps Commissioned Officer Rank, and which primarily involves the command of some U.S. Marine Corps unit. + U.S. Marine Corps Commissioned Officer Role + + + + + + + + + U.S. Marine Corps Company Grade Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Junior Non-Commissioned Officer who has some U.S. Marine Corps Corporal Rank and is the bearer of some U.S. Marine Corps Corporal Role. + U.S. Marine Corps Corporal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This comment was from 7/27/21: This gets tricky. From what I have read, technically the U.S. Army and Marine Corps Corporal Ranks, which are both NCO ranks, are equivalent in rank to U.S. Air Force Senior Airman Rank, U.S. Navy/Coast Guard Petty Officer Third Class Ranks, and U.S. Space Force Specialist 4 Rank. + +Notice though that of their equivalents, only the Navy and Coast Guard ranks are NCOs. + +Thus, it is my understanding that since the corporals are NCO's, and the Senior Airmen and Specialist 4's are not NCO's, the corporals would outrank the latter in any joint operation between services. Thus one can outrank an officer of equivalent rank in some cases. And so we have to be careful in how we define the relationship of 'outranking'. + +At least, this is my non-expert analysis of the situation (based on the fact that NCO's outrank non-NCO's). Will need to consult further with an expert on this matter. + +Update as 7/29/21: + +I am fairly sure that the articles where I read that the Senior Airman Rank is equivalent in RANK to the E-4 paygrade Navy and Coast Guard NCO ranks were simply conflating paygrade equivalency with rank equivalency. + +The following official document from the U.S. Army has a table that clearly shows the Army and Marine Corps Corporal ranks and the Navy and Coast Guard to all be equivalents, while Army Specialist and Senior Airman are shown to be equivalents a rank below, with no corresponding non-officer equivalents in the Navy, Coast Guard and Marines Corps. + +https://www.armyresilience.army.mil/ard/images/pdf/Policy/600-20%20Army%20Command%20Policy.pdf + A JNCO Marine Corps Corporal Rank that is directly above the U.S. Marine Corps Lance Corporal Rank and directly below the U.S. Marine Corps Sergeant Rank, and which signifies that the rank holder bears an Authority Role that typically involves either the command of a three man fire team (or weapons crew of similar size) or the command of a squad. + https://en.wikipedia.org/wiki/Corporal + https://www.defense.gov/Experience/Military-Units/Marine-Corps/#units + https://www.federalpay.org/military/marine-corps/corporal + U.S. Marine Corps Corporals may command squads of varying sizes. Squad sizes vary depending upon the weapon system employed by the squad: + +"In the United States Marine Corps, a rifle squad is usually composed of three fireteams of four Marines each and a squad leader who is typically a sergeant or corporal, Other types of USMC infantry squads include: machinegun (7.62mm), heavy machinegun (12.7 mm (.50 cal.) and 40mm), LWCMS mortar (60-mm), 81-mm mortar, assault weapon (SMAW), antiarmor (Javelin missile), and anti-tank (TOW missile). These squads range from as few as three Marines (60mm LWCM squad) to as many as eight (Javelin Missile squad), depending upon the weapon system with which the squad is equipped." [https://en.wikipedia.org/wiki/Squad] + U.S. Marine Corps Corporal Rank + + + + + + + + + U.S. Marine Corps Corporal role + + + + + + + + + An Enlisted Professional Military Education Requirement for Promotion in Military Rank that requires some U.S. Marine Corps enlisted marine to complete some Enlisted Professional Military Education Course, as a condition for promotion to some U.S. Marine Corps Rank. + U.S. Marine Corps Enlisted Professional Military Education Requirement + + + + + + + + + U.S. Marine Corps Field Grade Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer who has some U.S. Marine Corps First Lieutenant Rank and is the bearer of some U.S. Marine Corps First Lieutenant Role. + U.S. Marine Corps First Lieutenant + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer Rank Insignia that bears some U.S. Marine Corps First Lieutenant Rank. + U.S. Marine Corps First Lieutenant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer Rank that is directly above the U.S. Marine Corps Second Lieutenant Rank and directly below the U.S. Marine Corps Captain Rank, and which signifies that the rank holder bears an Authority Role, either continuing in their service as a Platoon Commander, or serving as a Company Executive Officer. + https://www.federalpay.org/military/marine-corps/first-lieutenant + U.S. Marine Corps First Lieutenant Rank + Company Grade Rank + + + + + + + + + U.S. Marine Corps First Lieutenant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Staff Non-Commissioned Officer who has some U.S. Marine Corps First Sergeant Rank and is the bearer of some U.S. Marine Corps First Sergeant Role. + U.S. Marine Corps First Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Staff NCO + A Marine Corps First Sergeant Rank that is directly above the U.S. Marine Corps Master Sergeant Rank and directly below the U.S. Marine Corps Master Gunnery Sergeant Rank, and which signifies that the rank holder serves in a leadership role at the company level as the senior enlisted adviser to the Company Commander, either a U.S. Marine Corps Captain or Major. + https://www.federalpay.org/military/marine-corps/first-sergeant + https://www.military.com/marine-corps/enlisted-ranks.html + U.S. Marine Corps First Sergeant Rank + + + + + + + + + U.S. Marine Corps First Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer who has some U.S. Marine Corps General Rank and is the bearer of some U.S. Marine Corps General Role. + U.S. Marine Corps General + + + + + + + + + U.S. Marine Corps General Officer Rank + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer Rank Insignia that bears some U.S. Marine Corps General Rank. + U.S. Marine Corps General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer Rank that is directly above the U.S. Marine Corps Lieutenant General Rank, and which signifies that: i) the rank holder bears an Authority Role involving either the highest Marine Corp commands, or service as a Combatant Commander; ii) the rank holder may, if qualified, serve in the Assistant Commandant of the Marine Corps Role or the Commandant of the Marine Corps Role, or serve as a member of the U.S. Department of Defense Joint Chiefs of Staff. + U.S. Marine Corps General Rank + General Officer Rank + + + + + + + + + U.S. Marine Corps General Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Staff Non-Commissioned Officer who has some U.S. Marine Corps Gunnery Sergeant Rank and is the bearer of some U.S. Marine Corps Gunnery Sergeant Role. + U.S. Marine Corps Gunnery Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Is two ranks below: + +U.S. Air Force Senior Master Sergeant, U.S. Space Force Senior Master Sergeant, U.S. Coast Guard Senior Chief Petty Officer and U.S. Navy Chief Petty Officer. Call this Group A. + +The ranks in Group A are each directly above the rank in their respective services that is equivalent in rank to U.S. Marine Corps Gunnery Sergeant. + +But U.S. Marine Corps Gunnery Sergeant is also one rank directly below the U.S. Marine Corps Master Sergeant Rank, which has no equivalent rank in the U.S. Air Force, Space Force, Navy and Coast Guard. In this case, U.S. Marine Corps Gunnery Sergeant is two ranks below U.S. Marine Corps First Sergeant, which is the U.S. Marine Corps rank that is equivalent in rank to the ranks in Group A. It is for this reason that we say that U.S. Marine Corps Gunnery Sergeant is two ranks below those ranks. + A Marine Corps Gunnery Sergeant Rank that is directly above the U.S. Marine Corps Staff Sergeant Rank and directly below the U.S. Marine Corps Master Sergeant Rank, and which signifies that a holder of the rank typically holds some leadership role at the company or battery level, serving either as the operations chief alongside the unit's executive officer, or, in combat, as a tactical adviser to the commanding officer (typically a captain), but may also serve as section leaders or platoon sergeants. + https://en.wikipedia.org/wiki/Gunnery_sergeant + https://www.federalpay.org/military/marine-corps/gunnery-sergeant + U.S. Marine Corps Gunnery Sergeants serving as platoon sergeants have basically the same duties as staff sergeants serving in the role, but they have the added responsibility of supervising the lower ranked staff sergeants leading the sections of the platoon. + U.S. Marine Corps Gunnery Sergeant Rank + + + + + + + + + U.S. Marine Corps Gunnery Sergeant Role + + + + + + + + + U.S. Marine Corps Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corp Non-Commissioned Officer who has one of the U.S. Marine Corps Non-Commissioned Officer Ranks with a U.S. uniformed services grade of E-4 or E-5. + U.S. Marine Corps Junior Non-Commissioned Officer + + + + + + + + + + + + + + + + + + + + + + + A Junior Enlisted U.S. Marine who has some U.S. Marine Corps Lance Corporal Rank and is the bearer of some U.S. Marine Corps Lance Corporal Role. + U.S. Marine Corps Lance Corporal + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Junior Enlisted Rank Insignia that bears some U.S. Marine Corps Lance Corporal Rank. + U.S. Marine Corps Lance Corporal Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Officially, within the enlisted ranks, supervisory roles are prescribed for those marines that hold an NCO rank. Thus, the Table of Orginization and Equipment prescribes the role of fire team leader to U.S. Marine Corps Corporals. In practice though, the role of fire team leader is often held by U.S. Marine Corps Lance Corporals. [https://en.wikipedia.org/wiki/Corporal] + A U.S. Marine Corps Junior Enlisted Rank that is directly above the U.S. Marine Corps Private First Class Rank and directly below the U.S. Marine Corps Corporal Rank, and which signifies that the rank holder's job is to continue to apply the technical skills developed during their enlisted service, and to learn and develop leadership skills in preparation for advancement to the U.S. Marine Corps Corporal Rank. + https://www.federalpay.org/military/marine-corps/lance-corporal + https://www.military.com/marine-corps/enlisted-ranks.html + U.S. Marine Corps Lance Corporal Rank + + + + + + + + + U.S. Marine Corps Lance Corporal Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer who has some U.S. Marine Corps Lieutenant Colonel Rank and is the bearer of some U.S. Marine Corps Lieutenant Colonel Role. + U.S. Marine Corps Lieutenant Colonel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer Rank that is directly above the U.S. Marine Corps Major Rank and directly below the U.S. Marine Corps Colonel Rank, and which signifies that the rank holder bears an Authority Role, typically involving service as either a U.S. Marine Corps battalion commander, regiment executive officer, or brigade staff officer. + https://www.defense.gov/Experience/Military-Units/Marine-Corps/#units + https://www.federalpay.org/military/marine-corps/lieutenant-colonel + U.S. Marine Corps Lieutenant Colonel Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Lieutenant Colonel Rank. + U.S. Marine Corps Lieutenant Colonel Rank Insignia + + + + + + + + + U.S. Marine Corps Lieutenant Colonel Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer who has some U.S. Marine Corps Lieutenant General Rank and is the bearer of some U.S. Marine Corps Lieutenant General Role. + U.S. Marine Corps Lieutenant General + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Lieutenant General Rank. + U.S. Marine Corps Lieutenant General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer Rank that is directly above the U.S. Marine Corps Major General Rank and directly below the U.S. Marine Corps General Rank, and which signifies that the rank holder bears an Authority Role that typically involves either the highest U.S. Marine Corps commands, or service as a deputy combatant commander. + https://www.federalpay.org/military/marine-corps/lieutenant-general + U.S. Marine Corps Lieutenant General Rank + + + + + + + + + U.S. Marine Corps Lieutenant General Role + + + + + + + + + A Military Occupational Specialty Requirement for Promotion in Military Rank that requires some U.S. marine to maintain fully qualified status in their career progression military occupational specialty. + U.S. Marine Corps MOS Requirement for Promotion in Military Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer who has some U.S. Marine Corps Major Rank and is the bearer of some U.S. Marine Corps Major Role. + U.S. Marine Corps Major + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer who has some U.S. Marine Corps Major General Rank and is the bearer of some U.S. Marine Corps Major General Role. + U.S. Marine Corps Major General + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Major General Rank. + U.S. Marine Corps Major General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer Rank that is directly above the U.S. Marine Corps Brigadier General Rank and directly below the U.S. Marine Corps Lieutenant General Rank, and which signifies that the rank holder bears an Authority Role that typically involves the role of either division commander, or staff officer at a combatant command. + https://www.defense.gov/Experience/Military-Units/Marine-Corps/#units + https://www.federalpay.org/military/marine-corps/major-general + U.S. Marine Corps Major General Rank + + + + + + + + + U.S. Marine Corps Major General Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer Rank that is directly above the U.S. Marine Corps Captain Rank and directly below the U.S. Marine Corps Lieutenant Colonel Rank, and which signifies that the rank holder bears an Authority Role that typically involves the role of either battalion executive officer, weapons company commander, or regiment or brigade staff member. + https://www.federalpay.org/military/marine-corps/major + U.S. Marine Corps Major Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Major Rank. + U.S. Marine Corps Major Rank Insignia + + + + + + + + + U.S. Marine Corps Major Role + + + + + + + + + + + + + + + + + + + + + + + A Marine Corps Master Gunnery Sergeant who has some U.S. Marine Corps Master Gunnery Sergeant Rank and is the bearer of some U.S. Marine Corps Master Gunnery Sergeant Role. + U.S. Marine Corps Master Gunnery Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Staff NCO + A U.S. Marine Corps Non-Commissioned Officer Rank that is directly above the U.S. Marine Corps First Sergeant Rank and directly below the U.S. Marine Corps Sergeant Major Rank, and which signifies that rank holders serve as technical managers at the battalion through forces levels, advising the unit commander on the readiness of their units with respect to equipment and programs. + https://www.federalpay.org/military/marine-corps/master-gunnery-sergeant + U.S. Marine Corps Master Gunnery Sergeant Rank + + + + + + + + + U.S. Marine Corps Master Gunnery Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Staff Non-Commissioned Officer who has some U.S. Marine Corps Master Sergeant Rank and is the bearer of some U.S. Marine Corps Master Sergeant Role. + U.S. Marine Corps Master Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Staff NCO + A U.S. Marine Corps Non-Commissioned Officer Rank that is directly above the U.S. Marine Corps Gunnery Sergeant Rank and directly below the U.S. Marine Corps First Sergeant Rank, and which signifies: i) that the rank holder is a technical expert in their assigned MOS; ii) that the rank holder typically serves in either a battalion, regiment, or brigade level staff as a technical adviser to the U.S. Marine Corps Major or Lieutenant Colonel commanding the unit. + https://www.federalpay.org/military/marine-corps/master-sergeant + https://www.military.com/marine-corps/enlisted-ranks.html + U.S. Marine Corps Master Sergeant Rank + + + + + + + + + U.S. Marine Corps Master Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + A Non-Commissioned Officer who is a member of the U.S. Marine Corps. + U.S. Marine Corps Non-Commissioned Officer + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Rank + + + + + + + + + U.S. Marine Corps Non-Commissioned Officer Role + + + + + + + + + + + + + + + + + + + + + + + A Junior Enlisted U.S. Marine who has some U.S. Marine Corps Private First Class Rank and is the bearer of some U.S. Marine Corps Private First Class Role. + U.S. Marine Corps Private First Class + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Junior Enlisted Rank Insignia that bears some U.S. Marine Corps Private First Class Rank. + U.S. Marine Corps Private First Class Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Junior Enlisted Rank that is directly above the U.S. Marine Corps Private Rank and directly below the U.S. Marine Corps Lance Corporal Rank, and which signifies that the rank holder's job is to follow the orders of higher-ranking supervisors, while applying the technical skills learned at the U.S. Marine Corps Private Rank and continuing to learn and develop new skills. + https://www.federalpay.org/military/marine-corps/private-first-class + https://www.military.com/marine-corps/enlisted-ranks.html + U.S. Marine Corps Private First Class Rank + + + + + + + + + U.S. Marine Corps Private First Class Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "After Recruit Training, all Privates attend a School of Infantry (SOI) and learn how to be a Rifleman. Marines with Infantry MOSs go to an Infantry Training Battalion, and all others go to Marine Combat Training and then another school for their MOS. After that, the Private will finally report to their first unit." [https://www.federalpay.org/military/marine-corps/private] + Has no insignia + Unlike the equivalent rank in the U.S. Army, the U.S. Marine Corps Private Rank is not given upon initial enlistment. Whereas in the U.S. Army new recruits hold the private rank during Basic Combat Training, new recruits in the Marine Corps only earn the rank of private upon completion of U.S. Marine Corps Recruit Training. + PVT + A U.S. Marine Corps Junior Enlisted Rank that is the lowest rank in the U.S. Marine Corps, directly below the U.S. Marine Corps Private First Class Rank, and which signifies that the rank holder's job is to follow the orders of higher-ranking supervisors and to learn new technical skills (including training in their military occupational specialty). + https://www.federalpay.org/military/marine-corps/private + https://www.military.com/marine-corps/enlisted-ranks.html + U.S. Marine Corps Private Rank + + + + + + + + + U.S. Marine Corps Private Role + + + + + + + + + Completion of U.S. Marine Corps Recruit Training is required before U.S. Marine Corps recruits are given the U.S. Marine Corps Private Rank. + A Military Recruit Training Requirement that requires some U.S. Marine Corps recruit to complete U.S. Marine Corps Recruit Training. + U.S. Marine Corps Recruit Training Requirement + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer who has some U.S. Marine Corps Second Lieutenant Rank and is the bearer of some U.S. Marine Corps Second Lieutenant Role. + U.S. Marine Corps Second Lieutenant + + + + + + + + + + + + + + + + + + + U.S. Marine Corps Commissioned Officer Rank Insignia that bears some U.S. Marine Corps Second Lieutenant Rank. + U.S. Marine Corps Second Lieutenant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Commissioned Officer Rank that is directly above the U.S. Marine Corps Chief Warrant Officer 5 Rank and directly below the U.S. Marine Corps First Lieutenant Rank, and which signifies that the rank holder is either: i) attending The Basic School (TBS) for all-around combat training, or, upon completion of TBS and the assignment of their Military Occupational Specialty (MOS), is recieving schooling in their MOS; or ii) serving as a platoon commander, having completed their time in rank as a student. + https://www.federalpay.org/military/marine-corps/second-lieutenant + U.S. Marine Corps Second Lieutenant Rank + Company Grade Rank + + + + + + + + + U.S. Marine Corps Second Lieutenant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Junior Non-Commissioned Officer who has some U.S. Marine Corps Sergeant Rank and is the bearer of some U.S. Marine Corps Sergeant Role. + U.S. Marine Corps Sergeant + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Staff Non-Commissioned Officer who has some U.S. Marine Corps Sergeant Major Rank and is the bearer of some U.S. Marine Corps Sergeant Major Role. + U.S. Marine Corps Sergeant Major + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Staff NCO + A Marine Corps Sergeant Rank Major that is directly above the U.S. Marine Corps Master Gunnery Sergeant Rank and directly below the Sergeant Major of the Marine Corps Rank, and which signifies that rank holders serve as personnel managers at the battalion through forces levels, advising the unit commander on the readiness of their units with respect to personnel. + https://www.federalpay.org/military/marine-corps/sergeant-major + U.S. Marine Corps Sergeant Major Rank + + + + + + + + + U.S. Marine Corps Sergeant Major Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + A U.S. Marine Corps Non-Commissioned Officer Rank directly above the U.S. Marine Corps Corporal Rank and directly below the U.S. Marine Corps Staff Sergeant Rank, which signifies that rank holders typically serve as Squad Commanders, and sometimes as Platoon Sergeants in charge of 3-5 squads. + https://www.defense.gov/Experience/Military-Units/Marine-Corps/#units + https://www.federalpay.org/military/marine-corps/sergeant + U.S. Marine Corps Sergeant Rank + + + + + + + + + U.S. Marine Corps Sergeant role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Non-Commissioned Officer who has one of the U.S. Marine Corps Non-Commissioned Officer Ranks with a U.S. uniformed services grade of E-6, E-7, E-8, or E-9. + U.S. Marine Corps Staff Non-Commissioned Officer + + + + + + + + + U.S. Marine Corps Staff Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Marine Corps Staff Non-Commissioned Officer who has some U.S. Marine Corps Staff Sergeant Rank and is the bearer of some U.S. Marine Corps Staff Sergeant Role. + U.S. Marine Corps Staff Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Staff NCO + A Marine Corps Staff Sergeant Rank that is directly above the U.S. Marine Corps Sergeant Rank and directly below the U.S. Marine Corps Gunnery Sergeant Rank, and which signifies that holders of the rank typically serve as U.S. Marine Corps platoon sergeants or section leaders, but may also serve in military staff sections, in a Headquarters and Service Company at the battalion, regiment or division levels, or in a Headquarters Battery at the squadron, group, or wing levels. + https://en.wikipedia.org/wiki/Staff_sergeant#U.S._Marine_Corps + https://www.federalpay.org/military/marine-corps/staff-sergeant + There are a variety of different types of platoons and sections in which U.S. Marine Corps Staff Sergeants may serve: + +"Staff sergeants in infantry, and light armored reconnaissance units typically serve in the billet of platoon sergeant of a 42-member rifle platoon, an 18-member scout sniper platoon (infantry battalion H&S company S-2 section) or a 24-member light armored reconnaissance platoon. In reconnaissance battalions, staff sergeants usually serve as squad/team leaders of a 6-member reconnaissance team. When serving as a platoon sergeant, they are the senior tactical advisor to the platoon commander (an officer) and the second-in-command of the platoon. + +Staff sergeants also serve as a section leaders in weapons platoons (the platoon sergeant being a gunnery sergeant in weapons platoons) leading from 8–27 Marines in a crew-served weapons section (i.e., machine guns, mortars, assault weapons/rockets, and anti-tank missiles). In artillery batteries staff sergeants serve as either the local security chief/platoon sergeant of a firing battery's 94-member firing platoon or as section chief of a 10-member artillery section (viz., gun crew). In tank and assault amphibian units, they serve as section leaders in charge of 8 Marines manning two tanks or 9 Marines manning three AAVs, respectively, under a gunnery sergeant serving as platoon sergeant. When there is a shortage of gunnery sergeants, they may be assigned to a billet of platoon sergeant or company/battery gunnery sergeant, and in the event of a shortage of officers may be temporarily billeted as a platoon commander." +https://en.wikipedia.org/wiki/Staff_sergeant#U.S._Marine_Corps + U.S. Marine Corps Staff Sergeant Rank + + + + + + + + + U.S. Marine Corps Staff Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Armed Forces Warrant Officer who is a member of the U.S. Marine Corps, has some U.S. Marine Corps Warrant Officer Rank, and is the bearer of some U.S. Marine Corps Warrant Officer Role. + U.S. Marine Corps Warrant Officer + + + + + + + + + + + + + + + + + + + + + + + We are aware that the U.S. Marine Corps does not officially append the number 1 to the title borne by soldiers of the W-1 warrant officer grade (which differs from the practice of the other services). + +It was necessary to use the label 'Warrant Officer 1' in order to distinguish this class from its parent class. + A U.S. Marine Corps Warrant Officer who has some U.S. Marine Corps Warrant Officer 1 Rank and is the bearer of some U.S. Marine Corps Warrant Officer 1 Role. + U.S. Marine Corps Warrant Officer 1 + + + + + + + + + U.S. Marine Corps Warrant Officer 1 Role + + + + + + + + + A U.S. Armed Forces Warrant Officer Rank that is held by some U.S. Marine Corps Marine, is appointed either by warrant from the Secretary of the Navy, or by commission from the President of the United States, and which signifies that the rank holder is a specialist in their technical field who provides leadership and training to the Marines in their military occupational specialty. + https://www.marines.mil/Ranks.aspx + U.S. Marine Corps Warrant Officer Rank + + + + + + + + + U.S. Marine Corps Warrant Officer Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + requires further review + We are aware that the U.S. Marine Corps does not officially append the number 1 to their term for the W-1 warrant officer grade (which differs from the practice of the other services). + +It was necessary to use the label 'Warrant Officer 1 Rank' in order to distinguish this class from its parent class. + A U.S. Marine Corps Warrant Officer Rank that is directly above the Sergeant Major of the Marine Corps Rank and directly below the U.S. Marine Corps Chief Warrant Officer 2 Rank, and which signifies that the rank holder is both proficient at leading and in their Marine Corps MOS. + U.S. Marine Corps Warrant Officer 1 Rank + Company Grade Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Admiral Rank and is the bearer of some U.S. Navy Admiral Role. + U.S. Navy Admiral + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Flag Officer Rank that is directly above the U.S. Navy Vice Admiral Rank and is directly below the U.S. Navy Fleet Admiral Rank, and which signifies that rank holders typically serve as a Commanding Officer of a Regional (Geographic) Commands, and may also serve in the U.S. Vice Chief of Naval Operations Role, the U.S. Chief of Naval Operations Role, or as Chairman of the Joint Chiefs of Staff. + https://www.military.com/navy/officer-ranks.html + https://www.quora.com/What-sort-of-responsibilities-are-various-Navy-ranks-usually-associated-with + U.S. Navy Admiral Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer Rank Insignia that bears some U.S. Navy Admiral Rank. + U.S. Navy Admiral Rank Insignia + + + + + + + + + U.S. Navy Admiral Role + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman who is the bearer of some U.S. Navy Airman Role. + This class represents those Sailors who have the U.S. Navy Seaman Rank and are specializing in the field of aviation. + U.S. Navy Airman + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman Apprentice who is the bearer of a U.S. Navy Airman Apprentice Role. + U.S. Navy Airman Apprentice + + + + + + + + + U.S. Navy Airman Apprentice Rank + true + + + + + + + + + U.S. Navy Airman Apprentice Role + + + + + + + + + U.S. Navy Airman Rank + true + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman Recruit who is the bearer of some U.S. Navy Airman Recruit Role. + This class represents those Sailors who have the U.S. Navy Seaman Recruit Rank and who are new recruits in in the field of aviation. + U.S. Navy Airman Recruit + + + + + + + + + This rank has no rank insignia + U.S. Navy Airman Recruit Rank + true + + + + + + + + + U.S. Navy Airman Recruit Role + + + + + + + + + U.S. Navy Airman Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Senior Commissioned Officer Rank that is directly above the U.S. Navy Commander Rank and directly below the U.S. Navy Rear Admiral Lower Half Rank, and which signifies that rank holders typically serve as Commanding Officers of major commands, or as Commanding Officers of SEAL Groups. + https://www.military.com/navy/officer-ranks.html + https://www.quora.com/What-sort-of-responsibilities-are-various-Navy-ranks-usually-associated-with + Examples of major commands include: Aircraft Carriers, Amphibious Assault Ships, Cruisers, Destroyer Squadrons, Carrier Air Wings, Ballistic-Missile Submarines, and Submarine Squadrons, and major shore installations, such as supply depots and training centers. + U.S. Navy Captain Rank + Senior Officer Rank / Midgrade + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer Rank Insignia that bears some U.S. Navy Captain Rank. + U.S. Navy Captain Rank Insignia + + + + + + + + + U.S. Navy Captain Role + + + + + + + + + U.S. Navy Chief-level Petty Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Senior Non-Commissioned Officer who has some U.S. Navy Chief Petty Officer Rank and is the bearer of some U.S. Navy Chief Petty Officer Role. + U.S. Navy Chief Petty Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + A U.S. Navy Non-Commissioned Officer Rank that is directly above the U.S. Navy Petty Officer First Class Rank and directly below the U.S. Navy Senior Chief Petty Officer Rank, and which signifies that the rank holder is a technical authority, expert, and supervisor within their U.S. Navy Rating (job specialty) who typically serves as the Division Chief of a U.S. Navy shipboard division. + See page 3: +https://www.mynavyhr.navy.mil/Portals/55/Reference/NEOCS/Vol1/04-Introduction_Chg%2082_Apr%2020.pdf?ver=szLKR2-8OimD6H0rg94gyA%3D%3D + https://www.federalpay.org/military/navy/chief-petty-officer + U.S. Navy Chief Petty Officer Rank + + + + + + + + + U.S. Navy Chief Petty Officer Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Warrant Officer who has some U.S. Navy Chief Warrant Officer 2 Rank and is the bearer of some U.S. Navy Chief Warrant Officer 2 Role. + U.S. Navy Chief Warrant Officer 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Chief Warrant Officer 2 Rank + Junior Grade + + + + + + + + + U.S. Navy Chief Warrant Officer 2 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Warrant Officer who has some U.S. Navy Chief Warrant Officer 3 Rank and is the bearer of some U.S. Navy Chief Warrant Officer 3 Role. + U.S. Navy Chief Warrant Officer 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Chief Warrant Officer 3 Rank + Junior Grade + + + + + + + + + U.S. Navy Chief Warrant Officer 3 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Warrant Officer who has some U.S. Navy Chief Warrant Officer 4 Rank and is the bearer of some U.S. Navy Chief Warrant Officer 4 Role. + U.S. Navy Chief Warrant Officer 4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Chief Warrant Officer 4 Rank + Junior Grade + + + + + + + + + U.S. Navy Chief Warrant Officer 4 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Warrant Officer who has some U.S. Navy Chief Warrant Officer 5 Rank and is the bearer of some U.S. Navy Chief Warrant Officer 5 Role. + U.S. Navy Chief Warrant Officer 5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Chief Warrant Officer 5 Rank + ??? + + + + + + + + + U.S. Navy Chief Warrant Officer 5 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Senior Non-Commissioned Officer who has some U.S. Navy Command Master Chief Petty Officer Rank and is the bearer of some U.S. Navy Command Master Chief Petty Officer Role. + U.S. Navy Command Master Chief Petty Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + This is a special type of rank. + +serves as a Senior enlisted advisor. + U.S. Navy Command Master Chief Petty Officer Rank + + + + + + + + + U.S. Navy Command Master Chief Petty Officer Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Commader Rank and is the bearer of some U.S. Navy Commander Role. + U.S. Navy Commander + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The definition for this term requires further review. + Terms from the CCO Watercraft ontology may be able to be imported corresponding to terms in the definition? + U.S. Navy Senior Commissioned Officer Rank that is directly above the U.S. Navy Lieutenant Commander Rank and is directly below the U.S. Navy Captain Rank, and which signifies that rank holders typically serve as Commanding Officers of smaller ships, submarines, and shore installations, or as Commanding Officers of SEAL Teams. + https://www.military.com/navy/officer-ranks.html + https://www.quora.com/What-sort-of-responsibilities-are-various-Navy-ranks-usually-associated-with + Examples of smaller vessels and commands to which Commanders are assigned the position of Commanding Offier: Frigate, Destroyer, Fast Attack Submarine, Smaller Amphibious Ship, Aviation Squadron, SEAL Team. + U.S. Navy Commander Rank + Senior Officer Rank / Midgrade + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer Rank Insignia that bears some U.S. Navy Commander Rank. + U.S. Navy Commander Rank Insignia + + + + + + + + + U.S. Navy Commander Role + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer + + + + + + + + + http://wwww.ontologylibrary.mil/CommonCore/Mid/MilitaryRanksOntology + U.S. Navy Commissioned Officer Rank + + + + + + + + + U.S. Navy Commissioned Officer Role + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman who is the bearer of a U.S. Navy Constructionman Role. + This class represents those Sailors who hold the U.S. Navy Seaman Rank and who are specializing in the naval construction battalion, the Seabees. + U.S. Navy Constructionman + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman Apprentice who is the bearer of a U.S. Navy Constructionman Apprentice Role. + U.S. Navy Constructionman Apprentice + + + + + + + + + U.S. Navy Constructionman Apprentice Rank + true + + + + + + + + + U.S. Navy Constructionman Apprentice Role + + + + + + + + + U.S. Navy Constructionman Rank + true + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman Recruit who is the bearer of a U.S. Navy Constructionman Recruit Role. + This class represents those Sailors who hold the U.S. Navy Seaman Recruit Rank and who are new recruits in the naval construction battalion, the Seabees. + U.S. Navy Constructionman Recruit + + + + + + + + + U.S. Navy Constructionman Recruit Rank + true + + + + + + + + + U.S. Navy Constructionman Recruit Role + + + + + + + + + U.S. Navy Constructionman Role + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman who is the bearer of U.S. Navy Seaman Deck and Administrative Role. + This class refers to U.S. Navy Sailors who have the U.S. Navy Seaman Rank and who are apprenticing in the field of general-duty deck and administration. In the Navy, these sailors are actually referred to by the title of 'Seaman', whereas their counterparts in other apprenticeships have differing titles ('Fireman' for those apprenticing in the engineering and hull departments. The parent class 'U.S. Navy Seaman' is meant in a more generic sense to mean any sailor with the U.S. Navy Seaman Rank -- regardless of their specific apprenticeship field and role. + U.S. Navy Deck and Administrative Seaman + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman Apprentice who is the bearer of a U.S. Navy Seaman Apprentice Deck and Administrative Role. + U.S. Navy Deck and Administrative Seaman Apprentice + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman Recruit who is the bearer of a U.S. Navy Seaman Recruit Deck and Administrative Role. + This class represents those Sailors who hold the U.S. Navy Seaman Recruit Rank and who is a recruit apprenticing in the field of general-duty desk and administration. + U.S. Navy Deck and Administrative Seaman Recruit + + + + + + + + + A Military Education Requirement for Promotion in Military Rank that require a U.S. Navy Enlisted Sailor to complete some Navy leadership development courses as condition of advancement to some U.S. Navy Enlisted Rank of grade E-3 to E-9. + BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', paragraph 210 + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + U.S. Navy Enlisted Leadership Development Course Requirement + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Ensign Rank and is the bearer of some U.S. Navy Ensign Role. + U.S. Navy Ensign + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The definition for this term requires further review. + The rank is normally held for two years until promotion to the rank of Lieutenant Junior Grade. + U.S. Navy Junior Commissioned Officer Rank that is directly above the U.S. Navy Chief Warrant Officer 5 Rank and directly below the U.S. Navy Lieutenant Junior Grade Rank, and which signifies that rank holders are typically given the role of Naval Division Officer. + https://www.military.com/navy/officer-ranks.html + https://www.quora.com/What-sort-of-responsibilities-are-various-Navy-ranks-usually-associated-with + Although authorized to be serve as Division Officers, most Ensigns spend time in various schools training for their respective warfare or staff corp specialties. + +On larger commands, the job of Division Officer may go to a Lieutenant, with the lower ranks in charge of one or more shops. + U.S. Navy Ensign Rank + Junior Officer Rank / Junior Grade + + + + + + + + + U.S. Navy Ensign Role + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman who is the bearer of a U.S. Navy Fireman Role. + This class represents those Sailors who have the U.S. Navy Seaman Rank and are apprenticing in the hull and engineering departments. + U.S. Navy Fireman + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman Apprentice who is the bearer of a U.S. Navy Fireman Apprentice Role. + U.S. Navy Fireman Apprentice + + + + + + + + + U.S. Navy Fireman Apprentice Rank + true + + + + + + + + + U.S. Navy Fireman Apprentice Role + + + + + + + + + U.S. Navy Fireman Rank + true + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman Recruit who is the bearer of a U.S. Navy Fireman Recruit Role. + U.S. Navy Fireman Recruit + + + + + + + + + This rank has no rank insignia. + U.S. Navy Fireman Recruit Rank + true + + + + + + + + + U.S. Navy Fireman Recruit Role + + + + + + + + + U.S. Navy Fireman Role + + + + + + + + + U.S. Navy Flag Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Fleet Admiral Rank and is the bearer of some U.S. Navy Fleet Admiral Role. + U.S. Navy Fleet Admiral + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Fleet Admiral Rank + Flag Officer Rank + + + + + + + + + U.S. Navy Fleet Admiral Role + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman who is the bearer of a U.S. Navy Hospitalman Role. + This class represents those Sailors who hold the U.S. Navy Seaman Rank and who are apprenticing and specializing in the Navy's medical and hospital departments. + U.S. Navy Hospitalman + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman Apprentice who is the bearer of a U.S. Navy Hospitalman Apprentice Role. + U.S. Navy Hospitalman Apprentice + + + + + + + + + U.S. Navy Hospitalman Apprentice Rank + true + + + + + + + + + U.S. Navy Hospitalman Apprentice Role + + + + + + + + + U.S. Navy Hospitalman Rank + true + + + + + + + + + + + + + + + + + + + A U.S. Navy Seaman Recruit who is the bearer of a U.S. Navy Hospitalman Recruit Role. + This class represents those Sailors who hold the U.S. Navy Seaman Recruit Rank and who are apprenticing as recruits in the Navy's medical and hospital departments. + U.S. Navy Hospitalman Recruit + + + + + + + + + U.S. Navy Hospitalman Recruit Rank + true + + + + + + + + + U.S. Navy Hospitalman Recruit Role + + + + + + + + + U.S. Navy Hospitalman Role + + + + + + + + + A Junior Enlisted Rank that is junior to the U.S. Navy Non-Commissioned Officer Ranks, and specifies a position within the U.S. Navy that includes certain duties and responsibilites but lacks an Authority Role. + U.S. Navy Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + A Junior Enlisted Sailor that is a member of the U.S. Navy, has some U.S. Navy Junior Enlisted Rank, and is the bearer of some U.S. Navy Junior Enlisted Sailor Role. + U.S. Navy Junior Enlisted Sailor + + + + + + + + + U.S. Navy Junior Enlisted Sailor Role + + + + + + + + + U.S. Navy Junior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Lieutenant Rank and is the bearer of some U.S. Navy Lieutenant Role. + U.S. Navy Lieutenant + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Lieutenant Commander Rank and is the bearer of some U.S. Navy Lieutenant Commander Role. + U.S. Navy Lieutenant Commander + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer Rank Insignia that bears some U.S. Navy Lieutenant Commander Rank. + U.S. Navy Lieutenant Commander Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Junior Commissioned Officer Rank is directly above the U.S. Navy Lieutenant Rank and directly below the U.S. Navy Commander Rank, and which signifies that rank holders are typically given the role of Department Head or Executive Officer on a U.S. Navy ship, aircraft squadron, or submarine, or the role of Executive Officer on a SEAL team. + https://www.military.com/navy/officer-ranks.html + https://www.quora.com/What-sort-of-responsibilities-are-various-Navy-ranks-usually-associated-with + U.S. Navy Lieutenant Commander Rank + Junior Officer Rank / Junior Grade + + + + + + + + + U.S. Navy Lieutenant Commander Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Lieutenant Junior Grade Rank and is the bearer of some U.S. Navy Lieutenant Junior Grade Role. + U.S. Navy Lieutenant Junior Grade + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer Rank Insignia that bears some U.S. Navy Lieutenant Junior Grade Rank. + U.S. Navy Lieutenant Junior Grade Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The definition for this term requires for further review. + U.S. Navy Junior Commissioned Officer Rank that is directly above the U.S. Navy Ensign Rank and directly below the U.S. Navy Lieutenant Rank, and which signifies that rank holders are typically given the role of Naval Division Officer. + https://www.military.com/navy/officer-ranks.html + https://www.quora.com/What-sort-of-responsibilities-are-various-Navy-ranks-usually-associated-with + Although authorized to be serve as Division Officers, some Lieutenenat Junior Grades still spend time in schools training for their respective warfare or staff corp specialties. + +On larger commands, the job of Division Officer may go to a Lieutenant, with the lower ranks in charge of one or more shops. + U.S. Navy Lieutenant Junior Grade Rank + Junior Officer Rank / Junior Grade + + + + + + + + + U.S. Navy Lieutenant Junior Grade Role + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer Rank Insignia that bears some U.S. Navy Lieutenant Rank. + U.S. Navy Lieutenant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The definition for this term requires further review. + A Division is a unit in the U.S. Navy. A collection of related Divisions fall under a Navy Department. + +Department Heads are responsible for a collection of related Divisions. + U.S. Navy Junior Commissioned Officer Rank that is directly above the U.S. Navy Lieutenant Junior Grade Rank and directly below the U.S. Navy Lieutenant Commander Rank, and which signifies that rank holders are typically given the role of Naval Department Head, but may also serve as a Naval Division Officer, or as a commander of a smaller vessel or unit. + https://www.military.com/navy/officer-ranks.html + https://www.quora.com/What-sort-of-responsibilities-are-various-Navy-ranks-usually-associated-with + U.S. Navy Lieutenant Rank + Junior Officer Rank / Junior Grade + + + + + + + + + U.S. Navy Lieutenant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Senior Non-Commissioned Officer who has some U.S. Navy Master Chief Petty Officer Rank and is the bearer of some U.S. Navy Master Chief Petty Officer Role. + U.S. Navy Master Chief Petty Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + A U.S. Navy Non-Commissioned Officer Rank that is directly above the U.S. Navy Senior Chief Petty Officer Rank and directly below the U.S. Navy Command Master Chief Petty Officer Rank, and which signifies that + U.S. Navy Master Chief Petty Officer Rank + + + + + + + + + U.S. Navy Master Chief Petty Officer Role + + + + + + + + + + + + + + + + + + + + + + + A Non-Commissioned Officer who is a member of the U.S. Navy. + U.S. Navy Non-Commissioned Officer + + + + + + + + + U.S. Navy Non-Commissioned Officer Rank + + + + + + + + + U.S. Navy Non-Commissioned Officer Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Non-Commissioned Officer who has some U.S. Navy Petty Officer Rank and is the bearer of some U.S. Navy Petty Officer Role. + U.S. Navy Petty Officer + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Petty Officer who has some U.S. Navy Petty Officer First Class Rank and is the bearer of some U.S. Navy Petty Officer First Class Role. + U.S. Navy Petty Officer First Class + + + + + + + + + U.S. Navy Petty Officer First Class Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Petty Officer Rank that is directly above the U.S. Navy Petty Officer Second Class Rank and directly below the U.S. Navy Chief Petty Officer Rank, and which signifies that the rank holder is a technician and work manager within their U.S. Navy Rating (job specialty) with a greater degree of skill responsibility and authority than a U.S. Navy Petty Officer Second Class, who typically serves as a Division Officer of a U.S. Navy shipboard division. + See page 3 of: https://www.mynavyhr.navy.mil/Portals/55/Reference/NEOCS/Vol1/04-Introduction_Chg%2082_Apr%2020.pdf?ver=szLKR2-8OimD6H0rg94gyA%3d%3d + https://en.wikipedia.org/wiki/Petty_officer_first_class + https://www.federalpay.org/military/navy/petty-officer-first-class + A U.S. Navy Petty Officer First Class has greater skill responsibilities in their rating than those of a U.S. Navy Petty Officer Second Class. + U.S. Navy Petty Officer First Class Rank + + + + + + + + + U.S. Navy Petty Officer Rank + + + + + + + + + U.S. Navy Petty Officer Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Petty Officer who has some U.S. Navy Petty Officer Second Class Rank and is the bearer of some U.S. Navy Petty Officer Second Class Role. + U.S. Navy Petty Officer Second Class + + + + + + + + + U.S. Navy Petty Officer Second Class Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Petty Officer Rank that is directly above the U.S. Navy Petty Officer Third Class Rank and directly below the U.S. Navy Petty Officer First Class Rank, and which signifies that the rank holder is a technician and work manager with greater skill responsibilities and authority within their U.S. Navy Rating (job specialty) than a Petty Officer Third Class, but less than a Petty Officer First Class, who typically leads shipboard work groups or watch sections of enlisted sailors (larger in size than those typically led by a Petty Officer Third Class). + See page 3: +https://www.mynavyhr.navy.mil/Portals/55/Reference/NEOCS/Vol1/04-Introduction_Chg%2082_Apr%2020.pdf?ver=szLKR2-8OimD6H0rg94gyA%3d%3d + https://www.military.com/navy/enlisted-rates.html#pettyofficer + U.S. Navy Petty Officer Second Class Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Petty Officer who has some U.S. Navy Petty Officer Third Class Rank and is the bearer of some U.S. Navy Petty Officer Third Class Role. + U.S. Navy Petty Officer Third Class + + + + + + + + + U.S. Navy Petty Officer Third Class Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + I assert that this class is one rank higher than the U.S. Army Specialist Rank because: + +Petty Officer Third Class Rank is the equivalent of the U.S. Army Corporal Rank, and the latter is one rank directly above the Specialist Rank. + A U.S. Navy Petty Officer Rank that is directly above the U.S. Navy Seaman Rank and directly below the U.S. Navy Petty Officer Second Class Rank, and which signifies that the rank holder is a technician and work manager with skill responsibility and authority within their U.S. Navy Rating (job specialty), and typically leads a shipboard work group or watch section of junior enlisted sailors. + See page 3: +https://www.mynavyhr.navy.mil/Portals/55/Reference/NEOCS/Vol1/04-Introduction_Chg%2082_Apr%2020.pdf?ver=szLKR2-8OimD6H0rg94gyA%3d%3d + https://www.military.com/navy/enlisted-rates.html#pettyofficer + U.S. Navy Petty Officer Third Class Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Rear Admiral Rank and is the bearer of some U.S. Navy Rear Admiral Role. + U.S. Navy Rear Admiral + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Rear Admiral Lower Half Rank and is the bearer of some U.S. Navy Rear Admiral Lower Half Role. + U.S. Navy Rear Admiral Lower Half + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Carrier Strike Group = "A standing naval task group consisting of a carrier, embarked air wing, surface combatants, and submarines as assigned in direct support, operating in mutual support with the task of destroying hostile submarine, surface, and air forces within the group’s assigned operational area and striking at targets along hostile shore lines or projecting power inland." (DOD Dictionary of Military and Associated Terms) + U.S. Navy Flag Officer Rank that is directly above the U.S. Navy Captain Rank and directly below the U.S. Navy Rear Admiral Rank, and which signifies that rank holders typically serve as Commanding Officers of Task Forces, Carrier Strike Groups, or Amphibious and Expeditionary Strike Groups, but may also serve as deputy commanders or larger commands. + https://www.federalpay.org/military/navy/rear-admiral-lower-half + https://www.military-ranks.org/navy/rear-admiral-lower-half + U.S. Navy Rear Admiral Lower Half Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer Rank Insignia that bears some U.S. Navy Rear Admiral Lower Half Rank. + U.S. Navy Rear Admiral Lower Half Rank Insignia + + + + + + + + + U.S. Navy Rear Admiral Lower Half Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Carrier Strike Group = "A standing naval task group consisting of a carrier, embarked air wing, surface combatants, and submarines as assigned in direct support, operating in mutual support with the task of destroying hostile submarine, surface, and air forces within the group’s assigned operational area and striking at targets along hostile shore lines or projecting power inland." (DOD Dictionary of Military and Associated Terms) + U.S. Navy Rear Admiral (Upper Half) Rank + U.S. Navy Flag Officer Rank that is directly above the U.S. Navy Rear Admiral Lower Half Rank and directly below the U.S. Navy Vice Admiral Rank, and which signifies that rank holders typically serve as Commanding Officers of Task Forces, Carrier Strike Groups, or Amphibious and Expeditionary Strike Groups, but may also serve as deputy commanders or larger commands. + https://www.military.com/navy/officer-ranks.html + https://www.quora.com/What-sort-of-responsibilities-are-various-Navy-ranks-usually-associated-with + U.S. Navy Rear Admiral Rank + Flag Officer Rank + + + + + + + + + U.S. Navy Rear Admiral Role + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer Rank Insignia that bears some U.S. Navy Rear Admiral Rank. + U.S. Navy Rear Admiral Upper Half Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Junior Enlisted Sailor who has some U.S. Navy Seaman Rank and is the bearer of some U.S. Navy Seaman Role. + U.S. Navy Seaman + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Junior Enlisted Sailor who has some U.S. Navy Seaman Apprentice Rank and is the bearer of some U.S. Navy Seaman Apprentice Role. + U.S. Navy Seaman Apprentice + + + + + + + + + U.S. Navy Seaman Apprentice Deck and Administrative Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All of the U.S. Navy Junior Enlisted ranks grades E-1 - E-3 are considered apprenticeship ranks. + +There are various types of apprenticeship to which a junior enlisted sailor may be assigned, indicating their eligibility for entry into a specific rating (occupational specialty). + +The official title by which a sailor is addressed depends upon the apprenticeship group to which they are assigned. + +Those apprenticing in the general deck and administrative field have the title of "Seaman Apprentice". + +Those apprenticing in the naval engineering and hull departments have the title of "Fireman Apprentice". + +Those apprenticing in the medical and hospital departments have the title of "Hospitalman Apprentice" + +Those apprenticing in the field of aviation have the title "Airman Apprentice". + +Those apprenticing in the field of naval construction have the title of "Constuctionman Apprentice". + +This of course raises an issue in labeling the corresponding class for persons holding the Seaman Apprentice Rank. While an E-2 sailor working in the aviation field has the rank of seaman apprentice, that sailor should fall (as an instance) under the defined class "U.S. Navy Airman Apprentice" whereas the sailor working in the deck and administrative field should fall under the defined class "U.S. Navy Seaman Apprentice." Of course, then we can't use that to label the class of all sailors holding the Seaman Apprentice Rank. + U.S. Navy Seaman Apprentice Rank + + + + + + + + + This class does NOT refer to that specific role borne by enlisted sailors of the Seaman Apprentice Rank whose occupational field is that of general deck and administrative duties. This is for the more generic role that is common to all the apprenticeships. + U.S. Navy Seaman Apprentice Role + + + + + + + + + U.S. Navy Seaman Deck and Administrative Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Junior Enlisted Sailor who has some U.S. Navy Seaman Recruit Rank and is the bearer of some U.S. Navy Seaman Recruit Role. + U.S. Navy Seaman Recruit + + + + + + + + + U.S. Navy Seaman Recruit Deck and Administrative Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All of the U.S. Navy Junior Enlisted ranks grades E-1 - E-3 are considered apprenticeship ranks. + +There are various types of apprenticeship to which a junior enlisted sailor may be assigned, indicating their eligibility for entry into a specific rating (occupational specialty). + +The official title by which a sailor at the Seaman Recruit Rank is addressed depends upon the apprenticeship group to which they are assigned. + +Those apprenticing in the general deck and administrative field have the title of "Seaman Recruit". + +Those apprenticing in the naval engineering and hull departments have the title of "Fireman Recruit". + +Those apprenticing in the medical and hospital departments have the title of "Hospitalman Recruit" + +Those apprenticing in the field of aviation have the title "Airman Recruit". + +Those apprenticing in the field of naval construction have the title of "Constuctionman Recruit". + +This of course raises an issue in labeling the corresponding class for persons holding the Seaman Recruit Rank. While an E-1 sailor working in the aviation field has the rank of seaman recruit, that sailor should fall (as an instance) under the defined class "U.S. Navy Airman Recruit" whereas the sailor working in the deck and administrative field should fall under the defined class "U.S. Navy Seaman Recruit." Of course, then we can't use that to label the class of all sailors holding the Seaman Recruit Rank. + This rank has no rank insignia (whereas its coast guard equivalent rank does have a rank insignia). + U.S. Navy Seaman Recruit Rank + + + + + + + + + U.S. Navy Seaman Recruit Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All of the U.S. Navy Junior Enlisted ranks grades E-1 - E-3 are considered apprenticeship ranks. + +There are various types of apprenticeship to which a junior enlisted sailor may be assigned, indicating their eligibility for entry into a specific rating (occupational specialty). + +The official title by which a sailor at the Seaman Rank is addressed depends upon the apprenticeship group to which they are assigned. + +Those apprenticing in the general deck and administrative field have the title of "Seaman". + +Those apprenticing in the naval engineering and hull departments have the title of "Fireman". + +Those apprenticing in the medical and hospital departments have the title of "Hospitalman" + +Those apprenticing in the field of aviation have the title "Airman". + +Those apprenticing in the field of naval construction have the title of "Constuctionman". + +This of course raises an issue in labeling the corresponding class for persons holding the Seaman Rank. While an E-1 sailor working in the aviation field has the rank of seaman recruit, that sailor should fall (as an instance) under the defined class "U.S. Navy Airman" whereas the sailor working in the deck and administrative field should fall under the defined class "U.S. Navy Seaman." Of course, then we can't use that to label the class of all sailors holding the Seaman Rank. + U.S. Navy Seaman Rank + + + + + + + + + U.S. Navy Seaman Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Senior Non-Commissioned Officer who has some U.S. Navy Senior Chief Petty Officer Rank and is the bearer of some U.S. Navy Senior Chief Petty Officer Role. + U.S. Navy Senior Chief Petty Officer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Is two ranks above U.S. Army Sergeant First Class Rank. See the rdfs:comment for that class. + +Is two ranks above U.S. Army Gunnery Sergeant Rank. See the rdfs:comment for that class. + A U.S. Navy Non-Commissioned Officer Rank that is directly above the U.S. Navy Chief Petty Officer Rank and directy below the U.S. Navy Master Chief Petty Officer Rank, and which signifies that the rank holder is a senior technical supervisor within their U.S. Navy rating (job specialty) whose primary responsibility is to supervise and train enlisted personnel oriented to system and subsystem maintenance, repair, and operation, and who typically serves as a Department Chief alongside the Department Head. + See page 3: +https://www.mynavyhr.navy.mil/Portals/55/Reference/NEOCS/Vol1/04-Introduction_Chg%2082_Apr%2020.pdf?ver=szLKR2-8OimD6H0rg94gyA%3D%3D + https://www.federalpay.org/military/navy/senior-chief-petty-officer + U.S. Navy Senior Chief Petty Officer Rank + + + + + + + + + U.S. Navy Senior Chief Petty Officer Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Senior Non-Commissioned Officer + + + + + + + + + U.S. Navy Senior Officer Rank + + + + + + + + + A Time in Rate Requirement for Promotion in Military Rank that requires some U.S. Navy Enlisted Sailor to complete some minimum temporal interval of work in their current rate as a condition for promotion to the next U.S. Navy rank. + U.S. Navy Time in Rate Requirement + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Vice Admiral Rank and is the bearer of some U.S. Navy Vice Admiral Role. + U.S. Navy Vice Admiral + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Flag Officer Rank that is directly above the U.S. Navy Rear Admiral Rank and directly below the U.S. Navy Admiral Rank, and which signifies that rank holders typically serve as a Commanding Officer of a U.S. Navy Numbered Fleet, or as a Deputy Commander of a Regional (Geographic) Combatant Command. + https://www.military.com/navy/officer-ranks.html + https://www.quora.com/What-sort-of-responsibilities-are-various-Navy-ranks-usually-associated-with + U.S. Navy Vice Admiral Rank + Flag Officer Rank + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer Rank Insignia that bears some U.S. Navy Vice Admiral Rank. + U.S. Navy Vice Admiral Rank Insignia + + + + + + + + + U.S. Navy Vice Admiral Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Armed Forces Warrant Officer who is a member of the U.S. Navy, has some U.S. Navy Warrant Officer Rank, and is the bearer of some U.S. Navy Warrant Officer Role. + U.S. Navy Warrant Officer + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Warrant Officer who has some U.S. Navy Warrant Officer 1 Rank and is the bearer of some U.S. Navy Warrant Officer 1 Role. + U.S. Navy Warrant Officer 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy Warrant Officer 1 Rank + ??? + + + + + + + + + U.S. Navy Warrant Officer 1 Role + + + + + + + + + U.S. Navy Warrant Officer Rank + + + + + + + + + U.S. Navy Warrant Officer Role + + + + + + + + + + + + + + + U.S. Secretary of Defense Role + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Secretary of the Air Force Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Secretary of the Navy Role + + + + + + + + + An Action Requirement for Promotion in Military Rank that requires the advice and consent of the U.S. Senate for the authorization of any promotion of a U.S. Army, Air Force, Marine Corps, or Navy Commissioned Officer to a military rank of Department of Defense grade O-4 or higher. + Modified from Title 10 USC, Subtitle A, Part II, Ch. 36, Subchapter II, §624(c): + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section624&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + This requirement applies to centralized promotions, involving promotion selection boards. It does not apply to battlefield promotions and Presidential promotions during times of war and emergency. It does apply to temporary brevet promotions, which are still centralized. + U.S. Senate Confirmation Requirement for Promotion in Military Rank + + + + + + + + + + + + + + + A U.S. Senate Confirmation Requirement for Promotion in Military Rank that requires the advice and consent of the U.S. Senate for the authorization of any promotion of a U.S. Army Colonel to the U.S. Army Brigadier General Rank. + U.S. Senate Confirmation Requirement for Promotion to U.S. Army Brigadier General Rank + + + + + + + + + + + + + + + A U.S. Senate Confirmation Requirement for Promotion in Military Rank that requires the advice and consent of the U.S. Senate for the authorization of any promotion of a U.S. Army Lieutenant Colonel to the U.S. Army Colonel Rank. + U.S. Senate Confirmation Requirement for Promotion to U.S. Army Colonel Rank + + + + + + + + + + + + + + + A U.S. Senate Confirmation Requirement for Promotion in Military Rank that requires the advice and consent of the U.S. Senate for the authorization of any promotion of a U.S. Army Major to the U.S. Army Lieutenant Colonel Rank. + U.S. Senate Confirmation Requirement for Promotion to U.S. Army Lieutenant Colonel Rank + + + + + + + + + + + + + + + A U.S. Senate Confirmation Requirement for Promotion in Military Rank that requires the advice and consent of the U.S. Senate for the authorization of any promotion of a U.S. Army Brigadier General to the U.S. Army Major General Rank. + U.S. Senate Confirmation Requirement for Promotion to U.S. Army Major General Rank + + + + + + + + + + + + + + + A U.S. Senate Confirmation Requirement for Promotion in Military Rank that requires the advice and consent of the U.S. Senate for the authorization of any promotion of a U.S. Army Captain to the U.S. Army Major Rank. + U.S. Senate Confirmation Requirement for Promotion to U.S. Army Major Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Commissioned Officer who has some U.S. Space Force Brigadier General Rank and is the bearer of some U.S. Space Force Brigadier General Role. + U.S. Space Force Brigadier General + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer Rank Insignia that bears some U.S. Space Force Brigadier General Rank. + U.S. Space Force Brigadier General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force Brigadier General Rank + General Officer Rank + + + + + + + + + U.S. Space Force Brigadier General Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Commissioned Officer who has some U.S. Space Force Captain Rank and is the bearer of some U.S. Space Force Captain Role. + U.S. Space Force Captain + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer Rank Insignia that bears some U.S. Space Force Captain Rank. + U.S. Space Force Captain Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force Captain Rank + Company Grade Rank + + + + + + + + + U.S. Space Force Captain Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Senior Non-Commissioned Officer who has some U.S. Space Force Chief Master Sergeant Rank and is the bearer of some U.S. Space Force Chief Master Sergeant Role. + U.S. Space Force Chief Master Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + "Chief Master Sergeants serve as managers and superintendents, advisors, enlisted force managers and provide senior enlisted leadership. Following selection, CMSgts are assigned Chief Enlisted Manager (CEM) codes and may fill any managerial-level position and perform all duties not prohibited by law or directive." https://www.military.com/space-force/enlisted-ranks.html + U.S. Space Force Chief Master Sergeant Rank + + + + + + + + + U.S. Space Force Chief Master Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Commissioned Officer who has some U.S. Space Force Colonel Rank and is the bearer of some U.S. Space Force Colonel Role. + U.S. Space Force Colonel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force Colonel Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer Rank Insignia that bears some U.S. Space Force Colonel Rank. + U.S. Space Force Colonel Rank Insignia + + + + + + + + + U.S. Space Force Colonel Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Senior Non-Commissioned Officer who has some U.S. Space Force Command Chief Master Sergeant Rank and is the bearer of some U.S. Space Force Command Chief Master Sergeant Role. + U.S. Space Force Command Chief Master Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + "Command Chief Master Sergeants serve as senior advisors to unit and base commanders. CMCs advise the Commander on all enlisted matters, including all issues affecting the command's mission and operations, and the readiness, training, utilization, morale, technical and professional development and quality of life of all enlisted members in the organization. Command Chiefs are the functional managers for all SNCOs in their entire command/organization." https://www.military.com/space-force/enlisted-ranks.html + U.S. Space Force Command Chief Master Sergeant Rank + + + + + + + + + U.S. Space Force Command Chief Master Sergeant Role + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer + + + + + + + + + http://wwww.ontologylibrary.mil/CommonCore/Mid/MilitaryRanksOntology + U.S. Space Force Commissioned Officer Rank + + + + + + + + + U.S. Space Force Commissioned Officer Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Commissioned Officer who has some U.S. Space Force Lieutenant Rank and is the bearer of some U.S. Space Force Lieutenant Role. + U.S. Space Force First Lieutenant + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer Rank Insignia that bears some U.S. Space Force First Lieutenant Rank. + U.S. Space Force First Lieutenant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force First Lieutenant Rank + Company Grade Rank + + + + + + + + + U.S. Space Force First Lieutenant Role + + + + + + + + + + + + + + + U.S. Space Force First Sergeant + + + + + + + + + This is a special duty, temporary rank. It is a rank that can be held: + +At the E-7 grade (which also has the U.S. Space Force Master Sergeant Rank). + +At the E-8 grade (which also has the U.S. Space Force Senior Master Sergeant Rank). + +At the E-9 grade (which also has the U.S. Space Force Chief Master Sergeant Rank and Command Chief Master Sergeant Rank). + +https://en.wikipedia.org/wiki/First_sergeant#United_States_Air_Force_and_United_States_Space_Force + U.S. Space Force First Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Commissioned Officer who has some U.S. Space Force General Rank and is the bearer of some U.S. Space Force General Role. + U.S. Space Force General + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer Rank Insignia that bears some U.S. Space Force General Rank. + U.S. Space Force General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force General Rank + General Officer Rank + + + + + + + + + U.S. Space Force General Role + + + + + + + + + Need to determine if this procedure is still in effect: + +"As of 2020 new members of the Space Force are not pulled in from the most junior ranks in and just out of Air Force basic training. Instead, they are recruited from airmen in the Air Force's space systems operations (1C6) career field." + +https://www.military.com/space-force/enlisted-ranks.html + U.S. Space Force Junior Enlisted Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force Junior Non-Commissioned Officer + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Commissioned Officer who has some U.S. Space Force Lieutenant Colonel Rank and is the bearer of some U.S. Space Force Lieutenant Colonel Role. + U.S. Space Force Lieutenant Colonel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force Lieutenant Colonel Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer Rank Insignia that bears some U.S. Space Force Lieutenant Colonel Rank. + U.S. Space Force Lieutenant Colonel Rank Insignia + + + + + + + + + U.S. Space Force Lieutenant Colonel Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Commissioned Officer who has some U.S. Space Force Lieutenant General Rank and is the bearer of some U.S. Space Force Lieutenant General Role. + U.S. Space Force Lieutenant General + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer Rank Insignia that bears some U.S. Space Force Lieutenant General Rank. + U.S. Space Force Lieutenant General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force Lieutenant General Rank + General Officer Rank + + + + + + + + + U.S. Space Force Lieutenant General Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Commissioned Officer who has some U.S. Space Force Major Rank and is the bearer of some U.S. Space Force Major Role. + U.S. Space Force Major + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Commissioned Officer who has some U.S. Space Force Major General Rank and is the bearer of some U.S. Space Force Major General Role. + U.S. Space Force Major General + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer Rank Insignia that bears some U.S. Space Force Major General Rank. + U.S. Space Force Major General Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force Major General Rank + General Officer Rank + + + + + + + + + U.S. Space Force Major General Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force Major Rank + Field Grade Rank + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer Rank Insignia that bears some U.S. Space Force Major Rank. + U.S. Space Force Major Rank Insignia + + + + + + + + + U.S. Space Force Major Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Senior Non-Commissioned Officer who has some U.S. Space Force Master Sergeant Rank and is the bearer of some U.S. Space Force Master Sergeant Role. + U.S. Space Force Master Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + "The Master Sergeant (MSgt) functions primarily as a craftsman while holding more advanced leadership positions. MSgts hold a 7-skill level. This rank carries significantly increased responsibilities and requires a broad technical and managerial perspective." https://www.military.com/space-force/enlisted-ranks.html + U.S. Space Force Master Sergeant Rank + + + + + + + + + U.S. Space Force Master Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + A Non-Commissioned Officer who is a member of the U.S. Space Force. + U.S. Space Force Non-Commissioned Officer + + + + + + + + + U.S. Space Force Non-Commissioned Officer Rank + + + + + + + + + U.S. Space Force Non-Commissioned Officer Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Commissioned Officer who has some U.S. Space Force Second Lieutenant Rank and is the bearer of some U.S. Space Force Second Lieutenant Role. + U.S. Space Force Second Lieutenant + + + + + + + + + + + + + + + + + + + U.S. Space Force Commissioned Officer Rank Insignia that bears some U.S. Space Force Second Lieutenant Rank. + U.S. Space Force Second Lieutenant Rank Insignia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force Second Lieutenant Rank + Company Grade Rank + + + + + + + + + U.S. Space Force Second Lieutenant Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Senior Non-Commissioned Officer who has some U.S. Space Force Senior Master Sergeant Rank and is the bearer of some U.S. Space Force Senior Master Sergeant Role. + U.S. Space Force Senior Master Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senior NCO + "The Senior Master Sergeant (SMSgt) are expected to perform as a superintendent or manager. Broad management skills are essential to exercising the responsibilities of the higher leadership positions in which SMSgts serve." https://www.military.com/space-force/enlisted-ranks.html + Is two ranks above U.S. Army Sergeant First Class Rank. See the rdfs:comment for that class. + +Is two ranks above U.S. Army Gunnery Sergeant Rank. See the rdfs:comment for that class. + U.S. Space Force Senior Master Sergeant Rank + + + + + + + + + U.S. Space Force Senior Master Sergeant Role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Space Force Senior Non-Commissioned Officer + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Junior Non-Commissioned Officer who has some U.S. Space Force Sergeant Rank and is the bearer of some U.S. Space Force Sergeant Role. + U.S. Space Force Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + junior NCO + "The Sergeant (SSgt) is the first level of the Non-Commissioned Officer (NCO) ranks in the Space Force. The Sergeant is considered a craftsman with specific NCO supervisory responsibilities and may hold either a 5- (journeyman) or 7- (craftsman) skill level. Additionally the Sgt. must continuously strive to further their development as technicians and supervisors." https://www.military.com/space-force/enlisted-ranks.html + U.S. Space Force Sergeant Rank + + + + + + + + + U.S. Space Force Sergeant role + + + + + + + + + + + + + + + + + + + + + + + A Junior Enlisted Personnel who has some U.S. Space Force Junior Enlisted Rank and is the bearer of some U.S. Space Force Specialist Role. + U.S. Space Force Specialist + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Specialist who has some U.S. Space Force Specialist 1 Rank and is the bearer of some U.S. Space Force Specialist 1 Role. + U.S. Space Force Specialist 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "As of 2020, new members of the Space Force have attended and graduated from Air Force basic training as regular members of the Air Force. After ascending into the Space Force they are known as Specialist" + +https://www.military.com/space-force/enlisted-ranks.html + +So the rank is only acquired after graduation from Air Force basic training? + U.S. Space Force Specialist 1 Rank + + + + + + + + + U.S. Space Force Specialist 1 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Specialist who has some U.S. Space Force Specialist 2 Rank and is the bearer of some U.S. Space Force Specialist 2 Role. + U.S. Space Force Specialist 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "The rank of Specialist 2 brings with it the responsibility of adjusting to the way of military life, and becoming proficient in their Space Force occupational specialty. For Space Force, that means entering training for space systems operations (1C6) career field after graduation from Air Force basic training." + +https://www.military.com/space-force/enlisted-ranks.html + +This is confusing. It is Specialist 1's who have just graduated basic training. So the second sentence could imply that you enter training for 1C6 at Specialist 1. + U.S. Space Force Specialist 2 Rank + + + + + + + + + U.S. Space Force Specialist 2 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Specialist who has some U.S. Space Force Specialist 3 Rank and is the bearer of some U.S. Space Force Specialist 3 Role. + U.S. Space Force Specialist 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "Specialist 3 guardians are considered to be fully adjusted to Space Force and military life, and their duties focus on efficiently and effectively carrying out their assignments and honing their job skills." +https://www.military.com/space-force/enlisted-ranks.html + U.S. Space Force Specialist 3 Rank + + + + + + + + + U.S. Space Force Specialist 3 Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Specialist who has some U.S. Space Force Specialist 4 Rank and is the bearer of some U.S. Space Force Specialist 4 Role. + U.S. Space Force Specialist 4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "The rank of Specialist 4 is a transition period from journeyman to Non-Commissioned Officer (NCO). Specialist 4 guardians in the Space Force and Senior Airmen in the Air Force are expected to conduct themselves in accordance with established standards, providing a positive influence and example for their subordinates and peers alike. Senior Airmen are to present the image of competence, integrity and pride." +https://www.military.com/space-force/enlisted-ranks.html + +Are the writers of this website just assuming that the description for Air Force E-4's is equally applicable to Space Force E-4's? Need to review these claims. + U.S. Space Force Specialist 4 Rank + + + + + + + + + U.S. Space Force Specialist 4 Role + + + + + + + + + U.S. Space Force Specialist Role + + + + + + + + + + + + + + + + + + + + + + + A U.S. Space Force Junior Non-Commissioned Officer who has some U.S. Space Force Technical Sergeant Rank and is the bearer of some U.S. Space Force Technical Sergeant Role. + U.S. Space Force Technical Sergeant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Junior NCO + "The Technical Sergeant (TSgt) is the second level of the Non-Commissioned Officer (NCO) ranks in the Space Force. Technical Sergeants are qualified to perform highly complex technical duties in addition to providing supervision. In addition, they're responsible for the career development of each subordinate under their supervision. + +It is the TSgt's responsibility to ensure that all enlisted personnel have the tools, training and support they need to achieve maximum performance and accomplish total mission effectiveness." + +https://www.military.com/space-force/enlisted-ranks.html + U.S. Space Force Technical Sergeant Rank + + + + + + + + + U.S. Space Force Technical Sergeant role + + + + + + + + + + + + + + + U.S. Under Secretary of the Air Force Role + + + + + + + + + + + + + + + U.S. Under Secretary of the Navy Role + + + + + + + + + U.S. Department of Defense Pay Grade + An Information Content Entity to which a Person is assigned, based on the grade or rank at which that Person is serving as a member of one of the United States Uniformed Services, and which is used to determine that Person's wages and benefits. + https://en.wikipedia.org/wiki/Uniformed_services_pay_grades_of_the_United_States + https://www.law.cornell.edu/uscode/text/37/201 + U.S. Uniformed Services Pay Grade + + + + + + + + + + + + + + + Bearers of this role hold the rank of Navy Admiral + U.S. Vice Chief of Naval Operations Role + + + + + + + + + + + + + + + U.S. Vice Chief of Staff of the Air Force Role + + + + + + + + + + + + + + + U.S. Vice Chief of Staff of the Army Role + + + + + + + + + U.S. Warrant Officer Pay Grade + + + + + + + + + Note here that 'airman' is used here as a general term for any member of the Air Force, and not for someone holding one of the E-1 to E-4 Airman ranks. All reference to those ranks, or the holder of those ranks, will involved capitalization, as in the labels for the corresponding classes. + An Enlisted Professional Military Education Requirement for Promotion in Military Rank that requires some U.S. Air Force enlisted airman to complete some Enlisted Professional Military Education Course, as a condition for promotion to some U.S. Air Force Rank. + U.S Air Force Enlisted Professional Military Education Requirement + + + + + + + + + + + + + + + + + + + + + + + A U.S. Navy Commissioned Officer who has some U.S. Navy Captain Rank and is the bearer of some U.S. Navy Captain Role. + U.S. Navy Captain + + + + + + + + + + + + + + + + + + + U.S. Navy Commissioned Officer Rank Insignia that bears some U.S. Navy Ensign Rank. + U.S. Navy Ensign Rank Insignia + + + + + + + + + Ukrainian Ground Forces Brigadier General Rank + + + + + + + + + Ukrainian Ground Forces Captain Rank + + + + + + + + + + + + + + + Ukrainian Ground Forces Chief Master Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Ukrainian Ground Forces Chief Sergeant Rank + + + + + + + + + Ukrainian Ground Forces Colonel Rank + + + + + + + + + Ukrainian Ground Forces Commissioned Officer Rank + + + + + + + + + Ukrainian Ground Forces Field Officer Rank + + + + + + + + + Ukrainian Ground Forces General Officer Rank + + + + + + + + + Ukrainian Ground Forces General Rank + + + + + + + + + Ukrainian Army Junior Enlisted Rank + Ukrainian Ground Forces Junior Enlisted Rank + + + + + + + + + Ukrainian Ground Forces Junior Lieutenant Rank + + + + + + + + + Ukrainian Ground Forces Junior Non-Commissioned Officer Rank + + + + + + + + + Ukrainian Ground Forces Junior Officer Rank + + + + + + + + + Molodshyi serzhant + Ukrainian Ground Forces Junior Sergeant Rank + + + + + + + + + Ukrainian Ground Forces Lieutenant Colonel Rank + + + + + + + + + Ukrainian Ground Forces Lieutenant General Rank + + + + + + + + + Ukrainian Ground Forces Lieutenant Rank + + + + + + + + + Ukrainian Ground Forces Major General Rank + + + + + + + + + Ukrainian Ground Forces Major Rank + + + + + + + + + + + + + + + + + + + + + Ukrainian Ground Forces Master Sergeant Rank + + + + + + + + + Ukrainian Army Non-Commissioned Officer Rank + Ukrainian Ground Forces Non-Commissioned Officer Rank + + + + + + + + + Ukrainian Ground Forces Recruit Rank + + + + + + + + + Ukrainian Ground Forces Senior Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Ukrainian Ground Forces Senior Master Sergeant Rank + + + + + + + + + Ukrainian Ground Forces Senior Non-Commissioned Officer Rank + + + + + + + + + + + + + + + + + + + + + Starshyi serzhant + Ukrainian Ground Forces Senior Sergeant Rank + + + + + + + + + + + + + + + + + + + + + Ukrainian Ground Forces Senior Soldier Rank + + + + + + + + + + + + + + + Serzhant + Ukrainian Ground Forces Sergeant Rank + + + + + + + + + + + + + + + Ukrainian Ground Forces Soldier Rank + + + + + + + + + + + + + + + + + + + + + Ukrainian Ground Forces Staff Sergeant Rank + + + + + + + + + Ukrainian Naval Infantry Brigadier General Rank + + + + + + + + + Ukrainian Naval Infantry Chief Master Sergeant Rank + + + + + + + + + Ukrainian Naval Infantry Chief Sergeant Rank + + + + + + + + + Ukrainian Naval Infantry Colonel Rank + + + + + + + + + Ukrainian Marine Corps Commissioned Officer Rank + Ukrainian Naval Infantry Commissioned Officer Rank + + + + + + + + + Ukrainian Naval Infantry General Officer Rank + + + + + + + + + Ukrainian Naval Infantry General Rank + + + + + + + + + Ukrainian Naval Infantry Junior Enlisted Rank + + + + + + + + + Ukrainian Naval Infantry Junior Non-Commissioned Officer Rank + + + + + + + + + Ukrainian Naval Infantry Junior Sergeant Rank + + + + + + + + + Ukrainian Naval Infantry Lieutenant Colonel Rank + + + + + + + + + Ukrainian Naval Infantry Lieutenant General Rank + + + + + + + + + Ukrainian Naval Infantry Major General Rank + + + + + + + + + Ukrainian Naval Infantry Major Rank + + + + + + + + + Ukrainian Naval Infantry Master Sergeant Rank + + + + + + + + + Ukrainian Naval Infantry Non-Commissioned Officer Rank + + + + + + + + + Ukrainian Naval Infantry Recruit Rank + + + + + + + + + Ukrainian Naval Infantry Senior Master Sergeant Rank + + + + + + + + + Ukrainian Naval Infantry Senior Non-Commissioned Officer Rank + + + + + + + + + Ukrainian Naval Infantry Senior Officer Rank + + + + + + + + + Ukrainian Naval Infantry Senior Sergeant Rank + + + + + + + + + Ukrainian Naval Infantry Senior Soldier Rank + + + + + + + + + Ukrainian Naval Infantry Sergeant Rank + + + + + + + + + Ukrainian Naval Infantry Soldier Rank + + + + + + + + + Ukrainian Naval Infantry Staff Sergeant Rank + + + + + + + + + Ukrainian Navy Admiral Rank + + + + + + + + + Ukrainian Navy Captain 1st Rank Rank + + + + + + + + + Ukrainian Navy Captain 2nd Rank Rank + + + + + + + + + Ukrainian Navy Captain 3rd Rank Rank + + + + + + + + + Ukrainian Navy Chief Master Starshina Rank + Ukrainian Navy Chief Master Petty Officer Rank + + + + + + + + + Holovnyy starshyna + Ukrainian Navy Chief Starshina Rank + Ukrainian Navy Chief Petty Officer Rank + + + + + + + + + Ukrainian Navy Commissioned Officer Rank + + + + + + + + + Ukrainian Navy Commodore Rank + + + + + + + + + Ukrainian Navy Flag Officer Rank + + + + + + + + + Ukrainian Navy Junior Enlisted Rank + + + + + + + + + Ukrainian Navy Junior Lieutenant Rank + + + + + + + + + Ukrainian Navy (Fleet Forces) Junior Non-Commissioned Officer Rank + + + + + + + + + Ukrainian Navy (Fleet Forces) Junior Officer Rank + + + + + + + + + Ukrainian Navy Lieutenant Captain Rank + + + + + + + + + Ukrainian Navy Lieutenant Rank + + + + + + + + + Ukrainian Navy Master Starshina Rank + Ukrainian Navy Master Chief Petty Officer Rank + + + + + + + + + https://en.wikipedia.org/wiki/Military_ranks_of_Ukraine + https://www.navalreview.ca/2021/06/naval-ranks-rcn-nato-and-allied-partners/ + Ukrainian Navy Non-Commissioned Officer Rank + + + + + + + + + Ukrainian Navy Rear Admiral Rank + + + + + + + + + Ukrainian Navy Sailor Rank + Ukrainian Navy Seaman Rank + + + + + + + + + Ukrainian Navy Senior Chief Starshina Rank + Ukrainian Navy Senior Chief Petty Officer Rank + + + + + + + + + Ukrainian Navy Senior Lieutenant Rank + + + + + + + + + Ukrainian Navy Senior Master Starshina Rank + Ukrainian Navy Senior Master Petty Officer Rank + + + + + + + + + Ukrainian Navy (Fleet Forces) Senior Officer Rank + + + + + + + + + Ukrainian Navy Senior Sailor Rank + Ukrainian Navy Senior Seaman Rank + + + + + + + + + Ukrainian Navy Staff Petty Officer Rank + Ukrainian Navy Staff Starshina Rank + + + + + + + + + Starshyna 1-oyi statti + Ukrainian Navy Starshina 1st Class Rank + Ukrainian Navy Petty Officer 1st Class Rank + + + + + + + + + Starshyna 2-oyi statti + Ukrainian Navy Starshina 2nd Class Rank + Ukrainian Navy Petty Officer 2nd Class Rank + + + + + + + + + Ukrainian Navy Vice Admiral Rank + + + + + + + + + + + + + + + U.S. Under Secretary of the Army Role + + + + + + + + + Variant Commissioned Officer Rank + + + + + + + + + Non-Commissioned Officer Rank which is a variation from the canonical signification of that rank. + Variant Non-Commissioned Officer Rank + + + + + + + + + 3 stars + Vice Admiral Rank + true + + + + + + + + + Vice Admiral Role + true + + + + + + + + + + + + + + + U.S. Vice Chief of Space Operations Role + + + + + + + + + W-1 + + + + + + + + + W-2 + + + + + + + + + W-3 + + + + + + + + + W-4 + + + + + + + + + W-5 + + + + + + + + + A Requirement for Promotion in Military Rank that requires some member of the U.S. Air Force to compete in the Weighted Airman Promotion System, including the completion of a Promotion Fitness Examination and a Specialty Knowledge Test. + WAPS Requirement for Promotion in U.S. Air Force Rank + + + + + + + + + + + + + + + WAPS Requirement for Promotion to U.S. Air Force Senior Master Sergeant Rank + + + + + + + + + A WAPS Requirement for Promotion in U.S. Air Force Rank that requires some U.S. Air Force Senior Airman to compete in the Weighted Airman Promotion System, as a condition for promotion to the U.S. Air Force Staff Sergeant Rank. + WAPS Requirement for Promotion to U.S. Air Force Staff Sergeant Rank + + + + + + + + + A WAPS Requirement for Promotion in U.S. Air Force Rank that requires some U.S. Air Force Staff Sergeant to compete in the Weighted Airman Promotion System, as a condition for promotion to the U.S. Air Force Technical Sergeant Rank. + WAPS Requirement for Promotion to U.S. Air Force Technical Sergeant Rank + + + + + + + + + A Warrant Officer NATO Rank Scale Code that is assigned to the most junior of the U.S. Armed Forces Warrant Officer Ranks, namely the U.S. Army Warrant Officer 1 Rank, the U.S. Marine Corps Warrant Officer 1 Rank, and the U.S. Navy Warrant Officer 4 Rank. + WO-1 + + + + + + + + + A Warrant Officer NATO Rank Scale Code that is assigned to the fourth highest of the U.S. Armed Forces Warrant Officer Ranks, namely the U.S. Army Chief Warrant Officer 2 Rank, the U.S. Marine Corps Chief Warrant Officer 2 Rank, the U.S. Navy Chief Warrant Officer 2 Rank, and the U.S. Coast Guard Chief Warrant Officer 2 Rank. + WO-2 + + + + + + + + + A Warrant Officer NATO Rank Scale Code that is assigned to the third highest of the U.S. Armed Forces Warrant Officer Ranks, namely the U.S. Army Chief Warrant Officer 3 Rank, the U.S. Marine Corps Chief Warrant Officer 3 Rank, the U.S. Navy Chief Warrant Officer 3 Rank, and the U.S. Coast Guard Chief Warrant Officer 3 Rank. + WO-3 + + + + + + + + + A Warrant Officer NATO Rank Scale Code that is assigned to the second highest of the U.S. Armed Forces Warrant Officer Ranks, namely the U.S. Army Chief Warrant Officer 4 Rank, the U.S. Marine Corps Chief Warrant Officer 4 Rank, the U.S. Navy Chief Warrant Officer 4 Rank, and the U.S. Coast Guard Chief Warrant Officer 4 Rank. + WO-4 + + + + + + + + + A Warrant Officer NATO Rank Scale Code that is assigned to the highest of the U.S. Armed Forces Warrant Officer Ranks, namely the U.S. Army Chief Warrant Officer 5 Rank, the U.S. Marine Corps Chief Warrant Officer 5 Rank, and the U.S. Navy Chief Warrant Officer 5 Rank. + WO-5 + + + + + + + + + An Act of Promotion to U.S. Army Brigadier General Rank, executed during a time of war, or during a time of national emergency declared by the Congress or President, in which some qualified U.S. Army Soldier who holds a rank below the U.S. Army Brigadier General Rank, is temporarily appointed in the U.S. Army Brigadier General Rank by the President. + 10 USC 603, "Appointments in time of war or national emergency" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section603&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Shane Babcock + War and National Emergency Promotion to U.S. Army Brigadier General Rank + + + + + + + + + A Temporary Promotion to U.S. Army Colonel Rank, executed during a time of war, or during a time of national emergency declared by the Congress or President, in which some qualified U.S. Army Soldier who holds a permant rank below the U.S. Army Colonel Rank, is temporarily appointed in the U.S. Army Colonel Rank by the President. + 10 USC 603, "Appointments in time of war or national emergency" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section603&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + War and National Emergency Promotion to U.S. Army Colonel Rank + + + + + + + + + A Temporary Promotion to U.S. Army First Lieutenant Rank, executed during a time of war, or during a time of national emergency declared by the Congress or President, in which some qualified U.S. Army Soldier who holds a rank below the U.S. Army First Lieutenant Rank, is temporarily appointed in the U.S. Army First Lieutenant Rank by the President. + 10 USC 603, "Appointments in time of war or national emergency" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section603&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + War and National Emergency Promotion to U.S. Army First Lieutenant Rank + + + + + + + + + A Temporary Promotion to U.S. Army Lieutenant Colonel Rank, executed during a time of war, or during a time of national emergency declared by the Congress or President, in which some qualified U.S. Army Soldier who holds a rank below the U.S. Army Lieutenant Colonel Rank, is temporarily appointed in the U.S. Army Lieutenant Colonel Rank by the President. + 10 USC 603, "Appointments in time of war or national emergency" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section603&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + War and National Emergency Promotion to U.S. Army Lieutenant Colonel Rank + + + + + + + + + An Act of Promotion to U.S. Army Major General Rank, executed during a time of war, or during a time of national emergency declared by the Congress or President, in which some qualified U.S. Army Soldier who holds a rank below the U.S. Army Major General Rank, is temporarily appointed in the U.S. Army Major General Rank by the President. + 10 USC 603, "Appointments in time of war or national emergency" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section603&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + War and National Emergency Promotion to U.S. Army Major General Rank + + + + + + + + + A Temporary Promotion to U.S. Army Major Rank, executed during a time of war, or during a time of national emergency declared by the Congress or President, in which some qualified U.S. Army Soldier who holds a rank below the U.S. Army Major Rank, is temporarily appointed in the U.S. Army Major Rank by the President. + 10 USC 603, "Appointments in time of war or national emergency" + +https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section603&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + War and National Emergency Promotion to U.S. Army Major Rank + + + + + + + + + NATO Rank Code that is assigned to U.S. Armed Forces Warrant Officer Ranks of different branches of the U.S. Armed Forces that are equivalent in grade. + Warrant Officer NATO Rank Code + + + + + + + + + This will be a defined class, with inferred subclasses including both warrant officer roles that are non-commissioned officer roles, and warrant officer roles given by virtue of commission. + Warrant Officer Role + + + + + + + + + Used in many air forces in Commonwealth nations. Equivalent to the rank of lieutenant colonel in the U.S. Air Force. + Wing Commander Rank + true + + + + + + + + + used in army and air force + Cadet Rank + + + + + + + + + used in navy + Midshipman Rank + + + + + + + + + + + + + + + + + + + + + + + Definitions for subclasses will all follow this basic pattern. But each definition will also be supplemented with a more familiar description of the quality pattern found on the relevant rank insignia. + A quality pattern, inhering in some Military Rank Insignia, that concretizes some Military Rank. + Military Rank Insignia Quality Pattern + + + + + + + + + subordinate officer rank + Student Officer Rank + + + + + + + + + + + + + + + + + + + Military rank insignia pattern that concretizes some 4-star military rank. + Four-Star Military Rank Insignia Pattern + + + + + + + + + An Act of Promotion to U.S. Army Sergeant First Class Rank wherein some U.S. Army Reserve Staff Sergeant is advanced the U.S. Army Sergeant Rank First Class Rank by some promotion authority. + Act of Promotion to U.S. Army Sergeant First Class Rank (USAR) + + + + + + + + + An Act of Promotion to U.S. Army Sergeant Major Rank wherein some U.S. Army Reserve Master Sergeant or U.S. Army Reserve First Sergeant is advanced to the U.S. Army Sergeant Major Rank by some promotion authority. + Act of Promotion to U.S. Army Sergeant Major Rank (USAR) + + + + + + + + + + + + + + + + + + + + + + + + + + + Only attain the rank after successful completion of basic military qualification (training). Trade specific qualification level 3. + Canadian Army Private (Basic) Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Canadian Army Private (Trained) Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Rank structure was based on British, and this was used to replace the rank of Staff Sergeant used at OR-7 in British Army. Notably, the latter is SNCO along with Sergeant (OR-5/6), whereas SNCO classification in Canadian Army only includes Sergeant (OR-5/6) + Usually responsible for training, discipline, welfare and of a company. + Canadian Army Adjudant Rank + Canadian Army Warrant Officer (OR-7) Rank + + + + + + + + + A U.S. Navy Enlisted Leadership Development Course Requirement that requires some U.S. Navy Junior Enlisted Sailor to complete a Foundational Leadership Development Course as a condition for advancement to the U.S. Navy Seaman Rank. + https://www.mynavyhr.navy.mil/Portals/55/Messages/NAVADMIN/NAV2019/NAV19185.txt?ver=A-pLJ9CU31C0SmXOnra6lw%3D%3D + +https://365chief.com/uploads/3/5/1/6/35163276/layingthekeel.pdf + +Replaces the previous Petty Officer Selectee Leadership Course requirement from: + +BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', paragraph 210a + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Foundational Leader Development Course Requirement (E-3) + + + + + + + + + A U.S. Navy Enlisted Leadership Development Course Requirement that requires some U.S. Navy Junior Enlisted Sailor to complete a Foundational Leadership Development Course as a condition for advancement to the U.S. Navy Petty Officer Third Class Rank. + https://www.mynavyhr.navy.mil/Portals/55/Messages/NAVADMIN/NAV2019/NAV19185.txt?ver=A-pLJ9CU31C0SmXOnra6lw%3D%3D + +https://365chief.com/uploads/3/5/1/6/35163276/layingthekeel.pdf + +Replaces the previous Petty Officer Selectee Leadership Course requirement from: + +BUPERS INSTRUCTION 1430.16, 'Advancement Manual for Enlisted Personnel of the U.S. Navy and U.S. Navy Reserve', paragraph 210a + +https://www.mynavyhr.navy.mil/Portals/55/Reference/Instructions/BUPERS/BUPERSINST_1430.16.pdf + Foundational Leader Development Course Requirement (E-4) + + + + + + + + + + + + + + + + + + + + + + + + + + + Enseigne de vaisseau de première classe + French Navy Ship-of-the-line Ensign, First Class Rank + + + + + + + + + + + + + + + + + + + + + Enseigne de vaisseau de deuxième classe + French Navy Ship-of-the-line Ensign, Second Class Rank + + + + + + + + + A Civilian Education Requirement for Promotion in Military Rank that requires some U.S. Army enlisted soldier to have obtained either a high school diploma or a GED, as a condition of eligibility for promotion to the U.S. Army Master Sergeant Rank. + Army Regulation 600–8–19, §4-2(3): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + High School Diploma/GED Requirement for Promotion to U.S. Army Master Sergeant Rank + + + + + + + + + A Civilian Education Requirement for Promotion in Military Rank that requires some U.S. Army enlisted soldier to have obtained either a high school diploma or a GED, as a condition of eligibility for promotion to the U.S. Army Sergeant First Class Rank. + Army Regulation 600–8–19, §4-2(3): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + High School Diploma/GED Requirement for Promotion to U.S. Army Sergeant First Class Rank + + + + + + + + + + + + + + + A Civilian Education Requirement for Promotion in Military Rank that requires some U.S. Army enlisted soldier to have obtained either a high school diploma or a GED, as a condition of eligibility for promotion to the U.S. Army Sergeant Major Rank. + Army Regulation 600–8–19, §4-2(3): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + High School Diploma/GED Requirement for Promotion to U.S. Army Sergeant Major Rank + + + + + + + + + + + + + + + + + + + + + A Civilian Education Requirement for Promotion in Military Rank that requires some U.S. Army enlisted soldier to have obtained either a high school diploma or a GED, as a condition of recommendation for promotion to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + High School Diploma/GED Requirement for Recommendation to U.S. Army Sergeant Rank + + + + + + + + + A Civilian Education Requirement for Promotion in Military Rank that requires some U.S. Army enlisted soldier to have obtained either a high school diploma or a GED, as a condition of recommendation for promotion to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + High School Diploma/GED Requirement for Recommendation to U.S. Army Staff Sergeant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Army Private, 1 Star Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Irish Army Private, 2 Star Rank + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Element to have served a minimum of 11 months in the E-4 pay grade in order to be considered by a promotion board for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Element do not appear before the promotion selection board for advancement to SGT. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Primary Zone TIG Requirement for Consideration for U.S. Army Sergeant Rank (ARE) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Multi-component Unit to have served a minimum of 11 months in the E-4 pay grade in order to be considered by a promotion board for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Multi-component Unit do not appear before the promotion selection board for advancement to SGT. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Primary Zone TIG Requirement for Consideration for U.S. Army Sergeant Rank (Multi-component Unit) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Troop Program Unit to have served a minimum of 11 months in the E-4 pay grade in order to be considered by a promotion board for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Troop Program Unit do not appear before the promotion selection board for advancement to SGT. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Primary Zone TIG Requirement for Consideration for U.S. Army Sergeant Rank (TPU) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Element to have served a minimum of 17 months in the E-5 pay grade in order to be considered by a promotion board for the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Element do not appear before the promotion selection board for advancement to SSG. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Primary Zone TIG Requirement for Consideration for U.S. Army Staff Sergeant Rank (ARE) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Multi-component Unit to have served a minimum of 17 months in the E-5 pay grade in order to be considered by a promotion board for the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Multi-component Unit do not appear before the promotion selection board for advancement to SSG. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Primary Zone TIG Requirement for Consideration for U.S. Army Staff Sergeant Rank (Multi-component Unit) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Troop Program Unit to have served a minimum of 17 months in the E-5 pay grade in order to be considered by a promotion board for the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Troop Program Unit do not appear before the promotion selection board for advancement to SSG. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Primary Zone TIG Requirement for Consideration for U.S. Army Staff Sergeant Rank (TPU) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Active Guard Reserve Corporal to have served a minimum of 11 months in the E-4 pay grade as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Board Appearance for U.S. Army Sergeant Rank (AGR) + + + + + + + + + + + + + + + + + + + + + There is also what is called 'mandatory list integration'. If a soldier has been eligible for integration into the promotion recommended list for the rank of SGT for one year within the primary zone, but has not yet been integrated into the promotion recommended list, then if the soldier has completed 47 months TIS and 23 months TIG, then the soldier will be integrated with all promotion points earned. + +It didn't seem that these should be construed as TIS and TIG requirements in the sense I have defined though, where these are defined as requirements pertaining to the enlisted soldier that is in consideration for promotion. Rather, these are requirements that require that the relevant military authorities must integrate a soldier once they complete the aforementioned TIS and TIG thresholds. + +See: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +p. 27, and p. 34, Table 3-1 + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (RA) that requires a Regular Army Corporal to have served a minimum of 11 months in the E-4 pay grade as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Board Appearance for U.S. Army Sergeant Rank (RA) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Active Guard Reserve Sergeant to have served a minimum of 17 months in the E-5 pay grade as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Board Appearance for U.S. Army Staff Sergeant Rank (AGR) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Active Guard Reserve Corporal to have served a minimum of 12 months in the E-4 pay grade as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-3 and Paragraph 3-22a.(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (AGR) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Element to have served a minimum of 11 months in the E-4 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (ARE) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Multi-component Unit to have served a minimum of 11 months in the E-4 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (Multi-component Unit) + + + + + + + + + + + + + + + + + + + + + Unlike in other definitions, this does not say that the U.S. Army Corporal must have served 18 months at their current rank in the E-4 pay grade. + +This is because while some serve at the CPL rank their entire time at E-4 (i.e. those that advanced directly from PFC to CPL) some serve at the rank of SPC in the E-4 pay grade before being laterally promoted to CPL. As noted in the annotations for 'U.S. Army Specialist Rank', in the past the rules allowed a qualfied soldier to advance directly from SPC to SGT, but now all SPCs must serve time as CPLs before being eligible for promotion to SGT. + +In that case, I assume that the TIG requirement would be a composite of time served in the two E-4 ranks in cases of lateral promotion. But I am not certain of this. This is because it is still uncertain whether or not there will be TIG requirements added following lateral promotions from SPC to CPL. In that case, it may turn out that there are further TIG requirements specifically for service at the CPL rank. + +"Corporals and specialists are both under the E-4 paygrade; that means a corporal, despite being considered a junior NCO and having more responsibilities, makes the same pay as a specialist. It is unclear whether the corporal rank will come with time-in-grade requirements or if pinning on the stripes will effectively be a placeholder for the soldier to finish up their time as an E-4." https://www.military.com/daily-news/2021/06/07/major-promotion-shift-all-soldiers-will-serve-corporal-moving-sergeant.html + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (RA) that requires a Regular Army Corporal to have served a minimum of 12 months in the E-4 pay grade as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-3 and Paragraph 3-22a.(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (RA) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Troop Program Unit to have served a minimum of 11 months in the E-4 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (TPU) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Active Guard Reserve Sergeant to have served a minimum of 18 months at their current rank in the E-5 pay grade as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-3 and Paragraph 3-22a.(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (AGR) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Element to have served a minimum of 18 months in the E-5 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (ARE) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Multi-component Unit to have served a minimum of 18 months in the E-5 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (Multi-component Unit) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that requires a Regular Army Sergeant to have served a minimum of 18 months at their current rank in the E-5 pay grade as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-3 and Paragraph 3-22a.(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Troop Program Unit to have served a minimum of 18 months in the E-5 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (TPU) + + + + + + + + + + + + + + + + + + + + + There is also what is called 'mandatory list integration'. If a soldier has been eligible for integration into the promotion recommended list for the rank of SGT for one year within the primary zone, but has not yet been integrated into the promotion recommended list, then if the soldier has completed 47 months TIS and 23 months TIG, then the soldier will be integrated with all promotion points earned. + +It didn't seem that these should be construed as TIS and TIG requirements in the sense I have defined though, where these are defined as requirements pertaining to the enlisted soldier that is in consideration for promotion. Rather, these are requirements that require that the relevant military authorities must integrate a soldier once they complete the aforementioned TIS and TIG thresholds. + +See: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +p. 27, and p. 34, Table 3-1 + A Primary Zone Time in Service Requirement for Promotion to U.S. Army Sergeant Rank (RA) that requires a Regular Army Corporal to have served a minimum of 35 months time in service as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIS Requirement for Promotion Board Appearance for U.S. Army Sergeant Rank (RA) + + + + + + + + + There is also what is called 'mandatory list integration'. If a soldier has been eligible for integration into the promotion recommended list for the rank of SSG for one year within the primary zone, but has not yet been integrated into the promotion recommended list, then if the soldier has completed 83 months TIS and 23 months TIG, then the soldier will be integrated with all promotion points earned. + +It didn't seem that these should be construed as TIS and TIG requirements in the sense I have defined though, where these are defined as requirements pertaining to the enlisted soldier that is in consideration for promotion. Rather, these are requirements that require that the relevant military authorities must integrate a soldier once they complete the aforementioned TIS and TIG thresholds. + +See: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +p. 27, and p. 34, Table 3-1 + A Primary Zone Time in Service Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that requires a Regular Army Sergeant to have served a minimum of 71 months time in service as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIS Requirement for Promotion Board Appearance for U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + A Primary Zone Time in Service Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that requires a Regular Army Sergeant to have served a minimum of 72 months time in service as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-3: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIS Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + + + + + + + + + + + + + A Primary Zone Time in Service Requirement for Promotion to U.S. Army Sergeant Rank (RA) that requires a Regular Army Corporal to have served a minimum of 36 months time in service as of the 1st day of the promotion month, in order to be selected by Headquarters, Deparment of the Army for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-3: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIS Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (RA) + + + + + + + + + There is also what is called 'mandatory list integration'. If a soldier has been eligible for integration into the promotion recommended list for the rank of SSG for one year within the primary zone, but has not yet been integrated into the promotion recommended list, then if the soldier has completed 83 months TIS and 23 months TIG, then the soldier will be integrated with all promotion points earned. + +It didn't seem that these should be construed as TIS and TIG requirements in the sense I have defined though, where these are defined as requirements pertaining to the enlisted soldier that is in consideration for promotion. Rather, these are requirements that require that the relevant military authorities must integrate a soldier once they complete the aforementioned TIS and TIG thresholds. + +See: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + +p. 27, and p. 34, Table 3-1 + A Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that requires a Regular Army Sergeant to have served a minimum of 17 months in their current rank at the E-5 pay grade as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Primary Zone TIG Requirement for Promotion Board Appearance for U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (RA) that applies to any Regular Army Corporal that is considered to be in the Primary Zone for the purposes of eligibility for promotion to the U.S. Army Sergeant Rank. + Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that applies U.S. Army Reserve Corporals that are considered to be in the Primary Zone for the purposes of eligibility for promotion to the U.S. Army Sergeant Rank. + Primary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that applies to any Regular Army Sergeant that is considered to be in the Primary Zone for the purposes of eligibility for promotion to the U.S. Army Staff Sergeant Rank. + Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion ito U.S. Army Staff Sergeant Rank (USAR) that applies to U.S. Army Reserve Sergeants that are considered to be in the Primary Zone for the purposes of eligibility for promotion to the U.S. Army Staff Sergeant Rank. + Primary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Sergeant Rank (RA) that applies to any Regular Army Corporal that is considered to be in the Primary Zone for the purposes of eligibility for promotion to the U.S. Army Sergeant Rank. + Primary Zone Time in Service Requirement for Promotion to U.S. Army Sergeant Rank (RA) + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that applies to any Regular Army Sergeant that is considered to be in the Primary Zone for the purposes of eligibility for promotion to the U.S. Army Staff Sergeant Rank. + Primary Zone Time in Service Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Aviator (basic) Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Aviator (trained) Rank + + + + + + + + + + + + + + + + + + + + + Royal Canadian Air Force Adjudant Rank + Royal Canadian Air Force Warrant Officer (OR-7) Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + Royal Canadian Navy Capitaine de vaisseau Rank + Royal Canadian Navy Captain(N) Rank + Senior Officer Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + In the Royal Canadian Navy, when the rank is typed, an 'N' is placed after 'Lieutenant' to indicate that it is a naval rather than air force or army rank. + Royal Canadian Navy Lieutenant de vaisseau Rank + Royal Canadian Navy Lieutenant(N) Rank + Junior Officer Rank + + + + + + + + + + + + + + + Russian Navy (Deck) Junior Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Russian Navy (Deck) Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + Russian Navy (Deck) Senior Lieutenant Rank + + + + + + + + + + + + + + + + + + + + + + + + + + + An SSD/DLC Requirement for Promotion in Military Rank that requires some U.S. Army Corporal to have completed both the Structured Self-Development course level 1 and the Distributed Leader Course level 1, as a condition for a promotion board appearance for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + SSD/DLC 1 Requirement for Promotion Board Appearance for U.S. Army Sergeant Rank + + + + + + + + + An SSD/DLC Requirement for Promotion in Military Rank that requires some U.S. Army Sergeant to have completed both the Structured Self-Development course level 2 and the Distributed Leader Course level 2, as a condition for a promotion board appearance for the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + SSD/DLC 2 Requirement for Promotion Board Appearance for U.S. Army Staff Sergeant Rank + + + + + + + + + Completion of SSD level 3 is a prerequisite for attendance to the Senior Leaders Course. + +https://en.wikipedia.org/wiki/United_States_Army_Sergeants_Major_Academy + An SSD/DLC Requirement for Promotion in Military Rank that requires some U.S. Army Staff Sergeant to have completed both the Structured Self-Development course level 3 and the Distributed Leader Course level 3, in order to be considered by a promotion selection board of the Headquarters of the Department of the Army for promotion to the U.S. Army Sergeant First Class Rank. + Paragraph 1-29: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + SSD/DLC 3 Requirement for Promotion Consideration for U.S. Army Sergeant First Class Rank + + + + + + + + + Completeion of SSD level 4 is a prerequisite for attendance to the Sergeants Major Course. + +https://en.wikipedia.org/wiki/United_States_Army_Sergeants_Major_Academy + An SSD/DLC Requirement for Promotion in Military Rank that requires some U.S. Army Sergeant First Class to have completed both the Structured Self-Development course level 4 and the Distributed Leader Course level 4, in order to be considered by a promotion selection board of the Headquarters of the Department of the Army for promotion to the U.S. Army Master Sergeant Rank. + Paragraph 1-29: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + SSD/DLC 4 Requirement for Promotion Consideration for U.S. Army Master Sergeant Rank + + + + + + + + + A U.S. Enlisted Professional Army Military Education Requirement that requires some U.S. Army soldier to have completed both a Structured Self-Development course and a Distributed Leader Course, as a condition for promotion to some U.S. Army Military Rank. + SSD/DLC Requirement for Promotion in Military Rank + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Element to have served a minimum of 5 months in the E-4 pay grade in order to be considered by a promotion board for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Element do not appear before the promotion selection board for advancement to SGT. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Secondary Zone TIG Requirement for Consideration for U.S. Army Sergeant Rank (ARE) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Multi-component Unit to have served a minimum of 5 months in the E-4 pay grade in order to be considered by a promotion board for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Multi-component Unit do not appear before the promotion selection board for advancement to SGT. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Secondary Zone TIG Requirement for Consideration for U.S. Army Sergeant Rank (Multi-component Unit) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Troop Program Unit to have served a minimum of 5 months in the E-4 pay grade in order to be considered by a promotion board for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Troop Program Unit do not appear before the promotion selection board for advancement to SGT. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Secondary Zone TIG Requirement for Consideration for U.S. Army Sergeant Rank (TPU) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Element to have served a minimum of 6 months in the E-5 pay grade in order to be considered by a promotion board for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Element do not appear before the promotion selection board for advancement to SSG. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Secondary Zone TIG Requirement for Consideration for U.S. Army Staff Sergeant Rank (ARE) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Multi-component Unit to have served a minimum of 6 months in the E-5 pay grade in order to be considered by a promotion board for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Multi-component Unit do not appear before the promotion selection board for advancement to SSG. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Secondary Zone TIG Requirement for Consideration for U.S. Army Staff Sergeant Rank (Multi-component Unit) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Troop Prgram Unit to have served a minimum of 6 months in the E-5 pay grade in order to be considered by a promotion board for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-2: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Soldiers serving in an Army Reserve Troop Program Unit do not appear before the promotion selection board for advancement to SSG. See AR600-8-19, paragraph 3-1c.(5)(b) + +The TIG requirement must be met as of the date the board convenes. + Secondary Zone TIG Requirement for Consideration for U.S. Army Staff Sergeant Rank (TPU) + + + + + + + + + A Secondary Zone Time in Grade Requirement Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Active Guard Reserve Corporal to have served a minimum of 5 months in the E-4 pay grade as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Board Appearance for U.S. Army Sergeant Rank (AGR) + + + + + + + + + + + + + + + + + + + + + A Secondary Zone Time in Grade Requirement Promotion to U.S. Army Sergeant Rank (RA) that requires a Regular Army Corporal to have served a minimum of 5 months in the E-4 pay grade as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Board Appearance for U.S. Army Sergeant Rank (RA) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Active Guard Reserve Sergeant to have served a minimum of 6 months in the E-5 pay grade as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Board Appearance for U.S. Army Staff Sergeant Rank (AGR) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Active Guard Reserve Corporal to have served a minimum of 6 months in the E-4 pay grade as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-3 and Paragraph 3-22a.(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (AGR) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Element to have served a minimum of 6 months in the E-4 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (ARE) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Multi-component Unit to have served a minimum of 6 months in the E-4 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (Multi-component Unit) + + + + + + + + + + + + + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (RA) that requires a Regular Army Corporal to have served a minimum of 6 months in the E-4 pay grade as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-3 and Paragraph 3-22a.(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (RA) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires a U.S. Army Corporal assigned to an Army Reserve Troop Program Unit to have served a minimum of 6 months in the E-4 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (TPU) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Active Guard Reserve Sergeant to have served a minimum of 7 months in the E-5 pay grade as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-3 and Paragraph 3-22a.(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (AGR) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Element to have served a minimum of 7 months in the E-5 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (ARE) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Multi-component Unit to have served a minimum of 7 months in the E-5 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (Multi-component Unit) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that requires a Regular Army Sergeant to have served a minimum of 7 months at their current rank in the E-5 pay grade as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-3 and Paragraph 3-22a.(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires a U.S. Army Sergeant assigned to an Army Reserve Troop Program Unit to have served a minimum of 7 months in the E-5 pay grade as of the 1st day of the promotion month, in order to be selected for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-4: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (TPU) + + + + + + + + + + + + + + + + + + + + + A Secondary Zone Time in Service Requirement for Promotion to U.S. Army Sergeant Rank (RA) that requires a Regular Army Corporal to have served a minimum of 17 months time in service as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIS Requirement for Promotion Board Appearance for U.S. Army Sergeant Rank (RA) + + + + + + + + + A Secondary Zone Time in Service Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that requires a Regular Army Sergeant to have served a minimum of 47 months time in service as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIS Requirement for Promotion Board Appearance for U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + + + + + + + + + + + + + A Secondary Zone Time in Service Requirement for Promotion to U.S. Army Sergeant Rank (RA) that requires a Regular Army Corporal to have served a minimum of 18 months time in service as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Sergeant Rank. + Paragraph 3-9, Table 3-3: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIS Requirement for Promotion Pin-on to U.S. Army Sergeant Rank (RA) + + + + + + + + + A Secondary Zone Time in Service Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that requires a Regular Army Sergeant to have served a minimum of 48 months time in service as of the 1st day of the promotion month, in order to be selected by Headquarters, Department of the Army for promotion pin-on to the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-3: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIS Requirement for Promotion Pin-on to U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + A Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that requires a Regular Army Sergeant to have served a minimum of 6 months at their current rank in the E-5 pay grade as of the 1st day of the board month, in order to be eligible for a promotion board appearance for the U.S. Army Staff Sergeant Rank. + Paragraph 3-9, Table 3-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Secondary Zone TIG Requirement for Promotion Board Appearance for U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (RA) that applies to any Regular Army Corporal that is considered to be in the Secondary Zone for the purposes of eligibility for promotion to the U.S. Army Sergeant Rank. + Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that applies to U.S. Army Reserve Corporals that are considered to be in the Secondary Zone for the purposes of eligibility for promotion to the U.S. Army Sergeant Rank. + Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) + + + + + + + + + RA and USAR AGR appear before promotion board 3-1(5)(a); USAR TPUs, AREs and MCUs will not 3-1(5)(a). + A Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that applies to any Regular Army Sergeant that is considered to be in the Secondary Zone for the purposes of eligibility for promotion to the U.S. Army Staff Sergeant Rank. + Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that applies to U.S. Army Reserve Sergeants that are considered to be in the Secondary Zone for the purposes of eligibility for promotion to the U.S. Army Staff Sergeant Rank. + Secondary Zone Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Sergeant Rank (RA) that applies to any Regular Army Soldier that is considered to be in the Secondary Zone for the purposes of eligibility for promotion to the U.S. Army Sergeant Rank. + Secondary Zone Time in Service Requirement for Promotion to U.S. Army Sergeant Rank (RA) + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) that applies to any Regular Army Sergeant that is considered to be in the Secondary Zone for the purposes of eligibility for promotion to the U.S. Army Staff Sergeant Rank. + Secondary Zone Time in Service Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is assigned to a Readiness Division Army Reserve Element, to have served a minimum of 36 months at their current rank in the E-7 pay grade, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraphs 5-5a., 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Master Sergeant Rank (Army Reserve Element) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is an Individual Mobilization Augmentee, to have served a minimum of 36 months at their current rank in the E-7 pay grade, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a Department of the Army promotion selection board convened by the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraphs 6-7 and 6-8, and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Master Sergeant Rank (Individual Mobilization Augmentee) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is assigned to Individual Ready Reserve, to have served a minimum of 36 months at their current rank in the E-7 pay grade, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Master Sergeant Rank (Individual Ready Reserve) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is assigned to Standy Reserve (Active Status List) to have served a minimum of 36 months at their current rank in the E-7 pay grade, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Master Sergeant Rank (Standby Reserve) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is assigned to a Readiness Division Troop Unit Program, to have served a minimum of 36 months at their current rank in the E-7 pay grade, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a unit headquarters centralized promotion selection board convened. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraphs 5-5a., 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Master Sergeant Rank (Troop Program Unit) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is assigned to a Readiness Division Multi-component Unit, to have served a minimum of 36 months at their current rank in the E-7 pay grade, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraphs 5-5a., 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Master Sergeant Rank (Multi-component Unit) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Private First Class Rank (USAR) that requires a U.S. Army Reserve Private Second Class, who is assigned to Individual Ready Reserve, to have served a minimum of 4 months at their current rank in the E-2 pay grade, in order to be considered for promotion to the U.S. Army Private First Class Rank. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Private First Class Rank (Individual Ready Reserve) + true + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Private First Class Rank (USAR) that requires a U.S. Army Reserve Private Second Class, who is an Individual Mobilization Augmentee, to have served a minimum of 4 months at their current rank in the E-2 pay grade, in order to be considered for promotion to the U.S. Army Private First Class Rank. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Private First Class Rank (Individual mobilization augmentee) + true + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Private First Class Rank (USAR) that requires a U.S. Army Reserve Private Second Class, who is assigned to Standy Reserve (Active Status List), to have served a minimum of 4 months at their current rank in the E-2 pay grade, in order to be considered for promotion to the U.S. Army Private First Class Rank. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Private First Class Rank (Standby Reserve) + true + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is assigned to a Readiness Division Army Reserve Element, to have served a minimum of 36 months at their current rank in the E-6 pay grade, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraphs 5-5a., 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Sergeant First Class Rank (Army Reserve Element) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is an Individual Mobilization Augmentee, to have served a minimum of 36 months at their current rank in the E-6 pay grade, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a Department of the Army promotion selection board convened by the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraphs 6-7 and 6-8, and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Sergeant First Class Rank (Individual Mobilization Augmentee) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is assigned to Individual Ready Reserve, to have served a minimum of 36 months at their current rank in the E-6 pay grade, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Sergeant First Class Rank (Individual Ready Reserve) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is assigned to a Readiness Division Multi-component Unit, to have served a minimum of 36 months at their current rank in the E-6 pay grade, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraphs 5-5a., 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Sergeant First Class Rank (Multi-component Unit) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is assigned to Standy Reserve (Active Status List) to have served a minimum of 36 months at their current rank in the E-6 pay grade, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Sergeant First Class Rank (Standy Reserve) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is assigned to a Readiness Division Troop Unit Program, to have served a minimum of 36 months at their current rank in the E-6 pay grade, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraphs 5-5a., 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Sergeant First Class Rank (Troop Unit Program) + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is assigned to a Readiness Division Army Reserve Element, to have served at the E-8 pay grade for a minimum of 36 months either: i) at the officer's current rank; or ii) in the case of a lateral promotion from Master Sergeant to First Sergeant, a total of 36 months between both ranks, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraphs 5-5a., 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + The promotion authority is a General-Officer who is the commander of the Army Reserve Element to which the soldier is assigned. The commander has the authority to convene selection boards, and the recommendation reports of the selection boards are to be reviewed by the commander for approval. Once approved, the names of the soldier's approved by the commander for promotion are integrated by the commander into the Army Reserve's Permanent Promotion Recommended List for the ranks of SFC-SGM. + +See Army Regulation 600–8–19, Ch. 5: +Paragraphs, 5-1c, 5-2a, 5-5a, 5-10, 5-12, 5-13. + TIG Requirement for Promotion to U.S. Army Sergeant Major Rank (Army Reserve Element) + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant Major Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is an Individual Mobilization Augmentee, to have served at the E-8 pay grade for a minimum of 36 months either: i) at the officer's current rank; or ii) in the case of a lateral promotion from Master Sergeant to First Sergeant, a total of 36 months between both ranks, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a Department of the Army promotion selection board convened by the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraphs 6-7 and 6-8, and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Sergeant Major Rank (Individual Mobilization Augmentee) + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is assigned to Individual Ready Reserve, to have served at the E-8 pay grade for a minimum of 36 months either: i) at the officer's current rank; or ii) in the case of a lateral promotion from Master Sergeant to First Sergeant, a total of 36 months between both ranks, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Sergeant Major Rank (Individual Ready Reserve) + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is assigned to a Readiness Division Multi-component Unit, to have served at the E-8 pay grade for a minimum of 36 months either: i) at the officer's current rank; or ii) in the case of a lateral promotion from Master Sergeant to First Sergeant, a total of 36 months between both ranks, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraphs 5-5a., 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + The promotion authority is a General-Officer who is the commander of the Multi-component unit to which the soldier is assigned. The commander has the authority to convene selection boards, and the recommendation reports of the selection boards are to be reviewed by the commander for approval. Once approved, the names of the soldier's approved by the commander for promotion are integrated by the commander into the Army Reserve's Permanent Promotion Recommended List for the ranks of SFC-SGM. + +See Army Regulation 600–8–19, Ch. 5: +Paragraphs, 5-1c, 5-2a, 5-5a, 5-10, 5-12, 5-13. + TIG Requirement for Promotion to U.S. Army Sergeant Major Rank (Multi-component Unit) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 36 + + + + + + + + + + + + + + + + + + + + + + + + + + The ranks of MSG and 1SG are lateral ranks within the E-8 pay grade. This TIG requirement is such that if a soldier completes 20 months at the rank of MSG, and 16 months at the rank of 1SG, then that soldier has fulfilled the TIG requirement to be considered for promotion to the SGM rank. + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is assigned to Standby Reserve (Active Status List), to have served at the E-8 pay grade for a minimum of 36 months either: i) at the officer's current rank; or ii) in the case of a lateral promotion from Master Sergeant to First Sergeant, a total of 36 months between both ranks, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIG Requirement for Promotion to U.S. Army Sergeant Major Rank (Standby Reserve) + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is assigned to a Readiness Division Troop Program Unit, to have served at the E-8 pay grade for a minimum of 36 months either: i) at the officer's current rank; or ii) in the case of a lateral promotion from Master Sergeant to First Sergeant, a total of 36 months between both ranks, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraphs 5-5a., 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + The promotion authority is a General-Officer who is the commander of the Troop Unit Program to which the soldier is assigned. The commander has the authority to convene selection boards, and the recommendation reports of the selection boards are to be reviewed by the commander for approval. Once approved, the names of the soldier's approved by the commander for promotion are integrated by the commander into the Army Reserve's Permanent Promotion Recommended List for the ranks of SFC-SGM. + +See Army Regulation 600–8–19, Ch. 5: +Paragraphs, 5-1c, 5-2a, 5-5a, 5-10, 5-12, 5-13. + TIG Requirement for Promotion to U.S. Army Sergeant Major Rank (Troop Program Unit) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 12 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is assigned to a Readiness Division Army Reserve Element, to have served a minimum 12 years time in service, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraph 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Master Sergeant Rank (Army Reserve Element) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 12 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is assigned to Individual Ready Reserve, to have served a minimum 12 years time in service, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Master Sergeant Rank (Individual Ready Reserve) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 12 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is an Individual Mobilization Augmentee, to have served a minimum 12 years time in service, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a Department of the Army promotion selection board convened by the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(b) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Master Sergeant Rank (Individual mobilization augmentee) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 12 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is assigned to a Readiness Division Multi-component Unit, to have served a minimum 12 years time in service, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraph 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Master Sergeant Rank (Multi-component Unit) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 12 + + + + + + + + + + + + + + + + + + + + + + + + + + Promotion to the ranks of SFC, MSG and SGM are centralized to the Headquarters, Department of the Army. Soldiers do not appear before a promotion board themselves, and soldiers' unit commanders play no role in the selection process. The selection board consists of senior NCOs at the HQDA who select the best qualified soldiers for placement on the Permanent Promotion Recommended List. + +See p. 74: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + A Time in Service Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is assigned to Standby Reserve (Active Status List), to have served a minimum 12 years time in service, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Master Sergeant Rank (Standby Reserve) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 12 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) that requires a U.S. Army Reserve Sergeant First Class, who is assigned to a Readiness Division Troop Program Unit, to have served a minimum 12 years time in service, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraph 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Master Sergeant Rank (Troop Program Unit) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + The promotion authority is a General-Officer who is the commander of the Army Reserve Element to which the soldier is assigned. The commander has the authority to convene selection boards, and the recommendation reports of the selection boards are to be reviewed by the commander for approval. Once approved, the names of the soldier's approved by the commander for promotion are integrated by the commander into the Army Reserve's Permanent Promotion Recommended List for the ranks of SFC-SGM. + +See Army Regulation 600–8–19, Ch. 5: +Paragraphs, 5-1c, 5-2a, 5-5a, 5-10, 5-12, 5-13. + A Time in Service Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is assigned to a Readiness Division Army Reserve Element, to have served a minimum 6 years time in service, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraph 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant First Class Rank (Army Reserve Element) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + TIS requirements for Individual Ready Reserve soldiers are non-waiverable. Per Army Regulation 600–8–19, 6-3(l)(m), 6-6. + A Time in Service Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is assigned to Individual Ready Reserve, to have served a minimum 6 years time in service, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant First Class Rank (Individual Ready Reserve) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + 10/16/21: I am not sure if the promotion board in question is at HQDA. In Army Regulation 600–8–19, paragrapn 6-5(b) it only mentions Department of the Army selection boards, whereas in other parts of the regulation it is explicit that the selection board is at HQDA. Promotion boards are convened by the CG, HRC, per 6-5(b) and 6-7. + +Notice that for Individual Ready Reserve and Standby Reserve soldiers there are separate selection boards. + TIS requirements for Individual mobilization augmentee soldiers are non-waiverable. Per Army Regulation 600–8–19, 6-3(l)(m), 6-6. + A Time in Service Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is an Individual Mobilization Augmentee, to have served a minimum 6 years time in service, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a Department of the Army promotion selection board convened by the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(b) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant First Class Rank (Individual mobilization augmentee) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + The promotion authority is a General-Officer who is the commander of the Multi-component unit to which the soldier is assigned. The commander has the authority to convene selection boards, and the recommendation reports of the selection boards are to be reviewed by the commander for approval. Once approved, the names of the soldier's approved by the commander for promotion are integrated by the commander into the Army Reserve's Permanent Promotion Recommended List for the ranks of SFC-SGM. + +See Army Regulation 600–8–19, Ch. 5: +Paragraphs, 5-1c, 5-2a, 5-5a, 5-10, 5-12, 5-13. + A Time in Service Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is assigned to a Readiness Division Multi-component Unit, to have served a minimum 6 years time in service, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraph 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant First Class Rank (Multi-component Unit) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + + + + + + + TIS requirements for Standby Reserve soldiers are non-waiverable. Per Army Regulation 600–8–19, 6-3(l)(m), 6-6. + A Time in Service Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) that requires a U.S. Army Reserve Staff Sergeant, who is assigned to Standy Reserve (Active Status List), to have served a minimum 6 years time in service, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant First Class Rank (Standy Reserve) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + + + + + + + The promotion authority is a General-Officer who is the commander of the Troop Program Unit to which the soldier is assigned. The commander has the authority to convene selection boards, and the recommendation reports of the selection boards are to be reviewed by the commander for approval. Once approved, the names of the soldier's approved by the commander for promotion are integrated by the commander into the Army Reserve's Permanent Promotion Recommended List for the ranks of SFC-SGM. + +See Army Regulation 600–8–19, Ch. 5: +Paragraphs, 5-1c, 5-2a, 5-5a, 5-10, 5-12, 5-13. + A U.S. Army Reserve TIS Requirement for Promotion to U.S. Army Sergeant First Class Rank that requires a U.S. Army Reserve Staff Sergeant, who is assigned to a Readiness Division Troop Program Unit, to have served a minimum 6 years time in service, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraph 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant First Class Rank (Troop Program Unit) + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is assigned to a Readiness Division Army Reserve Element, to have served a minimum 17 years time in service, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraph 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant Major Rank (Army Reserve Element) + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is assigned to Individual Ready Reserve, to have served a minimum 17 years time in service, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant Major Rank (Individual Ready Reserve) + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is an Individual Mobilization Augmentee, to have served a minimum 17 years time in service, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a Department of the Army promotion selection board convened by the Commanding General, Human Resources Command. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(b) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant Major Rank (Individual mobilization augmentee) + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is assigned to a Readiness Division Multi-component Unit, to have served a minimum 17 years time in service, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraph 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant Major Rank (Multi-component Unit) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 17 + + + + + + + + + + + + + + + + + + + + + + + + + + Promotion to the ranks of SFC, MSG and SGM are centralized to the Headquarters, Department of the Army. Soldiers do not appear before a promotion board themselves, and soldiers' unit commanders play no role in the selection process. The selection board consists of senior NCOs at the HQDA who select the best qualified soldiers for placement on the Permanent Promotion Recommended List. + +See p. 74: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + A Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is assigned to Standby Reserve (Active Status List), to have served a minimum 17 years time in service, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by an Army Reserve Troop Program Unit promotion board. + Army Regulation 600–8–19, Chapter 6, Promotion of Individual Ready Reserve, Individual Mobilization Augmentee, and Standby Reserve (Active Status List) Soldiers + +Paragraph 6-5(c) and Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant Major Rank (Standby Reserve) + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank (USAR) that requires a U.S. Army Reserve Master Sergeant or First Sergeant, who is assigned to a Readiness Division Troop Program Unit, to have served a minimum 17 years time in service, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a unit headquarters centralized promotion selection board. + Army Regulation 600–8–19, Chapter 5 Centralized promotions (sergeant first class, master sergeant, and sergeant major) for United States Army Reserve Soldiers assigned to troop program units, Army Reserve elements, or multi-component commands or units + +See especially paragraph 5-7j. and 5-10: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + TIS Requirement for Promotion to U.S. Army Sergeant Major Rank (Troop Program Unit) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that requires some U.S. Air Force First Lieutenant serving in the Regular Air Force to have completed a minimum of 2 years in the O-2 Pay Grade, in order to be considered by a promotion selection board for promotion to the U.S. Air Force Captain Rank. + Title 10, U.S.C., Section 619(a)(1)(A): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Air Force Captain Rank (REGAF) + + + + + + + + + A Central Selection Board is responsible for considering for promotion officers seeking advancement to any rank of major through major general. + +See p. 90 of "Air Force Guidance Memorandum to AFI 36-2501, Officer Promotions and Selective +Continuation" +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2501/afi36-2501.pdf + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that requires some U.S. Air Force Lieutenant Colonel to have completed a minimum of 3 years in the O-5 Pay Grade, in order to be considered by a Central Selection Board for promotion to the U.S. Air Force Colonel Rank. + Title 10, U.S.C., Section 619(a)(2)(A): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Air Force Colonel Rank (REGAF) + + + + + + + + + A Central Selection Board is responsible for considering for promotion officers seeking advancement to any rank of major through major general. + +See p. 90 of "Air Force Guidance Memorandum to AFI 36-2501, Officer Promotions and Selective +Continuation" +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2501/afi36-2501.pdf + A Time in Grade Requirement for Promotion in U.S. Air Force Military Rank that requires some U.S. Air Force Major to have completed a minimum 3 years in the O-4 Pay Grade, in order to be considered by a Central Selection Board for promotion to the U.S. Air Force Lieutenant Colonel Rank. + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that requires some U.S. Air Force First Lieutenant to have completed a minimum of 3 years in the O-4 Pay Grade, in order to be considered by a Central Selection Board for promotion to the U.S. Air Force Lieutenant Colonel Rank. + Title 10, U.S.C., Section 619(a)(2)(A): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Air Force Lieutenant Colonel Rank (REGAF) + + + + + + + + + A Central Selection Board is responsible for considering for promotion officers seeking advancement to any rank of major through major general. + +See p. 90 of "Air Force Guidance Memorandum to AFI 36-2501, Officer Promotions and Selective +Continuation" +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2501/afi36-2501.pdf + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that requires some U.S. Air Force Captain to have completed a minimum of 3 years in the O-3 Pay Grade, in order to be considered by a Central Selection Board for promotion to the U.S. Air Force Major Rank. + Title 10, U.S.C., Section 619(a)(2)(A): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Air Force Major Rank (REGAF) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that applies specifically to Airmen serving in the U.S. Air Force Reserve. + 'Airmen' is used here as the general term for any Person that is a member of the U.S. Air Force (as opposed to the E-2 U.S. Air Force Airman Rank). + Shane Babcock + See table based on AFI 36-2504 here: +https://www.rand.org/paf/projects/dopma-ropma/promotion-and-appointments/promotion-timing-zones-and-opportunity.html + Time in Grade Requirement for Promotion in U.S. Air Force Rank (AFR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that applies specifically to airmen serving in the U.S. Air National Guard. + Shane Babcock + See table based on AFI 36-2504 here: +https://www.rand.org/paf/projects/dopma-ropma/promotion-and-appointments/promotion-timing-zones-and-opportunity.html + Time in Grade Requirement for Promotion in U.S. Air Force Rank (ANG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank that applies specifically to Airmen serving in the Regular U.S. Air Force. + REGAF Commissioned Officer TIG are found in AFI 36-2501 (link broken now) + Time in Grade Requirement for Promotion in U.S. Air Force Rank (REGAF) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank that applies specifically to Soldiers serving in the Army National Guard. + Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank that applies specifically to Soldiers serving in the United States Regular Army. + Time in Grade Requirement for Promotion in U.S. Army Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank that applies specifically to Soldiers serving in the United States Army Reserve. + There are different types of promotion selection boards in the United States Army Reserve promotion system. Mandatory selection boards on the one hand, and USAR Troop Unit Program (TPU) and USAR Active Guard Reserve (AGR) position vacancy boards. + +Mandatory selection boards consider commissioned officers for promotion to the grades of CPT through LTC, and warrant officers for promotion to the grades of CW3 and CW4, without regards to position vacancies in the next higher grade. They are convened each year. See: Army Regulation 135–155, 2-10a. +Of note, officers recieve their first consideration for promotion by a mandatory board well in advance of the date that the officer will complete their TIG requirements. See: Army Regulation 135–155, 2-10b. + +It is different for USAR TPU and AGR position vacancy boards. Commissioned officers are considered for promotion to the grades of CPT through COL, and warrant officer for promotion to the grades of CW3 and CW4, in order to fill position vacancies in USAR units. See: Army Regulation 135–155, 2-13b. & 2-14b. +Of note, officers are only eligible to be considered by position vacancy boards if they have completed their TIG requirements by the day before the convening date of the board. See: Army Regulation 135–155, 2-13b.(1) & 2-14b.(1) + Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (AFR) which requires a U.S. Air Force Senior Master Sergeant serving in the Air Force Reserve to have served a minimum of 24 months in the E-8 Pay Grade in order to be eligible for promotion to the U.S. Air Force Chief Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 8.2. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Shane Babcock + Time in Grade Requirement for Promotion to Chief Master Sergeant Rank (AFR) + + + + + + + + + ARNG uses 'immediate' promotions for the Junior Enlisted Ranks, as opposed to automatic promotions in the RA and USAR. + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires a U.S. Army National Guard Private Second Class to have served a minimum of 4 months in their current rank at the E-2 pay grade, in order to be immediately promoted to the U.S. Army Private First Class Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to Private First Class Rank (ARNG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (AFR) which requires a U.S. Air Force Airman serving in the Air Force Reserve to have served a minimum of 6 months in the E-2 Pay Grade in order to be eligible for promotion to the U.S. Air Force Airman First Class Rank. + AIR FORCE INSTRUCTION 36-2502, Table 8.2. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Shane Babcock + Time in Grade Requirement for Promotion to U.S. Air Force Airman First Class Rank (AFR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (ANG) which requires a U.S. Air Force Airman serving in the Air National Guard to have served a minimum of 6 months in the E-2 Pay Grade in order to be eligible for promotion to the U.S. Air Force Airman First Class Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Airman First Class Rank (ANG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (AFR) which requires a U.S. Air Force Airman Basic serving in the Air Force Reserve to have served a minimum of 6 months in the E-1 Pay Grade in order to be eligible for promotion to the U.S. Air Force Airman Rank. + AIR FORCE INSTRUCTION 36-2502, Table 8.2. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Shane Babcock + Time in Grade Requirement for Promotion to U.S. Air Force Airman Rank (AFR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (ANG) which requires a U.S. Air Force Airman Basic serving in the Air National Guard to have served a minimum of 6 months in the E-1 Pay Grade in order to be eligible for promotion to the U.S. Air Force Airman Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Airman Rank (ANG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (ANG) which requires a U.S. Air Force Senior Master Sergeant serving in the Air National Guard to have served a minimum of 24 months in the E-8 Pay Grade in order to be eligible for promotion to the U.S. Air Force Chief Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Chief Master Sergeant Rank (ANG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (AFR) which requires a U.S. Air Force Technical Sergeant serving in the Air Force Reserve to have served a minimum of 24 months in the E-6 Pay Grade in order to be eligible for promotion to the U.S. Air Force Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 8.2. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Shane Babcock + Time in Grade Requirement for Promotion to U.S. Air Force Master Sergeant Rank (AFR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (ANG) which requires a U.S. Air Force Technical Sergeant serving in the Air National Guard to have served a minimum of 24 months in the E-6 Pay Grade in order to be eligible for promotion to the U.S. Air Force Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Master Sergeant Rank (ANG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (AFR) which requires a U.S. Air Force Airman First Class serving in the Air Force Reserve to have served a minimum of 8 months in the E-3 Pay Grade in order to be eligible for promotion to the U.S. Air Force Senior Airman Rank. + AIR FORCE INSTRUCTION 36-2502, Table 8.2. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Shane Babcock + Time in Grade Requirement for Promotion to U.S. Air Force Senior Airman Rank (AFR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (ANG) which requires a U.S. Air Force Airman serving in the Air National Guard to have served a minimum of 12 months in the E-3 Pay Grade in order to be eligible for promotion to the U.S. Air Force Senior Airman Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Senior Airman Rank (ANG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (AFR) which requires a U.S. Air Force Master Sergeant serving in the Air Force Reserve to have served a minimum of 24 months in the E-7 Pay Grade in order to be eligible for promotion to the U.S. Air Force Senior Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 8.2. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Shane Babcock + Time in Grade Requirement for Promotion to U.S. Air Force Senior Master Sergeant Rank (AFR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (ANG) which requires a U.S. Air Force Master Sergeant serving in the Air National Guard to have served a minimum of 24 months in the E-7 Pay Grade in order to be eligible for promotion to the U.S. Air Force Senior Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Senior Master Sergeant Rank (ANG) + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Military Rank that requires a U.S. Air Force Master Sergeant to have completed a minimum of 20 months in the E-7 Pay Grade in order to be eligible for promotion to the U.S. Air Force Senior Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 2.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Senior Master Sergeant Rank (REGAF) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (AFR) which requires a U.S. Air Force Senior Airman serving in the Air Force Reserve to have served a minimum of 12 months in the E-4 Pay Grade in order to be eligible for promotion to the U.S. Air Force Staff Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 8.2. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Shane Babcock + Time in Grade Requirement for Promotion to U.S. Air Force Staff Sergeant Rank (AFR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (ANG) which requires a U.S. Air Force Senior Airman serving in the Air National Guard to have served a minimum of 12 months in the E-4 Pay Grade in order to be eligible for promotion to the U.S. Air Force Staff Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Staff Sergeant Rank (ANG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (AFR) which requires a U.S. Air Force Staff Sergeant serving in the Air Force Reserve to have served a minimum of 24 months in the E-5 Pay Grade in order to be eligible for promotion to the U.S. Air Force Technical Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 8.2. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Shane Babcock + Time in Grade Requirement for Promotion to U.S. Air Force Technical Sergeant Rank (AFR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Air Force Rank (ANG) which requires a U.S. Air Force Staff Sergeant serving in the Air National Guard to have served a minimum of 24 months in the E-5 Pay Grade in order to be eligible for promotion to the U.S. Air Force Technical Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Grade Requirement for Promotion to U.S. Air Force Technical Sergeant Rank (ANG) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army First Lieutenant serving in the Regular Army to have served a minimum of 2 years at their current rank in the O-2 pay grade, in order to be considered for promotion to the U.S. Army Captain Rank by a promotion selection board of the Headquarters, Department of the Army. + Paragraph 2-7c(3): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + +Exception: the Secretary of the Army may prescribe a longer TIG requirement based on the needs of the Army. + +See also: + +Title 10, U.S.C., Section 619(a)(1)(A): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Army Captain Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army First Lieutenant serving in the Army Reserve to have served a minimum of 2 years at their current rank in the O-2 pay grade, in order to be eligible for promotion to the U.S. Army Captain Rank. + Army Regulation 135–155, Table 2-1 (p. 9): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/r135_155.pdf + Time in Grade Requirement for Promotion to U.S. Army Captain Rank (USAR) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 18 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army Warrant Officer 1 serving in the Regular Army to have served a minimum of 18 months active duty at their current rank in the W-1 pay grade, in order to be eligible for promotion to the U.S. Army Chief Warrant Officer 2 Rank. + Paragraph 2-7c(1): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Time in Grade Requirement for Promotion to U.S. Army Chief Warrant Officer 2 Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Warrant Officer 1 serving in the Army Reserve to have served a minimum of 2 years at their current rank in the W-1 pay grade, in order to be eligible for promotion to the U.S. Army Chief Warrant Officer 2 Rank. + Army Regulation 135–155, Table 2-3 (p. 10): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/r135_155.pdf + Time in Grade Requirement for Promotion to U.S. Army Chief Warrant Officer 2 Rank (USAR) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires some U.S. Army Chief Warrant Officer 2 serving in the Regular Army to have served a minimum of 2 years active duty at their current rank in the W-2 pay grade, in order to be considered for promotion to the U.S. Army Chief Warrant Officer 3 Rank by a promotion selection board of the Headquarters, Department of the Army. + Paragraph 2-7c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Time in Grade Requirement for Promotion to U.S. Army Chief Warrant Officer 3 Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Chief Warrant Officer 2 serving in the Army Reserve to have served a minimum of 5 years at their current rank in the W-2 pay grade, in order to be eligible for promotion to the U.S. Army Chief Warrant Officer 3 Rank. + Army Regulation 135–155, Table 2-3 (p. 10): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/r135_155.pdf + Time in Grade Requirement for Promotion to U.S. Army Chief Warrant Officer 3 Rank (USAR) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank that requires a U.S. Army Chief Warrant Officer 3 serving in the Regular Army to have served a minimum of 2 years active duty at their current rank in the W-3 pay grade, in order to be considered for promotion to the U.S. Army Chief Warrant Officer 4 Rank by a promotion selection board of the Headquarters, Department of the Army. + Paragraph 2-7c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Time in Grade Requirement for Promotion to U.S. Army Chief Warrant Officer 4 Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Chief Warrant Officer 3 serving in the Army Reserve to have served a minimum of 5 years at their current rank in the W-3 pay grade, in order to be eligible for promotion to the U.S. Army Chief Warrant Officer 4 Rank. + Army Regulation 135–155, Table 2-3 (p. 10): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/r135_155.pdf + Time in Grade Requirement for Promotion to U.S. Army Chief Warrant Officer 4 Rank (USAR) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army Chief Warrant Officer 4 serving in the Regular Army to have served a minimum of 2 years active duty at their current rank in the W-4 pay grade, in order to be considered for promotion to the U.S. Army Chief Warrant Officer 5 Rank by a promotion selection board of the Headquarters, Department of the Army. + Paragraph 2-7c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + Time in Grade Requirement for Promotion to U.S. Army Chief Warrant Officer 5 Rank (RA) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3 + + + + + + + + + + + + + + + + + + + + + + + + + + "If selected, officers may be promoted without regard to any additional TIG requirements, except as provided in paragraph 2–7c(4)(b)": https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + +From paragraph 2–7c(4)(b): "To the extent permitted by 10 USC 622, promotion zones for Medical or Dental Corps officers will be established to ensure that those in the zone, if selected, will be promoted on the sixth anniversary of their ADOR, except as provided in this regulation." + +ADOR = 'Active Date of Rank' + Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army Lieutenant Colonel serving in the Regular Army to have served a minimum of 3 years at their current rank in the O-5 pay grade, in order to be considered for promotion to the U.S. Army Colonel Rank by a promotion selection board of the Headquarters, Department of the Army. + Paragraph 2-7c(4): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + +"This requirement may be waived by the SECARMY only for consideration from below the zone (BZ)" + +Also: + +Title 10, U.S.C., Section 619(a)(2)(A): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Army Colonel Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Lieutenant Colonel serving in the Army Reserve to have served a minimum of 3 years at their current rank in the O-5 pay grade, in order to be eligible for promotion to the U.S. Army Colonel Rank. + Army Regulation 135–155, Table 2-1 (p. 9): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/r135_155.pdf + Time in Grade Requirement for Promotion to U.S. Army Colonel Rank (USAR) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + + + + + + + The 6 months TIG requirement can be waived to 3 months under certain circumstances. + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a Regular U.S. Army Private First Class to have served a minimum of 6 months at their current rank in the E-3 pay grade, in order to be considered for promotion to the U.S. Army Corporal Rank. + https://www.military.com/army/enlisted-ranks.html + +(Couldn't find this information in the relevant Army Publication) + Time in Grade Requirement for Promotion to U.S. Army Corporal Rank (RA) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 18 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army Second Lieutenant serving in the Regular Army to have served a minimum of 18 months at their current rank in the O-1 pay grade, in order to be recommended for promotion to the U.S. Army First Lieutenant Rank. + Paragraph 2-7c(3): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + +Exception: the Secretary of the Army may prescribe a longer TIG requirement based on the needs of the Army. + Time in Grade Requirement for Promotion to U.S. Army First Lieutenant Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Second Lieutenant serving in the Army Reserve to have served a minimum of 2 years at their current rank in the O-1 pay grade, in order to be eligible for promotion to the U.S. Army First Lieutenant Rank. + Army Regulation 135–155, Table 2-1 (p. 9): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/r135_155.pdf + Note that TIG requirement is longer than the 18 months prescribed by 10 U.S. Code 619. + Time in Grade Requirement for Promotion to U.S. Army First Lieutenant Rank (USAR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Major serving in the Army Reserve to have served a minimum of 4 years at their current rank in the O-4 pay grade, in order to be eligible for promotion to the U.S. Army Lieutenant Colonel Rank. + Army Regulation 135–155, Table 2-1 (p. 9): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/r135_155.pdf + Time in Grade Requirement for Promotion to U.S. Army Lieutenant Colonel Rank (USAR) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3 + + + + + + + + + + + + + + + + + + + + + + + + + + "If selected, officers may be promoted without regard to any additional TIG requirements, except as provided in paragraph 2–7c(4)(b)": https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + +From paragraph 2–7c(4)(b): "To the extent permitted by 10 USC 622, promotion zones for Medical or Dental Corps officers will be established to ensure that those in the zone, if selected, will be promoted on the sixth anniversary of their ADOR, except as provided in this regulation." + +ADOR = 'Active Date of Rank' + Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army Major serving in the Regular Army to have served a minimum of 3 years at their current rank in the O-4 pay grade, in order to be considered for promotion to the U.S. Army Lieutenant Colonel Rank by a promotion selection board of the Headquarters, Department of the Army. + Paragraph 2-7c(4): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + +"This requirement may be waived by the SECARMY only for consideration from below the zone (BZ)" + +Also: + +Title 10, U.S.C., Section 619(a)(2)(A): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Army Lieutenant Colonel Rank (RA) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3 + + + + + + + + + + + + + + + + + + + + + + + + + + "If selected, officers may be promoted without regard to any additional TIG requirements, except as provided in paragraph 2–7c(4)(b)": https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + +From paragraph 2–7c(4)(b): "To the extent permitted by 10 USC 622, promotion zones for Medical or Dental Corps officers will be established to ensure that those in the zone, if selected, will be promoted on the sixth anniversary of their ADOR, except as provided in this regulation." + +ADOR = 'Active Date of Rank' + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army Captain serving in the Regular Army to have served a minimum of 3 years at their current rank in the O-3 pay grade, in order to be considered for promotion to the U.S. Army Major Rank by a promotion selection board of the Headquarters, Department of the Army. + Paragraph 2-7c(4): https://armypubs.army.mil/epubs/DR_pubs/DR_a/ARN30301-AR_600-8-29-000-WEB-1.pdf + +"This requirement may be waived by the SECARMY only for consideration from below the zone (BZ)" + +Also: + +Title 10, U.S.C., Section 619(a)(2)(A): https://uscode.house.gov/view.xhtml?hl=false&edition=prelim&req=granuleid%3AUSC-prelim-title10-section619&num=0&saved=%7CZ3JhbnVsZWlkOlVTQy1wcmVsaW0tdGl0bGUxMC1zZWN0aW9uNjE5YQ%3D%3D%7C%7C%7C0%7Cfalse%7Cprelim + Time in Grade Requirement for Promotion to U.S. Army Major Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Captain serving in the Army Reserve to have served a minimum of 4 years at their current rank in the O-3 pay grade, in order to be eligible for promotion to the U.S. Army Major Rank. + Army Regulation 135–155, Table 2-1 (p. 9): + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/r135_155.pdf + Time in Grade Requirement for Promotion to U.S. Army Major Rank (USAR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires an Army National Guard Sergeant First Class to have served a minimum of 36 months at their current rank in the E-7 pay grade, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a promotion selection board. + Army Regulation 600-8-19, Chapter 7 "Enlisted Promotion of Army National Guard Personnel", Table 7-1: + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Master Sergeant Rank (ARNG) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 36 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires an Army Reserve Sergeant First Class to complete some minimum temporal interval of work within the E-7 pay grade, as a condition for promotion to the U.S. Army Master Sergeant Rank. + Time in Grade requirements for Army Reserve promotions to the U.S. Army Master Sergeant Rank are non-waiverable. Furthermore, the promotee must be in the next lower grade to be eligible, namely SFC--non-waiverable. (Per Army Regulation 600–8–19, Paragraphs 5-7(j) & 5-7(f), respectively). + Time in Grade Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a Regular U.S. Army Private Second Class to have served a minimum of 4 months in their current rank at the E-2 pay grade, in order to be automatically promoted to the U.S. Army Private First Class Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Private First Class Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires an Army Reserve Private Second Class to have served a minimum of 4 months in their current rank at the E-2 pay grade, in order to be automatically promoted to the U.S. Army Private First Class Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Private First Class Rank (USAR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires some Army National Guard Staff Sergeant to have served a minimum of 36 months at their current rank in the E-6 pay grade, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a promotion selection board. + Army Regulation 600-8-19, Chapter 7 "Enlisted Promotion of Army National Guard Personnel", Table 7-1: + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Sergeant First Class Rank (ARNG) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 36 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a Army Reserve Staff Sergeant to complete some minimum temporal interval of work within the E-6 pay grade, as a condition for promotion to the U.S. Army Sergeant First Class Rank. + Time in Grade Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires an Army National Guard Master Sergeant, or First Sergeant, to have served at the E-8 pay grade for a minimum of 36 months either: i) at the officer's current rank; or ii) in the case of a lateral promotion from Master Sergeant to First Sergeant, a total of 36 months between both ranks, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a promotion selection board. + Army Regulation 600-8-19, Chapter 7 "Enlisted Promotion of Army National Guard Personnel", Table 7-1: + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Sergeant Major Rank (ARNG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires a Army Reserve Master Sergeant or Army Reserve First Sergeant to complete some minimum temporal interval of work within the E-8 pay grade, as a condition for promotion to the U.S. Army Sergeant Major Rank. + Time in Grade requirements for Army Reserve promotions to the U.S. Army Sergeant Major Rank are non-waiverable. Furthermore, the promotee must be in the next lower grade to be eligible, either MSG or 1SG--non-waiverable. (Per Army Regulation 600–8–19, Paragraphs 5-7(j) & 5-7(f), respectively). + Time in Grade Requirement for Promotion to U.S. Army Sergeant Major Rank (USAR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires an Army National Guard Corporal to have served a minimum of 12 months in the E-4 pay grade, in order to be considered for promotion to the U.S. Army Sergeant Rank by a promotion selection board. + Army Regulation 600-8-19, Chapter 7 "Enlisted Promotion of Army National Guard Personnel", Table 7-1: + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (ARNG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a Regular U.S. Army Soldier to complete some minimum temporal interval of work within the E-4 pay grade, in order to be eligible for promotion to the U.S. Army Sergeant Rank. + Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires an Army Reserve Corporal assigned to Standby Reserve (active status list) to have served a minimum of 8 months in the E-4 pay grade in order to be considered for promotion to the U.S. Army Sergeant Rank. + Paragraph 6-3, Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (Standby Reserve) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires some Army Reserve Soldier to complete some minimum temporal interval of work within the E-4 pay grade, in order to be eligible for promotion to the U.S. Army Sergeant Rank. + Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires an Army Reserve Private First Class to have served a minimum of 6 months in their current rank at the E-3 pay grade, in order to be automatically promoted to the U.S. Army Specialist Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Specialist (USAR) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires a U.S. Army National Guard Private First Class to have served a minimum of 6 months in their current rank at the E-3 pay grade, in order to be immediately promoted to the U.S. Army Specialist Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Specialist Rank (ARNG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (ARNG) that requires an Army National Guard Sergeant to have served a minimum of 18 months in the E-5 pay grade, in order to be considered for promotion to the U.S. Army Staff Sergeant Rank by a promotion selection board. + Army Regulation 600-8-19, Chapter 7 "Enlisted Promotion of Army National Guard Personnel", Table 7-1: + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (ARNG) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a Regular U.S. Army Sergeant to complete some minimum temporal interval of work within the E-5 pay grade, in order to be eligible for promotion to the U.S. Army Staff Sergeant Rank. + Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (USAR) that requires some Army Reserve Sergeant to complete some minimum temporal interval of work within the E-5 pay grade, in order to be eligible for promotion to the U.S. Army Staff Sergeant Rank. + Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Grade Requirement for Promotion in U.S. Army Rank (RA) that requires a Regular U.S. Army Private First Class to have served a minimum of 6 months in their current rank at the E-3 pay grade, in order to be automatically promoted to the U.S. Army Specialist Rank. + Paragraph 2-3c(3): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S. Army Specialist Rank (RA) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires an Army Reserve Corporal who is assigned as an Individual Mobilization Augmentee to have served a minimum of 8 months in the E-4 pay grade in order to be considered for promotion to the U.S. Army Sergeant Rank. + Paragraph 6-3, Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S Army Sergeant Rank (IMA) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Sergeant Rank (USAR) that requires an Army Reserve Corporal assigned to Individual Ready Reserve to have served a minimum of 8 months in the E-4 pay grade in order to be considered for promotion to the U.S. Army Sergeant Rank. + Paragraph 6-3, Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S Army Sergeant Rank (IRR) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires an Army Reserve Sergeant who is assigned as an Individual Mobilization Augmentee to have served a minimum of 10 months in the E-5 pay grade in order to be considered for promotion to the U.S. Army Staff Sergeant Rank. + Paragraph 6-3, Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S Army Staff Sergeant Rank (IMA) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires an Army Reserve Sergeant who is assigned to Individual Ready Reserve to have served a minimum of 10 months in the E-5 pay grade in order to be considered for promotion to the U.S. Army Staff Sergeant Rank. + Paragraph 6-3, Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S Army Staff Sergeant Rank (IRR) + + + + + + + + + A Time in Grade Requirement for Promotion to U.S. Army Staff Sergeant Rank (USAR) that requires an Army Reserve Sergeant who is assigned to Standby Reserve (Active Status List) to have served a minimum of 10 months in the E-5 pay grade in order to be considered for promotion to the U.S. Army Staff Sergeant Rank. + Paragraph 6-3, Table 6-1: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Grade Requirement for Promotion to U.S Army Staff Sergeant Rank (Standy Reserve) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that applies specifically to airmen serving in the Air Force Reserve. + Time in Service Requirement for Promotion in U.S. Air Force Rank (AFR) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that applies specifically to airmen serving in the Air National Guard. + Time in Service Requirement for Promotion in U.S. Air Force Rank (ANG) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that applies specifically to airmen serving in the Regular U.S. Air Force. + Time in Service Requirement for Promotion in U.S. Air Force Rank (REGAF) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank that applies to Soldiers serving in the United States Army National Guard. + Time in Service Requirement for Promotion in U.S. Army Rank (ARNG) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank that applies to Soldiers serving in the United States Regular Army. + Time in Service Requirement for Promotion in U.S. Army Rank (RA) + + + + + + + + + Time in Service Requirement for Promotion in U.S. Army Rank (USAR) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Reserve Private to have served a minimum of 6 months time in service, in order to be automatically promoted to the U.S. Army Private Second Class Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to Private Second Class Rank (USAR) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Airman serving in the Air National Guard to have completed a minimum of 12 months time in service in order to be eligible for promotion to the U.S. Air Force Airman First Class Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Airman First Class Rank (ANG) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Airman Basic serving in the Air National Guard to have completed a minimum of 6 months time in service in order to be eligible for promotion to the U.S. Air Force Airman Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Airman Rank (ANG) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank (AFR) that requires a U.S. Air Force Senior Master Sergeant serving in the Air Force Reserve to have completed a minimum of 10 years time in service in order to be eligible for promotion to the U.S. Air Force Chief Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 8.2. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Chief Master Sergeant Rank (AFR) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Senior Master Sergeant serving in the Air National Guard to have completed a minimum of 14 years time in service in order to be eligible for promotion to the U.S. Air Force Chief Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Chief Master Sergeant Rank (ANG) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank (AFR) that requires a U.S. Air Force Technical Sergeant serving in the Air Force Reserve to have completed a minimum of 8 years time in service in order to be eligible for promotion to the U.S. Air Force Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 8.2. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Master Sergeant Rank (AFR) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Technical Sergeant serving in the Air National Guard to have completed a minimum of 8 years time in service in order to be eligible for promotion to the U.S. Air Force Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Master Sergeant Rank (ANG) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Airman First Class serving in the Air National Guard to have completed a minimum of 24 months time in service in order to be eligible for promotion to the U.S. Air Force Senior Airman Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Senior Airman Rank (ANG) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Master Sergeant serving in the Air National Guard to have completed a minimum of 11 years time in service in order to be eligible for promotion to the U.S. Air Force Senior Master Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Senior Master Sergeant Rank (ANG) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Senior Airman serving in the Air National Guard to have completed a minimum of 4 years time in service in order to be eligible for promotion to the U.S. Air Force Staff Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Staff Sergeant Rank (ANG) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Air Force Rank that requires a U.S. Air Force Staff Sergeant serving in the Air National Guard to have completed a minimum of 6 years time in service in order to be eligible for promotion to the U.S. Air Force Technical Sergeant Rank. + AIR FORCE INSTRUCTION 36-2502, Table 10.1. + +https://static.e-publishing.af.mil/production/1/af_a1/publication/afi36-2502/afi36-2502.pdf + Time in Service Requirement for Promotion to U.S. Air Force Technical Sergeant Rank (ANG) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 26 + + + + + + + + + + + + + + + + + + + + + + + + + + 10/8/2021 +It should be noted that lateral promotions (promotions between 2 ranks that each fall within the same Department of Defense Pay Grade) from SPC to CPL may also occur. + +Indeed, given recent changes to the requirements for promotion to the rank of SGT, all U.S. Army SPCs must now serve time as CPLs before being eligible promotion to SGT. Previously, a soldier could advance to the rank of SGT (E-5) from the grade of E-4 from either the rank of SPC or CPL. + A Time in Service Requirement for Promotion in U.S. Army Rank (RA) that requires a Regular U.S. Army Soldier to have served a minimum of 26 months time in service, in order to be eligible for promotion to the U.S. Army Corporal Rank. + https://www.military.com/army/enlisted-ranks.html + +(Couldn't find this information in the relevant Army Publication) + Time in Service Requirement for Promotion to U.S. Army Corporal Rank (RA) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (ARNG) that requires some Army National Guard Sergeant First Class to have served a minimum 13 years time in service, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a promotion selection board. + AR 600-8-19, Table 7-1 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Master Sergeant Rank (ARNG) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 8 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army Sergeant First Class serving in the Regular Army to have served a minimum 8 years time in service, in order to be considered for promotion to the U.S. Army Master Sergeant Rank by a Headquarters, Department of the Army centralized promotion selection board. + Army Regulation 600–8–19 + +Chapter 4, Centralized Promotions (Sergeant First Class, Master Sergeant, and Sergeant Major) Section I, Managing Centralized Promotions + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + https://www.military.com/army/enlisted-ranks.html + Time in Service Requirement for Promotion to U.S. Army Master Sergeant Rank (RA) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (USAR) that requires some Army Reserve Sergeant First Class to complete some minimum time in service within the U.S. Army, as a condition for promotion to the U.S. Army Master Sergeant Rank. + Time in Service requirements for Army Reserve promotions to the U.S. Army Master Sergeant Rank are non-waiverable. Furthermore, the promotee must be in the next lower grade to be eligible, SFC--non-waiverable. (Per Army Regulation 600–8–19, Paragraphs 5-7(j) & 5-7(f), respectively). + Time in Service Requirement for Promotion to U.S. Army Master Sergeant Rank (USAR) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army National Guard Private Second Class to have served a minimum of 12 months time in service, in order to be immediately promoted to the U.S. Army Private First Class Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Private First Class Rank (ARNG) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 12 + + + + + + + + + + + + + + + + + + + + + + + + + + Promotion to the PFC rank can be waived at 6 months TIS and 2 months TIG for consistent strong performance. + A Time in Service Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army Private Second Class serving in the Regular Army to have served a minimum of 12 months time in service, in order to be automatically promoted to the U.S. Army Private First Class Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Private First Class Rank (RA) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Reserve Private Second Class to have served a minimum of 12 months time in service, in order to be automatically promoted to the U.S. Army Private First Class Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Private First Class Rank (USAR) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (ARNG) that requires a U.S. Army National Guard Private to have served a minimum of 6 months time in service, in order to be immediately promoted to the U.S. Army Private Second Class Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Private Second Class Rank (ARNG) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + + + + + + + Promotion to the PV2 rank may be waived at 4 months TIS for consistent strong performance. + A Time in Service Requirement for Promotion in U.S. Army Rank (RA) that requires a Regular U.S. Army Private to have served a minimum of 6 months time in service, in order to be automatically promoted to the U.S. Army Private Second Class Rank. + Paragraph 2-3c(1): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Private Second Class Rank (RA) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (ARNG) that requires some Army National Guard Staff Sergeant to have served a minimum 9 years time in service, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a promotion selection board. + AR 600-8-19, Table 7-1 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Sergeant First Class Rank (ARNG) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6 + + + + + + + + + + + + + + + + + + + + + + + + + + Promotion to the ranks of SFC, MSG and SGM are always centralized to some headquarters. Soldiers do not appear before a promotion board themselves, and soldiers' unit commanders play no role in the selection process. The selection board consists of senior NCOs who select the best qualified soldiers for placement on the Permanent Promotion Recommended List. + +See p. 74: https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + A Time in Service Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army Staff Sergeant serving in the Regular Army to have served a minimum 6 years time in service, in order to be considered for promotion to the U.S. Army Sergeant First Class Rank by a Headquarters, Department of the Army centralized promotion selection board. + Army Regulation 600–8–19 + +Chapter 4, Centralized Promotions (Sergeant First Class, Master Sergeant, and Sergeant Major) Section I, Managing Centralized Promotions + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + https://www.military.com/army/enlisted-ranks.html + Time in Service Requirement for Promotion to U.S. Army Sergeant First Class Rank (RA) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (USAR) that requires some U.S. Army Reserve Staff Sergeant to complete some minimum time in service within the U.S. Army, as a condition for promotion to the U.S. Army Sergeant First Class Rank. + Time in Service requirements for Army Reserve promotions to the U.S. Army Sergeant First Class Rank are non-waiverable. Furthermore, the promotee must be in the next lower grade to be eligible, SSG--non-waiverable. (Per Army Regulation 600–8–19, Paragraphs 5-7(j) & 5-7(f), respectively). + Time in Service Requirement for Promotion to U.S. Army Sergeant First Class Rank (USAR) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (ARNG) that requires some Army National Guard Master Sergeant to have served a minimum 16 years time in service, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a promotion selection board. + AR 600-8-19, Table 7-1 +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank (ARNG) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 9 + + + + + + + + + + + + + + + + + + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (RA) that requires U.S. Army Master Sergeant or First Sergeant serving in the Regular Army to have served a minimum 9 years time in service, in order to be considered for promotion to the U.S. Army Sergeant Major Rank by a Headquarters, Department of the Army centralized promotion selection board. + Army Regulation 600–8–19 + +Chapter 4, Centralized Promotions (Sergeant First Class, Master Sergeant, and Sergeant Major) Section I, Managing Centralized Promotions + +https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + https://www.military.com/army/enlisted-ranks.html + Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank (RA) + + + + + + + + + A Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank that requires some U.S. Army Reserve Master Sergeant or First Sergeant to complete some minimum time in service within the U.S. Army, as a condition for promotion to the U.S. Army Sergeant Major Rank. + Time in Service requirements for Army Reserve promotions to the U.S. Army Sergeant Major Rank are non-waiverable. Furthermore, the promotee must be in the next lower grade to be eligible, either MSG or 1SG--non-waiverable. (Per Army Regulation 600–8–19, Paragraphs 5-7(j) & 5-7(f), respectively). + Time in Service Requirement for Promotion to U.S. Army Sergeant Major Rank (USAR) + + + + + + + + + Time in Service Requirement for Promotion to U.S. Army Sergeant Rank (RA) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (ARNG) that requires a U.S. Army National Guard Private First Class to have served a minimum of 24 months time in service, in order to be immediately promoted to the U.S. Army Specialist Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Specialist Rank (ARNG) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 24 + + + + + + + + + + + + + + + + + + + + + + + + + + "Soldiers holding or training for PMOS in career management field (CMF) 18 or ranger school graduates with at +least 12 months TIS may be promoted to SPC without regard to TIS and TIG waiver ceilings provided otherwise qualified +in accordance with paragraph 1–11." [https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf] + +Soldiers entering the military with a 4 year college degree, or who have certain specialized civilian skills or training, can be automatically enlisted at the beginning rank of SPC. + Promotion to the SPC rank can be waived at 18 months TIS and 3 months TIG (meaning that at 18 months TIS and 3 months in the PFC grade, the normal 24 month TIS and 6 months TIG requirements can be waived for consistent strong performance). + A Time in Service Requirement for Promotion in U.S. Army Rank (RA) that requires a U.S. Army Private First Class serving in the Regular Army to have served a minimum of 24 months time in service, in order to be automatically promoted to the U.S. Army Specialist Rank. + Paragraph 2-3c(4): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Specialist Rank (RA) + + + + + + + + + A Time in Service Requirement for Promotion in U.S. Army Rank (USAR) that requires a U.S. Army Reserve Private First Class to have served a minimum of 24 months time in service, in order to be automatically promoted to the U.S. Army Specialist Rank. + Paragraph 2-3c(2): https://armypubs.army.mil/epubs/DR_pubs/DR_a/pdf/web/ARN17424_R600_8_19_Admin_FINAL.pdf + Time in Service Requirement for Promotion to U.S. Army Specialist Rank (USAR) + + + + + + + + + Time in Service Requirement for Promotion to U.S. Army Staff Sergeant Rank (RA) + + + + + + + + + + + + + + + + + + + + + + + A Junior Enlisted U.S. Marine who has some U.S. Marine Corps Private Rank and is the bearer of some U.S. Marine Corps Private Role. + U.S. Marine Corps Private + + + + + + + + + U.S. Marine Corps Private (E-1) Role + true + + + + + + + + + Ukrainian Navy (Fleet Forces) Commissioned Officer Rank + + + + + + + + + Ukrainian Navy (Fleet Forces) Junior Enlisted Rank + + + + + + + + + Ukrainian Navy (Fleet Forces) Non-Commissioned Officer Rank + + + + + + + + + Ukrainian Navy (Fleet Forces) Recruit Rank + + + + + + + + + https://www.kyivpost.com/ukraine-politics/rada-approves-new-ranks-nato-style-amendments-to-military-instructions.html + Ukrainian Navy (Fleet Forces) Senior Non-Commissioned Officer Rank + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/ + A One-Dimensional Temporal Region that is measured in Months and spans at least one Month. + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology + This is a defined class. + Multi-Month Temporal Interval + + + + + + + + + + + + + + + + + + + + + + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology + Month Measurement Unit + + + + + + + + + yr + http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology + Year Measurement Unit + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/cco-extensions/candidates/README.md b/src/cco-extensions/candidates/README.md new file mode 100644 index 00000000..924f1e35 --- /dev/null +++ b/src/cco-extensions/candidates/README.md @@ -0,0 +1,5 @@ +# CCO Extension Candidates + +This directory contains candidate extensions of CCO. The contents of this repository are being evaluated for inclusion as part of the official CCO extension suite. + +Any such candidate **must** be associated with a branch for review and potential revision. \ No newline at end of file diff --git a/src/cco-iris/.ttl b/src/cco-iris/.ttl new file mode 100644 index 00000000..df0f3579 --- /dev/null +++ b/src/cco-iris/.ttl @@ -0,0 +1 @@ +The CCO webpage can be found here: https://commoncoreontology.github.io/cco-webpage/board/ diff --git a/src/cco-iris/AgentOntology.ttl b/src/cco-iris/AgentOntology.ttl new file mode 100644 index 00000000..cf1f451f --- /dev/null +++ b/src/cco-iris/AgentOntology.ttl @@ -0,0 +1,2322 @@ +@prefix : . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent agents, especially persons and organizations, and their roles."@en ; + rdfs:label "Agent Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation +dcterms:bibliographicCitation rdf:type owl:AnnotationProperty . + +### http://purl.org/dc/terms/created +dcterms:created rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator +dcterms:creator rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote +skos:editorialNote rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel +skos:prefLabel rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001774 +cco:ont00001774 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001902 ; + owl:inverseOf cco:ont00001883 ; + rdfs:label "has brother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001776 +cco:ont00001776 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001945 ; + owl:inverseOf cco:ont00001876 ; + rdfs:label "has grandfather"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001780 +cco:ont00001780 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001842 ; + owl:inverseOf cco:ont00001786 ; + rdfs:label "has mother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001781 +cco:ont00001781 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001996 ; + owl:inverseOf cco:ont00001979 ; + rdfs:label "has step sister"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001783 +cco:ont00001783 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001945 ; + owl:inverseOf cco:ont00001820 ; + rdfs:label "is granddaughter of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001784 +cco:ont00001784 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001881 ; + rdfs:label "has son in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001785 +cco:ont00001785 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001988 ; + rdfs:label "has uncle"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001786 +cco:ont00001786 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001995 ; + rdfs:label "is mother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001787 +cco:ont00001787 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + owl:inverseOf cco:ont00001833 ; + rdfs:label "agent in"@en ; + skos:definition "x agent_in y iff y is an instance of Process and x is an instance of Agent, such that x is causally active in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001788 +cco:ont00001788 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001789 ; + owl:inverseOf cco:ont00001994 ; + rdfs:label "has paternal aunt"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001789 +cco:ont00001789 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001955 ; + rdfs:label "has aunt"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001790 +cco:ont00001790 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001785 ; + owl:inverseOf cco:ont00001929 ; + rdfs:label "has maternal uncle"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001792 +cco:ont00001792 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001902 ; + owl:inverseOf cco:ont00001851 ; + rdfs:label "has sister"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001793 +cco:ont00001793 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001975 ; + owl:inverseOf cco:ont00001948 ; + rdfs:label "has half sister"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001794 +cco:ont00001794 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001977 ; + owl:inverseOf cco:ont00001815 ; + rdfs:domain cco:ont00001180 ; + rdfs:range cco:ont00001180 ; + rdfs:label "has subsidiary"@en ; + skos:definition "An Organization o1 has_subsidiary Organization o2 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies."@en ; + cco:ont00001754 "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001798 +cco:ont00001798 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001939 ; + owl:inverseOf cco:ont00001943 ; + rdfs:domain cco:ont00001262 ; + rdfs:range cco:ont00001262 ; + rdfs:label "is supervised by"@en ; + skos:definition "A person p1 is supervised by a person p2 by virtue of p1 being directed, managed, or overseen by p2."@en ; + cco:ont00001754 "http://en.wiktionary.org/wiki/supervise)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001800 +cco:ont00001800 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001942 ; + owl:inverseOf cco:ont00001817 ; + rdfs:domain cco:ont00001324 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "prohibits"@en ; + skos:definition "x prohibits y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that some y must not occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001802 +cco:ont00001802 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001804 ; + owl:inverseOf cco:ont00001957 ; + rdfs:label "has husband"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001804 +cco:ont00001804 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001804 ; + rdfs:label "is spouse of"@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001806 +cco:ont00001806 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001806 ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is first cousin of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001807 +cco:ont00001807 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001920 ; + owl:inverseOf cco:ont00001974 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range cco:ont00001324 ; + rdfs:label "is required by"@en ; + skos:definition "y is_required_by x at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y must occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001809 +cco:ont00001809 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001812 +cco:ont00001812 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001945 ; + owl:inverseOf cco:ont00001981 ; + rdfs:label "is grandson of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001813 +cco:ont00001813 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001925 ; + rdfs:label "uses"@en ; + skos:definition "x uses y iff x is an instance of an Agent and y is an instance of a Material Entity, such that both x and y participate in some instance of a Process wherein x attempts to accomplish a goal by manipulating, deploying, or leveraging some attribute of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001815 +cco:ont00001815 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001939 ; + rdfs:domain cco:ont00001180 ; + rdfs:range cco:ont00001180 ; + rdfs:label "is subsidiary of"@en ; + skos:definition "An Organization o2 is_subsidiary_of Organization o1 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies. "@en ; + cco:ont00001754 "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001817 +cco:ont00001817 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001920 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range cco:ont00001324 ; + rdfs:label "is prohibited by"@en ; + skos:definition "y is_prohibited_by y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y must not occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001818 +cco:ont00001818 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001818 ; + rdfs:label "is in-law of"@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001820 +cco:ont00001820 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001850 ; + rdfs:label "has granddaughter"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001823 +cco:ont00001823 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001785 ; + owl:inverseOf cco:ont00001926 ; + rdfs:label "has paternal uncle"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001826 +cco:ont00001826 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001828 ; + rdfs:label "is sister-in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001828 +cco:ont00001828 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "has sister in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001831 +cco:ont00001831 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001951 ; + rdfs:domain obo:BFO_0000023 ; + rdfs:range obo:BFO_0000023 ; + rdfs:label "is subordinate role to"@en ; + skos:definition "For all x,y,t: y is subordinate role to x at t iff: x is an instance of Role at time t, and y is an instance of Role at time t, and there is some z such that x is realized by z and z is an instance of Process which creates, modifies, transfers, or eliminates some u such that u is a Process Regulation at time t, and u is addressed to the bearer of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001833 +cco:ont00001833 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + rdfs:label "has agent"@en ; + skos:definition "x has_agent y iff x is an instance of Process and y is an instance of Agent, such that y is causally active in x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001835 +cco:ont00001835 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001842 ; + owl:inverseOf cco:ont00001839 ; + rdfs:label "is son of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001836 +cco:ont00001836 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001839 +cco:ont00001839 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001995 ; + rdfs:label "has son"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001840 +cco:ont00001840 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001945 ; + owl:inverseOf cco:ont00001882 ; + rdfs:label "has grandmother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001842 +cco:ont00001842 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001995 ; + rdfs:label "is child of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001843 +cco:ont00001843 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001806 ; + owl:inverseOf cco:ont00001894 ; + rdfs:comment "Comment is_paternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"@en ; + rdfs:label "is paternal first cousin of"@en ; + skos:definition "Person A is paternal first cousin of Person B iff Person B has father F and F has sibling P and P is parent of Person A."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001844 +cco:ont00001844 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + owl:inverseOf cco:ont00001993 ; + rdfs:range cco:ont00001017 ; + rdfs:label "has sender"@en ; + skos:definition "y has_sender x iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001846 +cco:ont00001846 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001992 ; + rdfs:domain cco:ont00001180 ; + rdfs:range obo:BFO_0000023 ; + rdfs:label "is organizational context of"@en ; + skos:definition "x is_organizational_context_of y iff x is an instance of an Organization and y is an instance of a Role and z is an instance of a Person, such that z's affiliation with x is a prerequisite for z bearing y, or x ascribes y to the bearer of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001849 +cco:ont00001849 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001935 ; + rdfs:label "is father in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001850 +cco:ont00001850 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001945 ; + rdfs:label "is grandparent of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001851 +cco:ont00001851 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001902 ; + rdfs:label "is sister of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001853 +cco:ont00001853 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001885 ; + rdfs:label "is mother in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001854 +cco:ont00001854 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001867 ; + rdfs:label "has daughter in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001856 +cco:ont00001856 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001932 ; + rdfs:label "has niece"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001858 +cco:ont00001858 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001842 ; + owl:inverseOf cco:ont00001987 ; + rdfs:label "is daughter of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001859 +cco:ont00001859 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001864 ; + rdfs:domain cco:ont00001180 ; + rdfs:range cco:ont00001203 ; + rdfs:label "is delimited by"@en ; + skos:definition "An instance of Organization o1 is_delimited_by some Delimiting Domain dd1 iff dd1 is the area within which o1 can legally operate."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001860 +cco:ont00001860 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001968 ; + rdfs:label "is ancestor of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001864 +cco:ont00001864 rdf:type owl:ObjectProperty ; + rdfs:domain cco:ont00001203 ; + rdfs:range cco:ont00001180 ; + rdfs:label "delimits"@en ; + skos:definition "An instance of Delimiting Domain dd1 delimits some Organization o1 iff dd1 is the area within which o1 can legally operate."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001865 +cco:ont00001865 rdf:type owl:ObjectProperty , + owl:SymmetricProperty ; + rdfs:domain cco:ont00001262 ; + rdfs:range cco:ont00001262 ; + rdfs:label "has familial relationship to"@en ; + skos:definition "A relationship between persons by virtue of ancestry or legal union."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001866 +cco:ont00001866 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001984 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range cco:ont00001017 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "is interest of"@en ; + skos:definition "The inverse of has_interest_in. " ; + skos:prefLabel "is interest of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001867 +cco:ont00001867 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "is daughter in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001871 +cco:ont00001871 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001804 ; + owl:inverseOf cco:ont00001887 ; + rdfs:label "has wife"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001872 +cco:ont00001872 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001996 ; + owl:inverseOf cco:ont00001890 ; + rdfs:label "is step-brother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001876 +cco:ont00001876 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001850 ; + rdfs:label "is grandfather of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001880 +cco:ont00001880 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001809 ; + owl:inverseOf cco:ont00001898 ; + rdfs:domain cco:ont00001379 ; + rdfs:range cco:ont00000300 ; + rdfs:label "capability of aggregate"@en ; + skos:definition "x capability_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Agent Capability, such that x inheres in aggregate y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001881 +cco:ont00001881 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "is son in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001882 +cco:ont00001882 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001850 ; + rdfs:label "is grandmother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001883 +cco:ont00001883 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001902 ; + rdfs:label "is brother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001885 +cco:ont00001885 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "has mother in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001887 +cco:ont00001887 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001804 ; + rdfs:label "is wife of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001889 +cco:ont00001889 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000197 ; + owl:inverseOf cco:ont00001954 ; + rdfs:domain cco:ont00001379 ; + rdfs:range cco:ont00001017 ; + rdfs:label "capability of"@en ; + skos:definition "x capability_of y iff y is an instance of Agent and x is an instance of Agent Capability, such that x inheres in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001890 +cco:ont00001890 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001996 ; + rdfs:label "has step brother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001891 +cco:ont00001891 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001952 ; + rdfs:label "has brother in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001892 +cco:ont00001892 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001876 ; + owl:inverseOf cco:ont00001972 ; + rdfs:label "is paternal grandfather of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001894 +cco:ont00001894 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001806 ; + rdfs:label "has paternal first cousin"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001897 +cco:ont00001897 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001882 ; + owl:inverseOf cco:ont00001960 ; + rdfs:label "is maternal grandmother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001898 +cco:ont00001898 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001836 ; + rdfs:domain cco:ont00000300 ; + rdfs:range cco:ont00001379 ; + rdfs:label "aggregate has capability"@en ; + skos:definition "x aggregate_has_capability y iff x is an instance of Object Aggregate and y is an instance of Agent Capability, such that x is aggregate bearer of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001902 +cco:ont00001902 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001902 ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is sibling of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001903 +cco:ont00001903 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001876 ; + owl:inverseOf cco:ont00001973 ; + rdfs:label "is maternal grandfather of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001905 +cco:ont00001905 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001975 ; + owl:inverseOf cco:ont00001927 ; + rdfs:label "is half-brother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001906 +cco:ont00001906 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001806 ; + owl:inverseOf cco:ont00001934 ; + rdfs:comment "Comment is_maternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"@en ; + rdfs:label "is maternal first cousin of"@en ; + skos:definition "Person A is maternal first cousin of Person B iff Person B has mother M and M has sibling P and P is parent of Person A."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001907 +cco:ont00001907 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001910 +cco:ont00001910 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001942 ; + owl:inverseOf cco:ont00001998 ; + rdfs:domain cco:ont00001324 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "permits"@en ; + skos:definition "x permits y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y may occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001911 +cco:ont00001911 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001882 ; + owl:inverseOf cco:ont00001937 ; + rdfs:label "is paternal grandmother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001920 +cco:ont00001920 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001922 +cco:ont00001922 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + owl:inverseOf cco:ont00001978 ; + rdfs:range cco:ont00001017 ; + rdfs:label "has recipient"@en ; + skos:definition "x has_recipient y iff y is an instance of Agent and x is an instance of Act Of Communication, such that y is the recipient and decoder of the InformationContentEntity intended for communication in x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001925 +cco:ont00001925 rdf:type owl:ObjectProperty ; + rdfs:label "is used by"@en ; + skos:definition "x is_used_by y iff y is an instance of an Agent and x is an instance of a Material Entity, such that both x and y participate in some instance of a Process wherein y attempts to accomplish a goal by manipulating, deploying, leveraging some attribute of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001926 +cco:ont00001926 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001988 ; + rdfs:label "is paternal uncle of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001927 +cco:ont00001927 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001975 ; + rdfs:label "has half brother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001929 +cco:ont00001929 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001988 ; + rdfs:label "is maternal uncle of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001930 +cco:ont00001930 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001930 ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is second cousin of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001932 +cco:ont00001932 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "is niece of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001934 +cco:ont00001934 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001806 ; + rdfs:label "has maternal first cousin"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001935 +cco:ont00001935 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "has father in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001937 +cco:ont00001937 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001840 ; + rdfs:label "has paternal grandmother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001939 +cco:ont00001939 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001977 ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( cco:ont00001017 + cco:ont00001180 + cco:ont00001262 + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( cco:ont00001017 + cco:ont00001180 + cco:ont00001262 + ) + ] ; + rdfs:label "is affiliated with"@en ; + skos:definition "x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001941 +cco:ont00001941 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001955 ; + owl:inverseOf cco:ont00001958 ; + rdfs:label "is maternal aunt of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001942 +cco:ont00001942 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001943 +cco:ont00001943 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001977 ; + rdfs:domain cco:ont00001262 ; + rdfs:range cco:ont00001262 ; + rdfs:label "supervises"@en ; + skos:definition "A person p1 supervises a person p2 by virtue of p1 directing, managing, or overseeing p2."@en ; + cco:ont00001754 "http://en.wiktionary.org/wiki/supervise" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001945 +cco:ont00001945 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "is grandchild of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001946 +cco:ont00001946 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001842 ; + owl:inverseOf cco:ont00001985 ; + rdfs:label "has father"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001948 +cco:ont00001948 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001975 ; + rdfs:label "is half sister of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001950 +cco:ont00001950 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001950 ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is third cousin of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001951 +cco:ont00001951 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000023 ; + rdfs:range obo:BFO_0000023 ; + rdfs:label "has subordinate role"@en ; + skos:definition "For all x,y,t: x has subordinate role y at t iff: x is an instance of Role at time t, and y is an instance of Role at time t, and there is some z such that x is realized by z and z is an instance of Process which creates, modifies, transfers, or eliminates some u such that u is a Process Regulation at time t, and u is addressed to the bearer of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001952 +cco:ont00001952 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "is brother-in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001953 +cco:ont00001953 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001995 ; + rdfs:label "has parent"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001954 +cco:ont00001954 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000196 ; + rdfs:domain cco:ont00001017 ; + rdfs:range cco:ont00001379 ; + rdfs:label "has capability"@en ; + skos:definition "x has_capability y iff x is an instance of Agent and y is an instance of Agent Capability, such that x bearer of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001955 +cco:ont00001955 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "is aunt of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001957 +cco:ont00001957 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001804 ; + rdfs:label "is husband of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001958 +cco:ont00001958 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001789 ; + rdfs:label "has maternal aunt"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001960 +cco:ont00001960 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001840 ; + rdfs:label "has maternal grandmother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001967 +cco:ont00001967 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001969 ; + rdfs:label "is nephew of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001968 +cco:ont00001968 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "is descendent of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001969 +cco:ont00001969 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "has nephew"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001972 +cco:ont00001972 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001776 ; + rdfs:label "has paternal grandfather"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001973 +cco:ont00001973 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001776 ; + rdfs:label "has maternal grandfather"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001974 +cco:ont00001974 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001942 ; + rdfs:domain cco:ont00001324 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "requires"@en ; + skos:definition "x requires y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that some y must occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001975 +cco:ont00001975 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001975 ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is half-sibling of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001977 +cco:ont00001977 rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( cco:ont00001017 + cco:ont00001180 + cco:ont00001262 + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( cco:ont00001017 + cco:ont00001180 + cco:ont00001262 + ) + ] ; + rdfs:label "has affiliate"@en ; + skos:definition "x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001978 +cco:ont00001978 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + rdfs:domain cco:ont00001017 ; + rdfs:label "receives"@en ; + skos:definition "x receives y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the recipient and decoder of the InformationContentEntity intended for communication in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001979 +cco:ont00001979 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001996 ; + rdfs:label "is step-sister of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001981 +cco:ont00001981 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001850 ; + rdfs:label "has grandson"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001984 +cco:ont00001984 rdf:type owl:ObjectProperty ; + rdfs:domain cco:ont00001017 ; + rdfs:range obo:BFO_0000015 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "has interest in"@en ; + skos:definition "A relation between an entity and some process where the entity has an interest in that process."@en ; + skos:editorialNote "This term is meant to be weakly normative. The only sense in which the process is of positive normative value is that it's prescribed by the entity, or historically of evolutionary benefit to the entity's ancestors, or facilitates a process the entity has an interest in for the prior two reasons. The process an entity has an interest could in many or all ways be harmful to the entity."@en ; + skos:prefLabel "has interest in"@en ; + skos:scopeNote "There are four conditions in which an entity has an interest in some process. 1) Biological Condition: If a part (including improper part) of an organism has a function, then that organism has an interest in the realization of that function. 2) Artifactual Condition: If a part (including improper part) of an artifact has a function, then some agent or group of agents, at some time, has an interest in the realization of that function. 3) Prescription Condition: If an agent or group of agents has a plan, then it has an interest in the realization of all the processes and process-combinations prescribed by that plan. 4) Facilitation Condition: If (a) x has an interest in the realization of a disposition y, and (b) the realization of a disposition z facilitates the realization of disposition y, then (c) x has an interest in the realization of disposition z, and by 'facilitates' we mean that the occurrence of a process w, which realizes realization of z is either (1) required for y, to realize or (2) would contribute positively to the grade of, y's realization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001985 +cco:ont00001985 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001995 ; + rdfs:label "is father of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001987 +cco:ont00001987 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001995 ; + rdfs:label "has daughter"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001988 +cco:ont00001988 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "is uncle of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001992 +cco:ont00001992 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000023 ; + rdfs:range cco:ont00001180 ; + rdfs:label "has organizational context"@en ; + skos:definition "x has_organizational_context y iff y is an instance of an Organization and x is an instance of a Role and z is an instance of a Person, such that z's affiliation with y is a prerequisite for z bearing x or y ascribes x to the bearer of x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001993 +cco:ont00001993 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + rdfs:domain cco:ont00001017 ; + rdfs:label "sends"@en ; + skos:definition "x sends y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001994 +cco:ont00001994 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001955 ; + rdfs:label "is paternal aunt of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001995 +cco:ont00001995 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:domain cco:ont00001262 ; + rdfs:range cco:ont00001262 ; + rdfs:label "is parent of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001996 +cco:ont00001996 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001996 ; + rdfs:label "is step-sibling of"@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001998 +cco:ont00001998 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001920 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range cco:ont00001324 ; + rdfs:label "is permitted by"@en ; + skos:definition "y is_permitted_by x at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y may occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000010 +cco:ont00000010 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Incorporated Organization"@en ; + skos:altLabel "Corporation"@en ; + skos:definition "An Organization formed by an Act of Incorporation that consists of an association of individuals, created by law or under authority of law, having a continuous existence independent of the existences of its members and owners, and having powers and liabilities distinct from those of its members and owners."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/corporation" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000026 +cco:ont00000026 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Hair Color"@en ; + skos:definition "A Quality inhering in a portion of Hair by virtue of its color."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000044 +cco:ont00000044 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00000404 + ] ; + rdfs:label "Eye Color"@en ; + skos:definition "A Quality inhering in an Eye by virtue of the color of the Eye's Iris."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000046 +cco:ont00000046 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000126 ; + rdfs:label "Province"@en ; + skos:definition "A First-Order Administrative Region that is part of a Country and delimits the authority of a magistrate who holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the Province."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Province&oldid=1062496131"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000058 +cco:ont00000058 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Scalp Hair"@en ; + skos:definition "A Bodily Component that consists of a portion of hair that grows on the scalp of a human or other animal."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000071 +cco:ont00000071 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000460 ; + rdfs:label "Town"@en ; + skos:definition "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a Village but smaller than that of a City; is designated as a town based on a particular administrative, legal, or historical status; and which delimits a local Government that typically exercises less power than that of a City Government."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/town" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000084 +cco:ont00000084 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Bodily Component"@en ; + skos:definition "A Fiat Object Part located within or on the surface of an Agent."@en ; + skos:example "Bodily Components include anatomical structures, body flora, pathogens, toxins, and their combinations." ; + cco:ont00001754 "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3017014/" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000089 +cco:ont00000089 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001379 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001889 ; + owl:someValuesFrom cco:ont00001262 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001379 ; + rdfs:label "Skill"@en ; + skos:definition "An Agent Capability that inheres in a Person to the extent of that Person's capacity to realize it in Intentional Acts of a certain type."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000102 +cco:ont00000102 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:comment "Skin Type is classified according to a reference system such as the Fitzpatrick scale: https://en.wikipedia.org/wiki/Fitzpatrick_scale"@en ; + rdfs:label "Skin Type"@en ; + skos:definition "A Quality inhering in a portion of skin by virtue of its color and natural tendency to respond to ultraviolet light."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000126 +cco:ont00000126 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000139 + ] ; + rdfs:label "First-Order Administrative Region"@en ; + skos:definition "A Government Domain that is a primary administrative division of a Country."@en ; + skos:example "a state in the United States" ; + cco:ont00001754 "http://www.geonames.org/export/codes.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000129 +cco:ont00000129 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Tattoo"@en ; + skos:definition "A Bodily Component that consists of a typically permanent mark or design on a portion of skin that is created by a process of pricking and ingraining an indelible pigment or by raising scars."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/tattoo" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000134 +cco:ont00000134 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000405 + ] ; + rdfs:label "Third-Order Administrative Region"@en ; + skos:definition "A Government Domain that is a subdivision of a Second-Order Administrative Region."@en ; + cco:ont00001754 "http://www.geonames.org/export/codes.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000139 +cco:ont00000139 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Domain of a Country"@en ; + skos:definition "A Government Domain that is associated with certain distinct political, ethnic, or cultural characteristics, and which delimits a Government that has legitimate authority over a Populace."@en ; + skos:editorialNote "'Country' is an unclear term. Does it refer to the people, the government, the site, or the material in the site? Furthermore, what is properly referred to as a 'Country' is highly dependent on the classification practices of the international community. For example: The United Kingdom is a sovereign country that has Wales, a non-sovereign Country, as a member. Vatican City is a sovereign country that is landlocked by a city: Rome, Italy. Puerto Rico is not a country (it's a territory) but has a government, a distinct culture, and so on. Thus, here we do not define 'Country' but instead define 'Domain of a Country'."@en ; + skos:prefLabel "Domain of a Country"@en ; + cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000141 +cco:ont00000141 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000914 ; + rdfs:label "Populace"@en ; + skos:definition "A Group of Persons forming the total population of some Government Domain."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Population&oldid=1059148871"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000157 +cco:ont00000157 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Facial Hair"@en ; + skos:definition "A Bodily Component that consists of a portion of hair that grows on the face of a human (typically male) or other animal."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000173 +cco:ont00000173 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Civilian Role"@en ; + skos:definition "A Role that inheres in an Agent or Group of Agents by virtue of that Agent or Group of Agents not being part of either an Armed Force or police force."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000175 +cco:ont00000175 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Organization Member Role"@en ; + skos:definition "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill as a member of some Organization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000176 +cco:ont00000176 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001180 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000898 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001180 ; + dcterms:bibliographicCitation "Lee, David S., and Brad Glosserman. “How Companies Can Navigate Today’s Geopolitical Risks.” Harvard Business Review, 28 Nov. 2022. hbr.org, https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks." , + "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Geopolitical Organization"@en ; + skos:definition "An Organization that bears a Geopolitical Power Role."@en ; + skos:prefLabel "Geopolitical Organization"@en ; + cco:ont00001754 "https://chass.usu.edu/international-studies/aggies-go/power" , + "https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000177 +cco:ont00000177 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000017 ; + rdfs:label "Affordance"@en ; + skos:definition "A Realizable Entity of an Independent Continuant that creates an opportunity for an Agent to realize some Agent Capability or Disposition in some Act."@en ; + cco:ont00001754 "J. J. Gibson, \"The Theory of Affordances,\" in The Ecological Approach to Visual Perception (NY: Taylor & Francis Group, 1986): 127-143. Available at: https://archive.org/details/pdfy-u5hmFOvOM2Civ4Gz/page/n70/mode/1up."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000181 +cco:ont00000181 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000089 ; + rdfs:label "Language Skill"@en ; + skos:definition "A Skill that is realized by an Act which is prescribed by a Language."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000187 +cco:ont00000187 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Authority Role"@en ; + skos:definition "A Role that is realized by Processes which create, modify, transfer, or eliminate Process Regulations or other Authority Roles, and inheres in an Agent in virtue of collective acceptance of that Agent's ability to issue binding directives."@en ; + skos:scopeNote "Authority Roles are externally grounded in a social group's collective acceptance of the binding force of the agent's directives. This acceptance can be direct or indirect (e.g., by accepting a procedure for deputizing authority). Such collective acceptance need not be explicit or cognized; rather, collective acceptance can be expressed in the dispositions and attitudes of people toward that agent's directives. In many cases, the directives issued by Authority Roles are backed by threats of punishment or sanction for failure to comply, but the issuing of a directive plus a threat is not sufficient for authority. Rather, an agent's authority must be accepted either directly or indirectly through the acceptance of a procedure for bestowing authority (e.g., elections)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000207 +cco:ont00000207 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000274 +cco:ont00000274 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Armed Force"@en ; + skos:definition "An Organization having the Objective to further the foreign and domestic policies of a Government and to defend that body and the nation it represents from external and internal aggressors."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000279 +cco:ont00000279 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000392 ; + rdfs:label "Enemy Role"@en ; + skos:definition "An Allegiance Role that inheres in an Agent by virtue of that Agent having committed offensive Acts or exhibited intent to perform such Acts towards a particular Agent or Group of Agents or has been declared as hostile by some appropriate authority."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000300 +cco:ont00000300 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000027 , + [ owl:intersectionOf ( [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000115 ; + owl:someValuesFrom cco:ont00001017 + ] + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000115 ; + owl:allValuesFrom cco:ont00001017 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "Group of Agents"@en ; + skos:definition "An Object Aggregate that has only Agents as parts."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000318 +cco:ont00000318 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + rdfs:label "Disease"@en ; + skos:definition "A Disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/OGMS_0000031" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000377 +cco:ont00000377 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Disability"@en ; + skos:definition "A Quality inhering in an Agent by virtue a physical or mental condition that limits the Agent's movements, senses, or activities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000383 +cco:ont00000383 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000837 ; + rdfs:label "Nuclear Family"@en ; + skos:definition "A Family composed of parents and their children."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000388 +cco:ont00000388 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000987 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 ; + rdfs:label "Citizen"@en ; + skos:definition "A Person who is the bearer of some Citizen Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000392 +cco:ont00000392 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Allegiance Role"@en ; + skos:definition "A Role that inheres in an Agent by virtue of the support it has committed to provide to another Agent when that Agent is involved in a conflict."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000404 +cco:ont00000404 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000500 + ] ; + rdfs:label "Iris"@en ; + skos:definition "A Bodily Component that consists of the part of an Eye that is a pigmented, round, contractile membrane, suspended between the cornea and lens and perforated by the pupil, and which canonically regulates the amount of light entering the Eye."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/iris" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000405 +cco:ont00000405 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000126 + ] ; + rdfs:label "Second-Order Administrative Region"@en ; + skos:definition "A Government Domain that is a subdivision of a First-Order Administrative Region."@en ; + cco:ont00001754 "http://www.geonames.org/export/codes.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000408 +cco:ont00000408 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00001335 + ] ; + rdfs:label "Government Organization"@en ; + skos:definition "An Organization that is part of a Government and is responsible for the oversight or administration of specific governmental functions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000426 +cco:ont00000426 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000274 ; + rdfs:label "Military Personnel Force"@en ; + skos:definition "An Armed Force authorized to use deadly force, and weapons, to support the interests of the Government and some or all of its Citizens."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000443 +cco:ont00000443 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001180 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000485 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Commercial Organization"@en ; + skos:definition "An Organization that is the bearer of a Commercial Role and whose primary objective is to make a profit from the provision of goods or services."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000460 +cco:ont00000460 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 ; + rdfs:label "Local Administrative Region"@en ; + skos:altLabel "Locality"@en ; + skos:definition "A Government Domain that delimits a local Government."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000472 +cco:ont00000472 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000473 +cco:ont00000473 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000134 + ] ; + rdfs:label "Fourth-Order Administrative Region"@en ; + skos:definition "A Government Domain that is a subdivision of a Third-Order Administrative Region."@en ; + cco:ont00001754 "http://www.geonames.org/export/codes.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000476 +cco:ont00000476 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Objective"@en ; + skos:definition "A Directive Information Content Entity that prescribes some projected state that some Agent intends to achieve."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Objective_(goal)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000485 +cco:ont00000485 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Commercial Role"@en ; + skos:definition "A Role that inheres in an Organization by virtue of its establishment as a for-profit business."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000486 +cco:ont00000486 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000392 ; + rdfs:label "Neutral Role"@en ; + skos:definition "An Allegiance Role that inheres in an Agent by virtue of that Agent not performing or being committed to performing Acts that have as their Objective to either support or undermine the Objectives of an Agent or Group of Agents involved in some conflict."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000487 +cco:ont00000487 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000500 +cco:ont00000500 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Eye"@en ; + skos:definition "A Bodily Component that consists of an organ that canonically affords the Agent it is part of with the ability to receive visual stimuli necessary for sight."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000506 +cco:ont00000506 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Contractor Role"@en ; + skos:definition "A Role that inheres in an Agent or Group of Agents by virtue of that Agent or Group of Agents entering into a Contract to provide materials or labor to perform a service or complete a task."@en ; + skos:scopeNote "A Contractor Role differs from an Occupation Role in at least two ways. First, the Contract that binds the two parties together is not one of employment. Second, a Contractor Role is occupationally neutral in that an Agent can be contracted to perform any number of Occupational Roles."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000507 +cco:ont00000507 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000914 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001907 ; + owl:someValuesFrom cco:ont00000780 + ] ; + rdfs:label "Ethnic Group"@en ; + skos:definition "A Group of Persons who identify with one another based on one or more shared inherited characteristics such as language, ancestry, nationality, culture, customs, religion, or social experiences."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000509 +cco:ont00000509 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Service Provider"@en ; + skos:definition "An Organization whose purpose is to provide a service to other Agents."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Service_provider&oldid=1059415018"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000532 +cco:ont00000532 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001335 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001859 ; + owl:someValuesFrom cco:ont00000139 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001335 ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + dcterms:created "2023-02-08T19:54:46-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Government of a Country"@en ; + skos:definition "A Government that has legitimate authority within and is delimited by a Domain of a Country."@en ; + skos:prefLabel "Government of a Country"@en ; + cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000551 +cco:ont00000551 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000030 ; + rdfs:label "Organism"@en ; + skos:definition "An Object that is an Animal or Plant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000553 +cco:ont00000553 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001324 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001800 ; + owl:someValuesFrom obo:BFO_0000015 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001324 ; + rdfs:label "Process Prohibition"@en ; + skos:definition "A Process Regulation that prohibits some Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000562 +cco:ont00000562 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000551 ; + rdfs:label "Animal"@en ; + skos:definition "An Organism that is multicellular, eukaryotic, heterotrophic, and capable of motility for part of its life."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Animal&oldid=1063873549"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000564 +cco:ont00000564 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Educational Organization"@en ; + skos:definition "An Organization whose primary purpose is to provide training or otherwise facilitate learning or the acquisition of knowledge, Skills, values, beliefs, or habits."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000567 +cco:ont00000567 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000487 ; + rdfs:comment "This is a general term that applies to both military and civilian activities, such as the Geospatial Region within which a company conducts its business."@en ; + rdfs:label "Operational Area"@en ; + skos:definition "A Geospatial Location in which an Agent conducts some activity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000568 +cco:ont00000568 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001379 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001889 ; + owl:someValuesFrom cco:ont00001180 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001379 ; + rdfs:label "Organization Capability"@en ; + skos:definition "An Agent Capability that inheres in an Organization to the extent of that Organization's capacity to realize it in Intentional Acts of a certain type."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000576 +cco:ont00000576 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Scalp"@en ; + skos:definition "A Bodily Component that consists of the skin covering the top of the head of a human or other animal."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000587 +cco:ont00000587 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000392 ; + rdfs:label "Ally Role"@en ; + skos:definition "An Allegiance Role that inheres in an Agent in virtue of that Agent's commitment to perform Acts that support the Objectives of a particular Agent or Group of Agents."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000599 +cco:ont00000599 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Interpersonal Relationship Role"@en ; + skos:definition "A Role that inheres in a Person in virtue of the obligations, expectations, or social norms that govern that Person's Intentional Acts within the context of a relationship with another Person."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000608 +cco:ont00000608 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Financial Value"@en ; + skos:definition "A quality that inheres in an independent continuant to the degree that that independent continuant can serve as a medium of exchange in an economic system at a particular time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000616 +cco:ont00000616 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000958 ; + rdfs:label "Religion"@en ; + skos:definition "An Information Content Entity that consists of a collection of claims about the meaning or origin of existence or about the existence or nature of one or more deities, an afterlife, or spiritual or sacred entities, and which is accepted as true by an Agent or Group of Agents."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/religion" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000631 +cco:ont00000631 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000662 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000171 ; + owl:someValuesFrom cco:ont00000139 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000662 ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + dcterms:created "2023-02-06T10:14:09-05:00"@en ; + rdfs:label "Material Territory of a Country"@en ; + skos:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a The Domain of a Country."@en ; + skos:prefLabel "Material Territory of a Country"@en ; + cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000645 +cco:ont00000645 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000917 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 ; + dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Permanent Resident"@en ; + skos:definition "A person with a Permanent Resident Role."@en ; + skos:prefLabel "Permanent Resident"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000647 +cco:ont00000647 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000175 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001939 ; + owl:someValuesFrom cco:ont00001180 + ] ; + rdfs:label "Organization Member"@en ; + skos:definition "A Person who is affiliated with some Organization by being a member of that Organization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000662 +cco:ont00000662 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001341 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000171 ; + owl:someValuesFrom cco:ont00001152 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001341 ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + dcterms:created "2023-02-06T10:14:09-05:00"@en ; + rdfs:label "Material Territory of a Government Domain"@en ; + skos:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a Government Domain"@en ; + skos:prefLabel "Material Territory of a Government Domain"@en ; + cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000666 +cco:ont00000666 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000486 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 ; + rdfs:label "Neutral Person"@en ; + skos:altLabel "Unallied Person" ; + skos:definition "A Person who is the bearer of some Neutral Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000685 +cco:ont00000685 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000207 ; + rdfs:label "Government Domain Border"@en ; + skos:definition "A Geospatial Boundary that is a boundary of some Government Domain."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Border&oldid=1061275162"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000696 +cco:ont00000696 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000958 ; + rdfs:label "Ideology"@en ; + skos:definition "An Information Content Entity that consists of a collection of claims about how some part of the world is or should be and which is accepted as true by an Agent or Group of Agents such that it forms the basis of their beliefs, goals, expectations, and motivations."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000697 +cco:ont00000697 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000279 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 ; + rdfs:label "Enemy Person"@en ; + skos:definition "A Person who is the bearer of some Enemy Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000718 +cco:ont00000718 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000460 ; + rdfs:label "Village"@en ; + skos:definition "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a hamlet but smaller than that of a Town."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/village" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000751 +cco:ont00000751 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001324 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001910 ; + owl:someValuesFrom obo:BFO_0000015 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001324 ; + rdfs:label "Action Permission"@en ; + skos:altLabel "Authorization"@en , + "License"@en ; + skos:definition "A Process Regulation that permits some Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000780 +cco:ont00000780 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Ethnicity"@en ; + skos:definition "A Quality that inheres in its bearers by virtue of a common heritage, often consisting of a common language, a common culture (often including a shared religion) and an ideology that stresses common ancestry or endogamy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000837 +cco:ont00000837 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000914 ; + rdfs:label "Family"@en ; + skos:definition "A Group of Persons related to one another by ancestry or marriage."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000860 +cco:ont00000860 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000587 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 ; + rdfs:label "Allied Person"@en ; + skos:definition "A Person who is the bearer of some Ally Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000871 +cco:ont00000871 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000551 ; + rdfs:label "Plant"@en ; + skos:definition "An Organism that is multicellular, eukaryotic, autotrophic, and has cells that contain chloroplasts and walls made of cellulose."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Plant&oldid=1060821100"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000887 +cco:ont00000887 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000460 ; + rdfs:label "City"@en ; + skos:definition "A Local Administrative Region in which a relatively large human population permanently resides; is designated as a city based on a particular administrative, legal, or historical status; and which delimits a local Government that typically oversees the provision of systems for sanitation, utilities, land usage, housing, and transportation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=City&oldid=1062635325"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000898 +cco:ont00000898 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00001180 + ] ; + dcterms:bibliographicCitation "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Geopolitical Power Role"@en ; + skos:definition "A Role had by an Organization, that is perceived by an International Community as capable of performing influential acts in that community, and which would be realized in performing such acts."@en ; + skos:prefLabel "Geopolitical Power Role"@en ; + cco:ont00001754 "https://chass.usu.edu/international-studies/aggies-go/power" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000914 +cco:ont00000914 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000300 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00001262 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom cco:ont00001262 + ] ; + rdfs:label "Group of Persons"@en ; + skos:definition "A Group of Agents that has only Persons as parts."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000917 +cco:ont00000917 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + dcterms:bibliographicCitation "Permanent Residency - Wikipedia. https://en.wikipedia.org/wiki/Permanent_residency. Accessed 10 Feb. 2023." ; + dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Permanent Resident Role"@en ; + skos:definition "A role inhering in a Person by virtue of that Person being recognized as having legal resident status in a Government Domain in which that person is not a citizen but where they have the right to reside on a permanent basis."@en ; + skos:prefLabel "Permanent Resident Role"@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Permanent_residency" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000934 +cco:ont00000934 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000126 ; + rdfs:label "Constituent State"@en ; + skos:altLabel "State"@en ; + skos:definition "A First-Order Administrative Region that is part of a Country and delimits a centralized regional Government that holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the State."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Constituent_state&oldid=1063662102"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000958 +cco:ont00000958 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000965 +cco:ont00000965 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000974 +cco:ont00000974 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00000476 + ] ; + rdfs:label "Plan"@en ; + skos:definition "A Directive Information Content Entity that prescribes some set of intended Intentional Acts through which some Agent expects to achieve some Objective."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Plan&oldid=1047320560"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000976 +cco:ont00000976 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000696 ; + rdfs:label "Political Orientation"@en ; + skos:definition "An Ideology that characterizes the political thinking of an Agent or Group of Agents, usually with respect to the political environment within a particular nation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000984 +cco:ont00000984 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Occupation Role"@en ; + skos:definition "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill within the context of some Act of Employment."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000986 +cco:ont00000986 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Scar"@en ; + skos:definition "A Bodily Component that consists of a portion of fibrous connective tissue on skin or within body tissue and which was formed due to an injury that has not healed completely."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Scar&oldid=1057179533"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000987 +cco:ont00000987 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Citizen Role"@en ; + skos:definition "A Role that inheres in a Person by virtue of that Person being legally recognized as a member of a particular state, with associated rights and obligations."@en ; + cco:ont00001754 "http://en.wikitionary.org/wiki/citizen" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001006 +cco:ont00001006 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Operator Role"@en ; + skos:definition "A Role that inheres in an Agent by virtue of that Agent's responsibilities to operate or control some Artifact."@en ; + skos:example "the role of driving a car" , + "the role of flying an airplane" , + "the role of operating a crane" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001017 +cco:ont00001017 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00001379 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Agent"@en ; + skos:definition "A Material Entity that bears an Agent Capability."@en ; + cco:ont00001754 "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001033 +cco:ont00001033 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Biological Sex"@en ; + skos:definition "A Quality inhering in a bearer by virtue of the bearer's ability to undergo sexual reproduction in order to differentiate the individuals or types involved."@en ; + cco:ont00001754 "http://purl.org/obo/owl/PATO#PATO_0000047" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001062 +cco:ont00001062 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000300 ; + dcterms:bibliographicCitation "The International Community. 5 Apr. 2023, https://dictionary.cambridge.org/us/dictionary/english/international-community." ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "International Community"@en ; + skos:definition "A maximal Group of Geopolitical Organizations engaged in geopolitics with one another."@en ; + skos:prefLabel "International Community"@en ; + cco:ont00001754 "https://dictionary.cambridge.org/us/dictionary/english/international-community" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001073 +cco:ont00001073 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000608 ; + rdfs:label "Financial Value of Property"@en ; + skos:altLabel "Property Value"@en ; + skos:definition "Financial Value that inheres in an material entity that is the object of an Act of Ownership."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001114 +cco:ont00001114 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000472 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00001203 + ] ; + owl:disjointWith cco:ont00001203 ; + rdfs:comment "Instances of this class are not proper Delimiting Domains, but in some cases may have an organization that exercises some control over the region, such as the homeowners' association for a neighborhood."@en ; + rdfs:label "Division of Delimiting Domain"@en ; + skos:definition "A Geospatial Region that is a fiat division of a Delimiting Domain and not a Delimiting Domain."@en ; + skos:example "Flatbush, French Quarter, Western New York, Texas Panhandle, Greater Montreal Area of Quebec, Pacific Northwest, southwest area of Al Anbar Province, Northern Iraq." ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001125 +cco:ont00001125 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00000500 + ] ; + rdfs:label "Set of Eyes"@en ; + skos:definition "A Bodily Component that consists of two or more Eyes that are part of a single Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001152 +cco:ont00001152 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001203 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001864 ; + owl:someValuesFrom cco:ont00001335 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001203 ; + rdfs:label "Government Domain"@en ; + skos:definition "A Delimiting Domain that delimits the authority of a Government to exercise its control within the bounded area."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001164 +cco:ont00001164 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 ; + rdfs:label "County"@en ; + skos:definition "A Government Domain that is part of either a First-Order or Second-Order Administrative Region."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=County&oldid=1062817834"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 +cco:ont00001180 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000300 ; + rdfs:comment "Members of organizations are either Organizations themselves or individual Persons. Members can bear specific Organization Member Roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the Organization by the organization members."@en ; + rdfs:label "Organization"@en ; + skos:definition "A Group of Agents which can be the bearer of roles, has members, and has a set of organization rules."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/OBI_0000245" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001183 +cco:ont00001183 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000300 ; + rdfs:label "Social Network"@en ; + skos:definition "A Group of Agents that are connected in dyadic relations by similar personal or career interests, activities, backgrounds, or real-life connections."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001203 +cco:ont00001203 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000472 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001864 ; + owl:someValuesFrom cco:ont00001180 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000472 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Delimiting Domain"@en ; + skos:definition "A Geospatial Region that delimits the authority of an Organization to exercise its control within the bounded area."@en ; + skos:prefLabel "Delimiting Domain"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001212 +cco:ont00001212 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001033 ; + rdfs:label "Female Sex"@en ; + skos:definition "A Biological Sex inhering in an individual that only produces gametes that can be fertilized by male gametes."@en ; + cco:ont00001754 "http://purl.org/obo/owl/PATO#PATO_0000383" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001224 +cco:ont00001224 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001324 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001974 ; + owl:someValuesFrom obo:BFO_0000015 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001324 ; + rdfs:label "Process Requirement"@en ; + skos:altLabel "Duty"@en , + "Obligation"@en ; + skos:definition "A Process Regulation that requires some Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001239 +cco:ont00001239 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000300 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00001180 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom cco:ont00001180 + ] ; + rdfs:label "Group of Organizations"@en ; + skos:definition "A Group of Agents that has only Organizations as parts."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001262 +cco:ont00001262 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000562 ; + rdfs:label "Person"@en ; + skos:altLabel "Human"@en ; + skos:definition "An Animal that is a member of the species Homo sapiens."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Human&oldid=1063145185"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001276 +cco:ont00001276 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000426 ; + rdfs:label "Carrier Air Wing"@en ; + skos:definition "A Military Force that is trained and equipped to conduct air operations while embarked on an aircraft carrier."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001284 +cco:ont00001284 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000914 ; + rdfs:label "Crew"@en ; + skos:definition "A Group of Persons that bear Roles realized by the operation of the specified Vehicle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001302 +cco:ont00001302 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001180 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000173 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Civil Organization"@en ; + skos:definition "An Organization that is not commercial or military and is the bearer of a Civilian Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001312 +cco:ont00001312 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000274 ; + rdfs:label "Paramilitary Force"@en ; + skos:definition "An Armed Force whose organizational structure, training, subculture, and (often) function are similar to those of a professional Military, and which is not included as part of a Government's formal Armed Forces."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Paramilitary&oldid=1063281359"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001324 +cco:ont00001324 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Process Regulation"@en ; + skos:definition "A Directive Information Content Entity that prescribes an Process as required, prohibited, or permitted, and is the output of an Process which realizes some Authority Role."@en ; + skos:scopeNote "Although regulations often regulate processes which involve agents--as the regulating or regulated participant--it is unclear how causally active an agents need to be in those regulated processes. For example, it is not clear how causally active a human agent is in the process of a traffic light regulating the motion of a self-driving vehicle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001335 +cco:ont00001335 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001859 ; + owl:someValuesFrom cco:ont00001203 + ] ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Government"@en ; + skos:definition "An Organization that is the highest legitimate authority delimited by some Delimiting Domain and that exercises executive, legislative, or judicial authority in that Domain."@en ; + skos:editorialNote "Highest legitimate authority should not be confused with highest legitimate authority of a particular kind. For example, while the judicial branch of the United States government has the highest judicial authority in a Delimiting Domain, it is not the highest legitimate authority delimited by that domain. The combination of executive, judicial, and legislative branches is higher because it wields more legitimate authority than any branch on its own."@en , + "Importantly, the definition states \"highest legitimate authority delimited by some Delimiting Domain\" and not \"highest legitimate authority in some Delimiting Domain.\" The government of Wales is the highest legitimate authority delimited by some Delimiting Domain but it is not the highest legitimate authority in that domain, which would be the government of the United Kingdom."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001341 +cco:ont00001341 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001363 +cco:ont00001363 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001033 ; + rdfs:label "Male Sex"@en ; + skos:definition "A Biological Sex inhering in an individual whose sex organs contain only male gametes."@en ; + cco:ont00001754 "http://purl.org/obo/owl/PATO#PATO_0000384" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001379 +cco:ont00001379 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000017 ; + rdfs:label "Agent Capability"@en ; + skos:definition "A Realizable Entity that inheres in a Material Entity in virtue of that Material Entity's capacity to realize it in some Planned Act."@en ; + cco:ont00001754 "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/AllCoreOntology.ttl b/src/cco-iris/AllCoreOntology.ttl new file mode 100644 index 00000000..7d2fbd55 --- /dev/null +++ b/src/cco-iris/AllCoreOntology.ttl @@ -0,0 +1,26 @@ +@prefix : . +@prefix cco: . +@prefix obo: . +@prefix dcterms: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports , + , + , + , + , + ; + dcterms:rights "CUBRC Inc., see full license."@en ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + rdfs:comment "An import of all the Common Core mid-level ontologies into a single file so that content is easy to view. The All Core Ontology is not an ontology in the sense it contains no unique content. As such it should not be added to, but can be extended from."@en ; + rdfs:label "All Core Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ArtifactOntology.ttl b/src/cco-iris/ArtifactOntology.ttl new file mode 100644 index 00000000..2685b315 --- /dev/null +++ b/src/cco-iris/ArtifactOntology.ttl @@ -0,0 +1,5159 @@ +@prefix : . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent artifacts that are common to multiple domains along with their models, specifications, and functions."@en ; + rdfs:label "Artifact Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 +cco:ont00001753 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001855 +cco:ont00001855 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001916 +cco:ont00001916 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001942 +cco:ont00001942 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001944 +cco:ont00001944 rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000001 +cco:ont00000001 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000804 ; + rdfs:label "Deflecting Prism"@en ; + skos:definition "A Prism designed to deflect a beam of light entering the Prism by a fixed angle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000002 +cco:ont00000002 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Cooling Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which the thermal energy of a system decreases."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000012 +cco:ont00000012 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000781 ; + rdfs:label "Propulsion Control System"@en ; + skos:definition "A Control System that consists of control devices, displays, indicators, or modules designed to control a Propulsion System."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000014 +cco:ont00000014 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000241 ; + rdfs:label "Aztec Code"@en ; + skos:definition "A Two-Dimensional Barcode that is used by the transportation industry to scan tickets."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000015 +cco:ont00000015 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001104 ; + rdfs:label "Shotgun"@en ; + skos:definition "A Long Gun that fires packets of shot, a single slug, a sabot, or a specialty round (such as tear gas, bolo shell, or a breaching round) over shorter ranges than that of Rifles and with less accuracy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Shotgun&oldid=1062571691"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000018 +cco:ont00000018 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001346 ; + rdfs:label "Title Document"@en ; + skos:definition "A Legal Instrument that is designed as evidence of ownership."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Title_(property)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000019 +cco:ont00000019 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000961 ; + rdfs:label "Power Inverting Artifact Function"@en ; + skos:definition "A Current Conversion Artifact Function that is realized by processes in which some Artifact is used to convert direct current (DC) to alternating current (AC)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000020 +cco:ont00000020 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Container"@en ; + skos:definition "A Material Artifact that is designed to contain (wholly or partially) some material entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000021 +cco:ont00000021 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Sensor Platform"@en ; + skos:definition "A Material Artifact that is designed to support, and in some cases transport, a Sensor during its deployment and functioning."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000022 +cco:ont00000022 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000422 ; + rdfs:label "Radio Communication Reception Artifact Function"@en ; + skos:definition "A Communication Reception Artifact Function that is realized during events in which an Artifact receives information transmitted from another Artifact, where the transmission of information occurs using radio waves."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000023 +cco:ont00000023 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Sensor Deployment Artifact Function"@en ; + skos:definition "An Artifact Function that inheres in Artifacts that are designed to support or convey one or more Sensors while the Sensors are realizing their own Artifact Functions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000025 +cco:ont00000025 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001278 ; + rdfs:label "Electronic Stock"@en ; + skos:definition "Stock that consists of Bytes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000028 +cco:ont00000028 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000804 ; + rdfs:label "Dispersive Prism"@en ; + skos:definition "A Prism designed to break up a beam of light entering the Prism into its constituent spectral colors by leveraging the refractive index of light based on its Frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000030 +cco:ont00000030 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000288 ; + rdfs:label "Nuclear Reactor"@en ; + skos:definition "A Power Source that is designed to initiate and control a self-sustained nuclear chain reaction to produce power in the form of heat, which can be transferred to a working fluid for further conversion to mechanical or electrical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nuclear_reactor&oldid=1063370273"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000034 +cco:ont00000034 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000448 ; + rdfs:label "Conveyance Artifact Function"@en ; + skos:definition "A Motion Artifact Function that is realized in a process in which the bearer of the function conveys entities from one location to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000036 +cco:ont00000036 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Waste Management Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of collecting, transporting, processing, recycling, monitoring, or disposing of waste materials."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000038 +cco:ont00000038 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "System Role"@en ; + skos:definition "A Role that inheres in an entity in virtue of its parts or elements being arranged in such a way that they together exhibit behavior or meaning that they do not exhibit individually."@en ; + cco:ont00001754 "https://www.incose.org/about-systems-engineering/system-and-se-definition/general-system-definition"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000039 +cco:ont00000039 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000838 ; + rdfs:label "Portion of Solid Fuel"@en ; + skos:definition "A Portion of Fuel that is stored in a solid state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000043 +cco:ont00000043 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000593 ; + rdfs:label "Portion of Solid Propellant"@en ; + skos:definition "A Portion of Propellant that is stored in a solid state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000047 +cco:ont00000047 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000598 ; + rdfs:comment "Flow Control Valves are often more complex than a simple Valve and typically include an Actuator that is capable of automatically adjusting the state of the valve in response to signals from a connected Sensor or Controller."@en ; + rdfs:label "Flow Control Valve"@en ; + skos:definition "A Valve that is designed to regulate the flow or Pressure of a fluid."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flow_control_valve&oldid=1013438085"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000048 +cco:ont00000048 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000499 ; + rdfs:label "Random Wire Antenna"@en ; + skos:definition "A Wire Antenna that consists of a long wire suspended above the ground with a length that does not bear a relation to the wavelength of the radio waves used and which is typically used as a receiving antenna on the long, medium, and short wave bands."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Random_wire_antenna&oldid=1058546356"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000049 +cco:ont00000049 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000475 ; + rdfs:label "Banknote"@en ; + skos:definition "A Portion of Cash that consists of a portable slips of paper or fabric designed to bear some specified Financial Value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000050 +cco:ont00000050 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Very High Frequency Communication Instrument"@en ; + skos:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some Very High Frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000053 +cco:ont00000053 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000618 ; + rdfs:label "Ground Motor Vehicle"@en ; + skos:definition "A Ground Vehicle that is designed to receive its motive power from an Engine and is not designed to travel on rails."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Motor_vehicle&oldid=1063627395"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000054 +cco:ont00000054 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000431 ; + rdfs:label "Stirling Engine"@en ; + skos:definition "An External Combusion Engine that is designed to compress and expand some working fluid at different temperatures, such that there is a net conversion of heat energy to mechanical work."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Stirling_engine&oldid=1061164490"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000056 +cco:ont00000056 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000210 ; + rdfs:label "Reaction Engine"@en ; + skos:altLabel "Reaction Motor"@en ; + skos:definition "An Engine that provides propulsion by expelling Reaction Mass."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reaction_engine&oldid=1046981784"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000057 +cco:ont00000057 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000907 ; + rdfs:label "Mobile Telephone"@en ; + skos:definition "A Telephone that is connected to a Telephone Network by radio waves."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mobile_phone&oldid=1061800841"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000059 +cco:ont00000059 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000825 ; + rdfs:label "Telephone Line"@en ; + skos:altLabel "Telephone Circuit"@en ; + skos:definition "A Telecommunication Network Line that consists of a physical wire or other signaling medium that is designed to be part of a Telephone Network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000062 +cco:ont00000062 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001100 ; + rdfs:label "Frequency Measurement Artifact Function"@en ; + skos:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Frequency of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000064 +cco:ont00000064 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Book"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity by means of ink, paper, parchment, or other materials fastened together to hinge at one side."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Book&oldid=1063132471"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000066 +cco:ont00000066 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Military Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes related to the armed services."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000069 +cco:ont00000069 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001298 ; + rdfs:label "Transcript"@en ; + skos:definition "A Document that is designed to bear some specific Information Content Entity that was originally recorded in a different medium."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transcript&oldid=1038510063"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000075 +cco:ont00000075 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000304 ; + rdfs:label "Optical Microscope"@en ; + skos:altLabel "Light Microscope"@en ; + skos:definition "A Microscope that is designed to use visible light and a system of Optical Lenses to produce a significantly enlarged image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Optical_microscope&oldid=1063131242"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000076 +cco:ont00000076 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000727 ; + rdfs:label "Wired Communication Artifact Function"@en ; + skos:definition "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of a (usually cylindrical) flexible strand or rod of metal."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000081 +cco:ont00000081 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Cutting Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of separating some portion of its target into two or more portions through the application of acutely directed force."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cutting&oldid=1058846915"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000086 +cco:ont00000086 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000723 ; + rdfs:label "Autopilot System"@en ; + skos:altLabel "Autopilot"@en ; + skos:definition "A Vehicle Control System that is designed to enable some Agent to control the trajectory of a Vehicle without constant 'hands-on' control."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Autopilot&oldid=1063382206"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000088 +cco:ont00000088 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Firearm"@en ; + skos:definition "A Projectile Launcher that is designed to launch Bullets or Cartridges."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Firearm&oldid=1061216363"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000090 +cco:ont00000090 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:label "Infrared Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing infrared light to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Infrared_telescope&oldid=1062918090"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000091 +cco:ont00000091 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Coolant"@en ; + skos:definition "A Portion of Material that is designed to be used in a thermal control system to reduce or maintain the temperature of an object to or at a specified level."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000092 +cco:ont00000092 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000736 ; + rdfs:label "Bidirectional Transducer"@en ; + skos:definition "A Transducer that is designed to receive a signal in the form of physical phenomena and convert it into an electrical signal, and vice versa."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000093 +cco:ont00000093 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001278 ; + rdfs:label "Preferred Stock"@en ; + skos:definition "Stock that entitles its holder to receive a certain level of dividend payments before any dividends can be issued to other holders."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000095 +cco:ont00000095 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Control Surface"@en ; + skos:definition "A Material Artifact that is designed to deflect air, water, or another medium around its surface in order to change the Attitude of a Vehicle by rotating the Vehicle on one or more of its Axes of Rotation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flight_control_surfaces&oldid=1019271264"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000096 +cco:ont00000096 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Propulsion System"@en ; + skos:definition "A Material Artifact that is designed to facilitate the movement of material entities from one location to another and which consists of a source of mechanical power and a means of converting this power into propulsive force to generate the movement."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000097 +cco:ont00000097 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001207 ; + rdfs:label "Complex Optical Lens"@en ; + skos:altLabel "Lens System"@en ; + skos:definition "An Optical Lens consisting of more than one Simple Optical Lenses."@en ; + cco:ont00001754 "Hecht, Eugene (1987). Optics (2nd ed.). Addison Wesley. ISBN 978-0-201-11609-0. Chapters 5 & 6."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000098 +cco:ont00000098 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Electrical Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to perform a process involving electrical power."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000101 +cco:ont00000101 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000255 ; + rdfs:label "Portion of Liquid Oxygen"@en ; + skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid oxygen."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000103 +cco:ont00000103 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Vehicle Compartment"@en ; + skos:altLabel "Compartment"@en ; + skos:definition "A Material Artifact that is designed to partition a Vehicle into subdivisions for various purposes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000111 +cco:ont00000111 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Air Inlet"@en ; + skos:altLabel "Air Intake"@en ; + skos:definition "A Fluid Control Artifact that consists of an opening that is designed to capture and direct the flow of air into the system it is part of."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000113 +cco:ont00000113 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Ventilation Control Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes in which some Artifact is used to control the quality of air in some space."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000116 +cco:ont00000116 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Pump"@en ; + skos:definition "A Fluid Control Artifact that is designed to impart motion to a portion of fluid to transport it within a system through the use of mechanical action."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000117 +cco:ont00000117 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Information Processing Artifact"@en ; + skos:definition "A Material Artifact that is designed to use algorithms to transform some Information Content Entity into another Information Content Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000118 +cco:ont00000118 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000965 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001942 ; + owl:someValuesFrom cco:ont00000323 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Artifact Function Specification"@en ; + skos:definition "A Directive Information Content Entity that prescribes some Artifact Function and which is part of some Artifact Model."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000122 +cco:ont00000122 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000170 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001944 ; + owl:someValuesFrom cco:ont00000904 + ] ; + rdfs:label "Vehicle Track Point"@en ; + skos:definition "An Object Track Point that is where a Vehicle is or was located during some motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000128 +cco:ont00000128 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000255 ; + rdfs:label "Portion of Liquid Hydrogen"@en ; + skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid hydrogen."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000130 +cco:ont00000130 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Power Transformer"@en ; + skos:definition "A Material Artifact that is designed to transfer electrical energy between two or more circuits through electromagnetic induction."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transformer&oldid=1062163369"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000132 +cco:ont00000132 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000117 ; + rdfs:label "Recording Device"@en ; + skos:definition "An Information Processing Artifact that is designed to capture some information and store it in some recording format on some storage medium."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Record&oldid=1062776450"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000136 +cco:ont00000136 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:comment "Optical Instruments are typically constructed for the purpose of being used to aid in vision or the analysis of light."@en ; + rdfs:label "Optical Instrument"@en ; + skos:definition "A Material Artifact that is designed to process light waves."@en ; + skos:scopeNote "Light waves can be processed in a variety of ways including via reflection, refraction, diffraction, deflection, focusing, collimation, dispersion, and interference."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Optical_instrument&oldid=1061981216"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000143 +cco:ont00000143 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000103 ; + rdfs:label "Cargo Cabin"@en ; + skos:definition "A Vehicle Compartment that is used to store goods or materials during transportation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000145 +cco:ont00000145 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Incendiary Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of starting a fire."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Incendiary_device&oldid=1055642422"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000147 +cco:ont00000147 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000325 ; + rdfs:label "Flight Transponder"@en ; + skos:definition "A Radio Transponder that is designed to produce a specified response (typically for identification, location, or status update purposes) when it receives a radio-frequency interrogation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transponder_(aeronautics)&oldid=1052688836"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000152 +cco:ont00000152 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000998 ; + rdfs:label "Telephone Network"@en ; + skos:definition "A Telecommunication Network that is designed to allow telephone calls to be made between two or more parties connected to the network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000153 +cco:ont00000153 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000781 ; + rdfs:label "Generator Control Unit"@en ; + skos:definition "A Control System that is designed to regulate the voltage of some Electrical Power Source."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000156 +cco:ont00000156 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000088 ; + rdfs:label "Hand Gun"@en ; + skos:definition "A Firearm that is designed to have a relatively short barrel and to be held in one or two hands and to be fired without being braced against the shoulder."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Handgun&oldid=1060570395"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000158 +cco:ont00000158 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001105 ; + rdfs:label "Lithium-ion Electric Battery"@en ; + skos:definition "A Secondary Cell Electric Battery that produces electricity when lithium ions move from anode to cathode."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lithium-ion_battery&oldid=1064099588"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000159 +cco:ont00000159 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Timekeeping Instrument"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity that is about some temporal region."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Timekeeper&oldid=1061681902"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000160 +cco:ont00000160 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000581 ; + rdfs:label "Manual Tool"@en ; + skos:altLabel "Hand Tool"@en ; + skos:definition "A Tool that is designed to be powered by manual labor rather than by an engine."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hand_tool&oldid=1060741381"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000162 +cco:ont00000162 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000795 ; + rdfs:label "Electrical Connector Artifact Function"@en ; + skos:definition "An Electrical Conduction Artifact Function that is realized by processes in which some Artifact is used to join electrical terminations to create an electrical circuit."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000167 +cco:ont00000167 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001173 ; + rdfs:label "Large-Scale Rocket Launcher"@en ; + skos:definition "A Rocket Launcher that is designed to contain multiple Rocket Launchers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000170 +cco:ont00000170 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000171 +cco:ont00000171 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000344 ; + rdfs:label "Detergent Artifact Function"@en ; + skos:definition "A Surfactant Artifact Function that is realized in a process that cleans substances in dilute solutions."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Detergent&oldid=1064079329"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000174 +cco:ont00000174 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:label "Ultraviolet Telescope"@en ; + skos:altLabel "UV Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing ultraviolet light to form an enhanced image of the Object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000178 +cco:ont00000178 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Arrow"@en ; + skos:definition "A Portion of Ammunition that is designed to be fired from a Bow and consists of a long straight stiff shaft with stabilizers (fletchings) and a slot (the nock) on one end and a weighted tip (the arrowhead) on the other end."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Arrow&oldid=1058445874"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000183 +cco:ont00000183 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Fragrance Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes of perceiving a pleasant or sweet odor."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Perfume&oldid=1062785740"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000189 +cco:ont00000189 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Certificate"@en ; + skos:definition "An Information Bearing Artifact that bears an Information Content Entity which attests to certain demonstrated characteristics of an Object, Person, or Organization."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/degree" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000190 +cco:ont00000190 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001353 ; + rdfs:label "Minimum Speed Artifact Function"@en ; + skos:definition "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains the lowest speed at which that Artifact is designed to operate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000192 +cco:ont00000192 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000171 ; + owl:someValuesFrom cco:ont00001341 + ] ; + rdfs:label "Facility"@en ; + skos:definition "A Material Artifact that is designed as a building or campus dedicated to some specific purpose."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000193 +cco:ont00000193 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000059 ; + rdfs:label "Telephone Subscriber Line"@en ; + skos:definition "A Telephone Line that connects a Communication Endpoint to another node in a Telecommunication Network to enable service to a user's Telephone."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000194 +cco:ont00000194 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000795 ; + rdfs:label "Electrical Contact Artifact Function"@en ; + skos:definition "An Electrical Conduction Artifact Function that is realized by processes in which some Artifact is used as an endpoint of an electrical circuit from which an electrical current is passed via physical contact with the endpoint."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000199 +cco:ont00000199 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000771 ; + rdfs:label "Camera"@en ; + skos:definition "An Imaging Instrument that is designed to form and digitally or physically record an image of an entity."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/camera" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000204 +cco:ont00000204 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001104 ; + rdfs:label "Rifle"@en ; + skos:definition "A Long Gun that is designed to have a rifled barrel and to fire single Bullets over long ranges with high accuracy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rifle&oldid=1056172452"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000205 +cco:ont00000205 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000206 +cco:ont00000206 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Friction Reduction Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes of reducing the force resisting the relative motion of surfaces in contact."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Friction&oldid=1061569068"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000210 +cco:ont00000210 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Engine"@en ; + skos:altLabel "Motor"@en ; + skos:definition "A Material Artifact that is designed to convert one form of energy into mechanical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000212 +cco:ont00000212 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Chemical Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing toxic chemicals."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Chemical_weapon&oldid=1054342645"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000214 +cco:ont00000214 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000289 ; + rdfs:label "Moving Target Indication Artifact Function"@en ; + skos:definition "A Radar Imaging Artifact Function that inheres in Artifacts that are designed to identify and produce visual representations of moving entities by using a radar to emit successive phase coherent pulses, which are sampled and added to the subsequent pulse to cancel out signals from non-moving entities such that only signals from moving entities remain and are displayed."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000215 +cco:ont00000215 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:comment "A Radio Telescope consists of a specialized Antenna and a Radio Receiver and is typically used to receive radio waves from sources in outer space."@en ; + rdfs:label "Radio Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_telescope&oldid=1052819190"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000216 +cco:ont00000216 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Shell"@en ; + skos:definition "A Portion of Ammunition that is designed to be a non-self-propelled projectile and to carry a payload (explosive or other) over a relatively short distance."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Shell_(projectile)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000219 +cco:ont00000219 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001009 ; + rdfs:label "Reflecting Optical Telescope"@en ; + skos:altLabel "Reflecting Telescope"@en , + "Reflector"@en ; + skos:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via reflection through the use of one or more curved Mirrors to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reflecting_telescope&oldid=1062982683"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000230 +cco:ont00000230 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000136 ; + rdfs:label "Diffraction Grating"@en ; + skos:definition "An Optical Instrument with a periodic structure that is designed to split and defract a beam of light into several beams travelling in different directions."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Diffraction_grating&oldid=1060463366"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000231 +cco:ont00000231 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Torpedo Tube"@en ; + skos:definition "A Projectile Launcher that is designed to launch Torpedoes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Torpedo_tube&oldid=1063672665"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000233 +cco:ont00000233 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001278 ; + rdfs:label "Stock Certificate"@en ; + skos:definition "Stock that consists of a Certificate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000236 +cco:ont00000236 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Lighting System"@en ; + skos:definition "A Material Artifact that is designed to emit light within some area."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000238 +cco:ont00000238 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Propeller"@en ; + skos:altLabel "Propelling Screw"@en ; + skos:definition "A Material Artifact that is designed to convert rotary motion from an Engine or other mechanical Power Source into propulsive Force."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Propeller_(aeronautics)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000241 +cco:ont00000241 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001064 ; + rdfs:label "Two-Dimensional Barcode"@en ; + skos:definition "A Barcode that is designed to bear lines of varying widths, spacing, height, and color that concretize some Directive Information Content Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000242 +cco:ont00000242 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000241 ; + rdfs:label "Data Matrix Code"@en ; + skos:definition "A Two-Dimensional Barcode that consists of cells arranged in rectangular patterns and is used for marking small items in logistics and operations."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000243 +cco:ont00000243 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Heat Sink"@en ; + skos:definition "A Material Artifact that is designed to regulate the temperature of a computer by the passive transfer of heat away from other components in the computer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Heat_sink&oldid=1062822080"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000244 +cco:ont00000244 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001153 ; + rdfs:label "Fragmentation Artifact Function"@en ; + skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of a detonation which causes fragmentation."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/fragmentation" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000247 +cco:ont00000247 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Road"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable Ground Vehicles to travel from one location to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Road&oldid=1063402841" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000249 +cco:ont00000249 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:comment "A Shaft is usually used to connect other components of a drive train that cannot be connected directly either because of the distance between them or the need to allow for relative movement between those components."@en ; + rdfs:label "Shaft"@en ; + skos:definition "A Material Artifact that is designed to rotate and transmit Torque, Power, or Rotational Motion from one machine element to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Shaft&oldid=1023963656"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000252 +cco:ont00000252 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Nozzle"@en ; + skos:definition "A Fluid Control Artifact that is designed to control the speed, direction, rate, shape, or pressure of the flow of fluid exiting it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000253 +cco:ont00000253 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000254 +cco:ont00000254 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Transportation Artifact"@en ; + skos:definition "A Material Artifact that is fixed in place and designed to bear a Function, the realization of which is sometimes part of a process moving Vehicles and Agents from one location to another."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000255 +cco:ont00000255 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Cryogenic Material"@en ; + skos:definition "A Portion of Material that has been reduced to a very low temperature (below -180 degrees Celcius)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000256 +cco:ont00000256 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Fluid Control Artifact"@en ; + skos:definition "A Material Artifact that is designed to manipulate the flow of a fluid (i.e. a liquid or a gas)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000258 +cco:ont00000258 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001064 ; + rdfs:label "One-Dimensional Barcode"@en ; + skos:definition "A Barcode that is designed to bear parallel lines of varying widths and spacing that concretize some Directive Information Content Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000264 +cco:ont00000264 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000020 ; + rdfs:label "Hydraulic Fluid Reservoir"@en ; + skos:definition "A Container that is designed to store some hydraulic fluid for use in some Hyrdraulic Power Source."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000266 +cco:ont00000266 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001381 ; + rdfs:label "Hearing Aid"@en ; + skos:definition "A Medical Artifact that is designed to improve hearing for its user."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hearing_aid&oldid=1062688647"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000267 +cco:ont00000267 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Catalyst Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which the rate of a chemical reaction is increased due to the participation of an additional substance, without that substance being consumed in the reaction."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Catalysis&oldid=1063864001"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000268 +cco:ont00000268 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Cannon"@en ; + skos:definition "A Projectile Launcher that is designed to use a controlled explosion to launch a relatively large Portion of Ammunition, such as a Round Shot or a Shell, at a significant Velocity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cannon&oldid=1063792906"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000269 +cco:ont00000269 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Radio Transmitter"@en ; + skos:definition "A Radio Communication Instrument that is an electronic device that is designed to generate a radio frequency alternating current, which can be applied to a Radio Antenna to be transmitted as radio waves."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transmitter&oldid=1061735586"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000273 +cco:ont00000273 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Communication Interference Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to interfere with the transmission of information for the purpose of preventing communication."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000277 +cco:ont00000277 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Nuclear Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of a destructive nuclear reaction, either through fission or through a combination of fission and fusion."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nuclear_weapon&oldid=1060854171"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000280 +cco:ont00000280 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001124 ; + rdfs:label "Torpedo"@en ; + skos:definition "A Precision-Guided Missile that is designed to be fired into a body of water, be self-propelled through the water, and carry an explosive payload."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Torpedo&oldid=1062609830"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000282 +cco:ont00000282 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000719 ; + rdfs:label "Counterfeit Financial Instrument"@en ; + skos:definition "A Counterfeit Instrument that is designed to be a fake replica of some legally sanctioned Financial Instrument."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Counterfeit_money&oldid=1064052318"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000285 +cco:ont00000285 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000269 ; + rdfs:label "Emergency Locator Transmitter"@en ; + skos:definition "A Radio Transmitter that is designed to signal distress and provide positional data for the entity it is located on."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Emergency_position-indicating_radiobeacon&oldid=1063407242"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000287 +cco:ont00000287 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001187 ; + rdfs:label "Inertial Navigation System"@en ; + skos:altLabel "INS"@en ; + skos:definition "A Navigation System that is designed to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Inertial_navigation_system&oldid=1063682725"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000288 +cco:ont00000288 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Power Source"@en ; + skos:definition "A Material Artifact that is designed to supply power to some other Artifact."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_source&oldid=1032888635"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000289 +cco:ont00000289 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000601 ; + rdfs:label "Radar Imaging Artifact Function"@en ; + skos:definition "An Imaging Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities using radio waves."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000292 +cco:ont00000292 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00000995 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000686 ; + rdfs:label "Artifact Identifier"@en ; + skos:definition "A Designative Information Content Entity which designates some Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000294 +cco:ont00000294 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000533 ; + rdfs:label "Air-Breathing Jet Engine"@en ; + skos:altLabel "Ducted Jet Engine"@en ; + skos:definition "A Jet Engine that is propelled by a jet of hot exhaust gases formed from air that is drawn into the Engine via an Air Inlet."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Airbreathing_jet_engine&oldid=1062364308"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000298 +cco:ont00000298 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001173 ; + rdfs:label "Shoulder-Fired Rocket Launcher"@en ; + skos:definition "A Rocket Launcher that is designed to be small enough to be carried by a single person and fired while supported on the person's shoulder."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000299 +cco:ont00000299 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Prosthetic Leg"@en ; + skos:definition "A Prosthesis that is designed to replace a missing leg."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000301 +cco:ont00000301 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000663 ; + rdfs:label "Vehicle Transmission"@en ; + skos:altLabel "Gearbox"@en , + "Transmission"@en ; + skos:definition "A Power Transmission Artifact that is designed to vary the output speed and torque in a rotating power transfer system."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Transmission_(mechanics)"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000302 +cco:ont00000302 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Alternating Current Power Source"@en ; + skos:definition "An Electrical Power Source that is designed to transfer electrical power in the form of alternating current."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000303 +cco:ont00000303 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001036 ; + rdfs:label "Intercommunication System"@en ; + skos:definition "A Communication System that is designed to enable some Act of Communication between end points within a building, small collection of buildings, or within a small area of service."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Intercom&oldid=1055934442"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000304 +cco:ont00000304 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000771 ; + rdfs:label "Microscope"@en ; + skos:definition "An Imaging Instrument that is designed to enable users to see Objects that are otherwise too small to be seen by the naked eye by producing a significantly enlarged image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Microscope&oldid=1059024357"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000306 +cco:ont00000306 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001370 ; + rdfs:label "Hinge"@en ; + skos:definition "A Machine Bearing that is designed to limit the angle of Rotation between two solid objects."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hinge&oldid=1059935559"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000307 +cco:ont00000307 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001084 ; + rdfs:label "Portion of Food"@en ; + skos:definition "A Portion of Processed Material that is designed to be consumed and ingested for nutrition or taste."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Food&oldid=1062824590"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000309 +cco:ont00000309 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Healthcare Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of treating and preventing illness."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Health_care&oldid=1064015344"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000310 +cco:ont00000310 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000552 ; + rdfs:label "Grenade"@en ; + skos:altLabel "Hand Grenade"@en ; + skos:definition "An Explosive Weapon that is designed to be relatively small and to be thrown by hand."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Grenade&oldid=1060366148"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000311 +cco:ont00000311 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001999 ; + rdfs:label "Filtration Artifact Function"@en ; + skos:definition "A Filter Function that is realized in a process in which some solid entity is prevented from moving along with some quantity of liquid."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Filtration&oldid=1061655528"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000315 +cco:ont00000315 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000918 ; + rdfs:label "Telecommunication Switching Node"@en ; + skos:definition "A Telecommunication Network Node that is capable of redirecting a communication transmission to another Telecommunication Network Node."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000316 +cco:ont00000316 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000255 ; + rdfs:label "Portion of Liquid Helium"@en ; + skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid helium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000317 +cco:ont00000317 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001218 ; + rdfs:label "Electronic Signal Processing Artifact Function"@en ; + skos:definition "A Signal Processing Artifact Function that inheres in Artifacts that are designed to process or transfer information contained in electronic signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000319 +cco:ont00000319 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001942 ; + owl:someValuesFrom cco:ont00000995 + ] ; + rdfs:label "Artifact Design"@en ; + skos:definition "A Directive Information Content Entity that is a specification of an object, manifested by an agent, intended to accomplish goals, in a particular environment, using a set of primitive components, satisfying a set of requirements, subject to constraints."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Design&oldid=1063941625"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000321 +cco:ont00000321 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Residential Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of residing in a dwelling or home."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000323 +cco:ont00000323 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000034 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00000995 + ] ; + rdfs:label "Artifact Function"@en ; + skos:definition "A Function that inheres in some Artifact in virtue of that Artifact being designed to be used in processes that require that Function to be realized."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000325 +cco:ont00000325 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Radio Transponder"@en ; + skos:altLabel "Transmitter-Responder"@en ; + skos:definition "A Radio Communication Instrument that is an electronic device that acts as both a Radio Transmitter and responder and is used to wirelessly receive and transmit electrical signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000326 +cco:ont00000326 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "UPC Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of 6 or 12 numerical digits and is used to scan consumer goods."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000328 +cco:ont00000328 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000870 ; + rdfs:label "Transportation Infrastructure"@en ; + skos:definition "An Infrastructure System that is designed to facilitate the movement of material entities from one location to another by providing the necessary structures for Persons to travel or for Vehicles to transport material entities."@en ; + cco:ont00001754 "http://www.cfr.org/infrastructure/transportation-infrastructure-moving-america/p18611" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000333 +cco:ont00000333 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000394 ; + rdfs:label "Gas Turbine"@en ; + skos:altLabel "Combustion Turbine"@en ; + skos:definition "An Internal Combustion Engine that has a rotating compressor and a turbine and is designed to operate utilizing continous Combustion to produce Thrust, either directly via exhaust or indirectly via a prop."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gas_turbine&oldid=1062398125"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000334 +cco:ont00000334 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000303 ; + rdfs:label "Interphone"@en ; + skos:definition "An Intercommunication System that that is designed to facilitate some Act of Communication between agents by means of audio messages."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000337 +cco:ont00000337 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001029 ; + rdfs:label "Rocket-Propelled Grenade"@en ; + skos:definition "An Unguided Rocket that is designed to contain an explosive warhead, be fired from a Shoulder-Fired Rocket Launcher, and be used against Tanks."@en ; + cco:ont00001753 "RPG" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket-propelled_grenade&oldid=1063641548"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000338 +cco:ont00000338 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Fan"@en ; + skos:definition "A Fluid Control Artifact that consists of a rotating arrangement of vanes or blades that are designed to act on a portion of fluid to create flow within it."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Fan_(machine)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000340 +cco:ont00000340 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000268 ; + rdfs:label "Mortar"@en ; + skos:definition "A Cannon that is designed to fire projectiles at relatively low velocities over relatively short ranges."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Mortar_(weapon)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000341 +cco:ont00000341 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Prosthetic Arm"@en ; + skos:definition "A Prosthesis that is designed to replace a missing arm."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000342 +cco:ont00000342 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Brake"@en ; + skos:definition "A Material Artifact that is designed to inhibit the Vehicle's Motion by absorbing energy from a moving system."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Brake&oldid=1047693009"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000343 +cco:ont00000343 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000634 ; + rdfs:label "Reciprocating Steam Engine"@en ; + skos:definition "A Steam Engine that is designed to use one or more reciprocating pistons to convert pressure into a rotating motion."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reciprocating_engine&oldid=1057783145"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000344 +cco:ont00000344 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001281 ; + rdfs:label "Surfactant Artifact Function"@en ; + skos:definition "An Emulsifier Artifact Function that is realized in a process that lowers the surface tension between two liquids or between a liquid and a solid."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Surfactant&oldid=1063693411"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000346 +cco:ont00000346 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Communication Instrument"@en ; + skos:definition "A Material Artifact that is designed to facilitate communication between at least two entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000347 +cco:ont00000347 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001159 ; + rdfs:label "Electronic Bond"@en ; + skos:definition "A Bond that consists of Bytes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000348 +cco:ont00000348 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000995 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00001999 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Filter"@en ; + skos:definition "A Material Artifact that bears a Filter Function."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000350 +cco:ont00000350 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000453 ; + rdfs:label "Cooling System"@en ; + skos:definition "An Environment Control System that is designed to cool the air or objects in a Site."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000352 +cco:ont00000352 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001139 ; + rdfs:label "Satellite Artifact"@en ; + skos:definition "A Spacecraft that is designed to Orbit a Space Object (typically Earth)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000353 +cco:ont00000353 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Research Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to perform research on a specified entity or class of entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000355 +cco:ont00000355 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001009 ; + rdfs:label "Refracting Optical Telescope"@en ; + skos:altLabel "Refracting Telescope"@en , + "Refractor"@en ; + skos:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via refraction through the use of one or more Lenses to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Refracting_telescope&oldid=1059975066"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000362 +cco:ont00000362 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000533 ; + rdfs:comment "Most rocket engines are also Internal Combustion Engines, however non-combusting forms also exist. For example, an untied balloon full of air that is released and allowed to zoom around the room may be both a Rocket Engine and a Physically Powered Engine."@en ; + rdfs:label "Rocket Engine"@en ; + skos:altLabel "Thruster"@en ; + skos:definition "A Jet Engine that is designed to use only stored Rocket Propellant to form a high speed propulsive jet in order to generate Thrust."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket_engine&oldid=1063879464"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000363 +cco:ont00000363 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000998 ; + rdfs:label "Wireless Telecommunication Network"@en ; + skos:altLabel "Wireless Network"@en ; + skos:definition "A Telecommunication Network that uses wireless connections to connect Telecommunication Network Nodes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wireless_network&oldid=1060257041"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000364 +cco:ont00000364 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001221 ; + rdfs:label "Pneumatic Motor"@en ; + skos:altLabel "Air Motor"@en , + "Compressed Air Engine"@en ; + skos:definition "A Physically Powered Engine that converts potential energy stored in a portion of compressed air into mechanical energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000372 +cco:ont00000372 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Power Transformer Rectifier Unit"@en ; + skos:altLabel "TRU"@en ; + skos:definition "A Material Artifact that is designed to perform the functions of both a Rectifier and a Transformer."@en ; + cco:ont00001754 "http://www.skybrary.aero/index.php/Transformer_Rectifier_Unit_(TRU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000376 +cco:ont00000376 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Gallium Arsenide"@en ; + skos:altLabel "Portion of GaAs"@en ; + skos:definition "A Portion of Material that is composed of a compound of the elements gallium and arsenic."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000382 +cco:ont00000382 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Spreadsheet"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some Information Content Entity in an interactive, tabular form."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Spreadsheet&oldid=1064060503"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000394 +cco:ont00000394 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000746 ; + rdfs:label "Internal Combustion Engine"@en ; + skos:definition "A Combustion Engine that is designed to have an internal Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy that is then converted into mechanical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Internal_combustion_engine&oldid=1063281505"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000397 +cco:ont00000397 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Combustion Chamber"@en ; + skos:altLabel "Burner"@en , + "Combustor"@en , + "Flame Holder"@en ; + skos:definition "A Material Artifact that is designed to wholly or partially bound an internal Site where a Combustion process is intended to occur."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000403 +cco:ont00000403 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Diffraction Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a diffraction event in which the Artifact forces a wave to bend around the corners of an obstacle or aperture into the region of geometrical shadow of the obstacle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000407 +cco:ont00000407 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Electrical Resistance Artifact Function"@en ; + skos:definition "An Electrical Artifact Function that is realized in processes in which an Artifact opposes the flow of an electric current."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electrical_resistivity_and_conductivity&oldid=1063749049"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000409 +cco:ont00000409 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000742 ; + rdfs:label "Spark Ignition System"@en ; + skos:definition "An Ignition System that is designed to produce a spark in order to initiate an Ignition process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000411 +cco:ont00000411 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001100 ; + rdfs:label "Speed Measurement Artifact Function"@en ; + skos:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Speed of a specified object's or class of objects' Motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000412 +cco:ont00000412 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Oxidizer Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which electrons are removed from a reactant in a redox reaction."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Redox&oldid=1063866348"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000413 +cco:ont00000413 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000304 ; + rdfs:label "Electron Microscope"@en ; + skos:definition "A Microscope that is designed to use a beam of accelerated electrons to illuminate the target and produce a significantly enlarged image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electron_microscope&oldid=1060512240"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000415 +cco:ont00000415 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000828 ; + rdfs:label "Anti-Microbial Artifact Function"@en ; + skos:definition "A Pesticide Artifact Function that is realized in a process which causes illness in, or the death of, a microorganism."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Antimicrobial&oldid=1064100151"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000417 +cco:ont00000417 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Prosthetic Hand"@en ; + skos:definition "A Prosthesis that is designed to replace a missing hand."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000420 +cco:ont00000420 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000117 ; + rdfs:label "Computer"@en ; + skos:definition "An Information Processing Artifact that is designed to execute an arbitrary set of arithmetic or logical operations automatically."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Computer&oldid=1061553332"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000422 +cco:ont00000422 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Communication Reception Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to receive information that has been transmitted for the purpose of communiction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000427 +cco:ont00000427 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000053 ; + rdfs:label "Armored Fighting Vehicle"@en ; + skos:definition "A Ground Motor Vehicle that is designed to be armored and used to transport and support military personal in combat missions."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Armoured_fighting_vehicle&oldid=1063212018"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000428 +cco:ont00000428 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Railway Junction"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable a Train to switch between the tracks of two routes."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Junction_(rail)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000429 +cco:ont00000429 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "Codabar Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of numbers 0-9 and the characters -$:/.+ and is used by logistics and healthcare professionals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000431 +cco:ont00000431 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000746 ; + rdfs:label "External Combustion Engine"@en ; + skos:definition "A Combustion Engine that is designed to have an external Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy to heat the working fluid, which transfers energy to the Engine where it is converted into mechanical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=External_combustion_engine&oldid=1063941809"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000434 +cco:ont00000434 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001207 ; + rdfs:label "Simple Optical Lens"@en ; + skos:definition "An Optical Lens consisting of a single piece of transparent material."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000436 +cco:ont00000436 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000304 ; + rdfs:label "X-ray Microscope"@en ; + skos:definition "A Microscope that is designed to use Electromagnetic Radiation in the soft X-ray band to produce a significantly enlarged image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=X-ray_microscope&oldid=1046169107"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000437 +cco:ont00000437 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Enhancing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes of intensifying, increainsg, or further improving the quality, value, or extent of some entity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Enhancement&oldid=1003326590"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000440 +cco:ont00000440 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000713 ; + rdfs:label "Watercraft"@en ; + skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by water travel."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Watercraft&oldid=1054071067"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000445 +cco:ont00000445 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Weapon"@en ; + skos:definition "A Material Artifact that is designed to destroy or inflict damage to structures or systems, or to kill or wound living things by creating specific lethal or nonlethal effects."@en ; + skos:scopeNote "Nonlethal effects include all outcomes short of death or destruction. This is captured by the fact that Damaged Stasis and Wounded Stasis are defined in terms of impairment of the Independent Continuant that participates in them."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Weapon&oldid=1143263715"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000448 +cco:ont00000448 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Motion Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which an entity changes its position with respect to time."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Motion_(physics)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000451 +cco:ont00000451 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Collimation Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a collimation event in which the Artifact narrows a beam of particles or waves by either causing the spatial cross-section of the beam to become smaller or by causing the directions of motion of the beam's constituents to be aligned in a specifc direction of Motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000452 +cco:ont00000452 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Timekeeping Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to keep track of and report the current time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000453 +cco:ont00000453 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:comment "Controlling air quality typically involves temperature control, oxygen replenishment, and removal of moisture, odor, smoke, heat, dust, airborne bacteria, carbon dioxide, and other undesired gases or particulates."@en ; + rdfs:label "Environment Control System"@en ; + skos:definition "A Material Artifact that is designed to control the temperature, air quality, or other feature of a Site that is relevant to the comfort or operation of entities located within that Site."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000454 +cco:ont00000454 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000742 ; + rdfs:label "Compression Ignition System"@en ; + skos:definition "An Ignition System that is designed to generate heat by compressing a portion of fuel and oxidizer mixture in order to initiate an Ignition process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000456 +cco:ont00000456 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Railway"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable Trains to transport passengers and goods."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000457 +cco:ont00000457 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001084 ; + rdfs:label "Portion of Material"@en ; + skos:definition "A Portion of Processed Material that was produced to be used as the input for another Act of Artifact Processing."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000458 +cco:ont00000458 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Coupling"@en ; + skos:definition "A Material Artifact that is designed to connect two Shafts together at their ends for the purpose of transmitting power."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Coupling&oldid=1055718683"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000461 +cco:ont00000461 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000966 ; + rdfs:label "ISSN Barcode"@en ; + skos:definition "An EAN Barcode that is used to designate periodicals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000466 +cco:ont00000466 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Orientation Control Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact is used to control the Orientation of some object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000467 +cco:ont00000467 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000427 ; + rdfs:label "Armored Personnel Carrier"@en ; + skos:definition "An Armored Fighting Vehicle that is designed to transport infantry to the battlefield but which are not usually designed to take part in a direct-fire battle."@en ; + cco:ont00001753 "APC" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Armoured_personnel_carrier&oldid=1061608326"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000470 +cco:ont00000470 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000189 ; + rdfs:label "Academic Degree"@en ; + skos:definition "A Certificate issued by an Educational Organization to a Person to indicate that the Person has satisfactorily completed a course of study, or as an honorary recognition of the Person's achievement."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/degree" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000471 +cco:ont00000471 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001046 ; + rdfs:label "Warning Message"@en ; + skos:definition "A Notification Message that is designed to bear an Information Content Entity that describes a possible or impending threat."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000475 +cco:ont00000475 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000537 ; + rdfs:label "Portion of Cash"@en ; + skos:definition "A Financial Instrument that is designed to be a ready medium of exchange."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000477 +cco:ont00000477 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Fuel Cell"@en ; + skos:definition "An Electrical Power Source that consists in part of an anode, a cathode, and an electrolyte; converts chemical energy from a fuel into electricity through a chemical reaction of positively charged hydrogen ions with an oxidizing agent (typically oxygen); and, if given a continuous source of fuel and oxidizing agent, can continuously produce electricity."@en ; + skos:scopeNote "A Fuel Cell differs from a Battery in that it requires a continuous source of fuel and oxygen to sustain the chemical reaction, whereas a Battery only uses chemicals already stored inside it."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fuel_cell&oldid=1063586731"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000480 +cco:ont00000480 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Life Support Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact materially affects an organism, where this causes that organism to continue living in a situation where death would otherwise occur."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000481 +cco:ont00000481 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Research and Development Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of producing new knowledge or of devising new applications of existing knowledge."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Research_and_development&oldid=1062181110"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000482 +cco:ont00000482 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000289 ; + rdfs:label "Synthetic Aperture Radar Imaging Artifact Function"@en ; + skos:definition "A Radar Imaging Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities using the motion of a radar antenna over a targeted region to create a synthetic aperture."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000488 +cco:ont00000488 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Tripod"@en ; + skos:definition "A Material Artifact that consists of three legs and a platform that joins them and which is designed to support the weight and maintain the stability of objects that are attached to or rested on the platform."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tripod&oldid=1063988190"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000491 +cco:ont00000491 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Detonating Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes of combustion involving a supersonic exothermic front accelerating through a medium that eventually drives a shock front propagating directly in front of it."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Detonation&oldid=1061553336"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000493 +cco:ont00000493 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000799 ; + rdfs:label "Code List"@en ; + skos:definition "A List that contains an ordered sequence of Information Bearing Entities that carry Code Identifiers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000495 +cco:ont00000495 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000273 ; + rdfs:label "Radio Communication Interference Artifact Function"@en ; + skos:definition "A Communication Interference Artifact Function that is realized during events in which an Artifact is used to interfere with the transmission of information via radio waves."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000499 +cco:ont00000499 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001192 ; + rdfs:label "Wire Antenna"@en ; + skos:definition "A Radio Antenna that consists primarily of a length of wire."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000504 +cco:ont00000504 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Optical Processing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a visible light processing event."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000516 +cco:ont00000516 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000288 ; + rdfs:label "Pneumatic Power Source"@en ; + skos:definition "A Power Source that is designed to generate, control, or transmit power by means of compressed air or compressed inert gases."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000522 +cco:ont00000522 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000294 ; + rdfs:label "Pulsejet Engine"@en ; + skos:altLabel "Pulse Jet"@en , + "Pulsejet"@en ; + skos:definition "An Air-Breathing Jet Engine that is capable of operating statically and uses intermittent (pulsing) Combustion of the fuel-oxidizer mixture before expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pulsejet&oldid=1050473545"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000524 +cco:ont00000524 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000350 ; + rdfs:label "Air Conditioning Unit"@en ; + skos:altLabel "AC Unit"@en ; + skos:definition "A Cooling System that is designed to remove excess heat and humidity from the air in an enclosed space."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Air_conditioning&oldid=1063494896"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000526 +cco:ont00000526 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:label "Gamma-ray Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Gamma-rays to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000533 +cco:ont00000533 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000056 ; + rdfs:comment "Some (most) jet engines utilize turbines, but some do not. Most rocket engines do not utilize turbines, but some do."@en ; + rdfs:label "Jet Engine"@en ; + skos:definition "A Reaction Engine that discharges a fast moving jet that generates Thrust by jet propulsion."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Jet_engine&oldid=1060157063"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000534 +cco:ont00000534 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001153 ; + rdfs:label "Cutting Artifact Function"@en ; + skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired by being opened or divided."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/cutting" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000536 +cco:ont00000536 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001159 ; + rdfs:label "Bond Certificate"@en ; + skos:definition "A Bond that consists of a Certificate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000537 +cco:ont00000537 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Financial Instrument"@en ; + skos:definition "A Material Artifact that is designed to be a tradeable asset and that is legally sanctioned."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000538 +cco:ont00000538 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000831 ; + rdfs:label "Defoliant Artifact Function"@en ; + skos:definition "An Herbicide Artifact Function that is realized in a process that causes a plant to lose its leaves."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Defoliant&oldid=1059494225"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000547 +cco:ont00000547 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000771 ; + rdfs:label "Telescope"@en ; + skos:definition "An Imaging Instrument that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Electromagnetic Radiation to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000549 +cco:ont00000549 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000254 ; + rdfs:label "Water Transportation Artifact"@en ; + skos:definition "A Transportation Artifact that is fixed in place and designed to bear a Function, the realization of which is sometimes part of a process of moving Vehicles and Agents from one location to another via water."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000552 +cco:ont00000552 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Explosive Weapon"@en ; + skos:altLabel "Bomb"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of a violent release of energy caused by the exothermic reaction of an explosive material."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Explosive_weapon&oldid=1062481268"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000556 +cco:ont00000556 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:comment "Depending on the nature of the Flight or Mission, the Payload of a Vehicle may include cargo, passengers, flight crew, munitions, scientific instruments or experiments, or other equipment. Extra fuel, when optionally carried, is also considered part of the payload."@en ; + rdfs:label "Payload"@en ; + skos:definition "A Material Entity that is transported by a Vehicle during an Act of Location Change for the purpose of being delivered to or performing one or more functions at a predefined location."@en ; + skos:scopeNote "In each case, the Payload is what provides the immediate reason for performing the Act of Location Change (e.g. transporting the passengers of a commercial airline flight to their destination; transporting food, fuel, oxygen, research equipment, and spare parts to the International Space Station; or conveying an array of sensors, cameras, and communications systems so they can operate during a Sun-Synchronous Earth Orbit)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000559 +cco:ont00000559 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000241 ; + rdfs:label "QR Code"@en ; + skos:definition "A Two-Dimensional Barcode that consists of numeric, alphanumeric, binary, or kanji information and is used primarily for tracking and marketing."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000561 +cco:ont00000561 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Dam"@en ; + skos:definition "A Material Artifact that is designed to impound surface water or underground streams."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Dam&oldid=1053601756" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000569 +cco:ont00000569 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000736 ; + rdfs:label "Sensor"@en ; + skos:definition "A Transducer that is designed to convert incoming energy into a output signal which reliably corresponds to changes in that energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000571 +cco:ont00000571 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000980 ; + rdfs:label "Article of Solid Waste"@en ; + skos:definition "A Portion of Waste Material that has a low liquid content."@en ; + cco:ont00001754 "https://stats.oecd.org/glossary/detail.asp?ID=2508" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000575 +cco:ont00000575 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000965 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001942 ; + owl:someValuesFrom obo:BFO_0000019 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Quality Specification"@en ; + skos:definition "A Directive Information Content Entity that prescribes some Quality."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000577 +cco:ont00000577 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Power Rectifier"@en ; + skos:definition "A Material Artifact that is designed to convert alternating current (AC) to direct current (DC)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rectifier&oldid=1049943028"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000581 +cco:ont00000581 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Tool"@en ; + skos:definition "A Material Artifact that is designed to assist in the performance of manual or mechanical work and not to be consumed in that process."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tool&oldid=1061967184"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000582 +cco:ont00000582 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "Code 93 Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of up to 93 ASCII characters and is used in logistics to identify packages in retail inventory, lable electornic components, and provide supplementary delivery information."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000586 +cco:ont00000586 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000238 ; + rdfs:label "Controllable Pitch Propeller"@en ; + skos:altLabel "Variable-Pitch Propeller"@en ; + skos:definition "A Propeller whose blades are designed to be alterable by rotating the blades about their vertical axis by means of mechanical or hydraulic arrangement."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Variable-pitch_propeller&oldid=1041375492"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000591 +cco:ont00000591 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000029 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000124 ; + owl:someValuesFrom cco:ont00000995 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000029 ; + rdfs:label "Artifact Location"@en ; + skos:definition "A Site that is the location of some Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000593 +cco:ont00000593 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Propellant"@en ; + skos:definition "A Portion of Material that is designed to be used as an input in a Propulsion Process to produce Thrust."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000596 +cco:ont00000596 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000966 ; + rdfs:label "JAN-13 Barcode"@en ; + skos:definition "An EAN Barcode that consists of 13 numerical digits and is used primarily in Japan to designate products at the point of sale."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000597 +cco:ont00000597 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Instrument Display Panel"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear information about some Artifact that is derived by the instrumentation Sensors of that Artifact."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flight_instruments&oldid=1062972990"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000598 +cco:ont00000598 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Valve"@en ; + skos:definition "A Fluid Control Artifact that is designed to regulate, direct, or control the flow of fluid by opening, closing, or partially obstructing the fluid from moving along a passageway."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Valve&oldid=1048906126"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000600 +cco:ont00000600 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Legal Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of giving legal advice to clients drafting legal documents for clients and representing clients in legal negotiations and court proceedings such as lawsuits."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Law&oldid=1060821734"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000601 +cco:ont00000601 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Imaging Artifact Function"@en ; + skos:definition "An Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000602 +cco:ont00000602 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "ITF Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of an even number of numerical characters and is used primarily in packaging and distribution."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000603 +cco:ont00000603 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Navigation Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to determine the precise location of itself or another object and plan a route to a specified destination."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000606 +cco:ont00000606 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000053 ; + rdfs:comment "Trucks vary greatly in their size and power -- ranging from small ultra-light trucks to enormous heavy trucks. Trucks also vary greatly in their configurations -- ranging from very basic flatbeds or box trucks to highly specialized cargo carriers. Trucks may also be configured to mount specialized equipment, such as in the case of fire trucks, concrete mixers, and suction excavators."@en ; + rdfs:label "Truck"@en ; + skos:definition "A Ground Motor Vehicle that is designed to be used to transport cargo."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Truck&oldid=1060924486"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000617 +cco:ont00000617 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000199 ; + rdfs:label "Infrared Camera"@en ; + skos:altLabel "Thermal Imaging Camera"@en , + "Thermographic Camera"@en ; + skos:definition "A Camera that is designed to form and record an image generated from infrared radiation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Thermographic_camera&oldid=1063916009"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000618 +cco:ont00000618 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000713 ; + rdfs:label "Ground Vehicle"@en ; + skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by some form of ground travel."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Category:Land_vehicles&oldid=546083623"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000623 +cco:ont00000623 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Impact Shielding Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact reduces the damage caused to the shielded object by an impact with another object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000624 +cco:ont00000624 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001298 ; + rdfs:label "Report"@en ; + skos:definition "A Document that is designed to bear some specific Information Content Entity that conveys an account of some event, situation, or the result of some observation or inquiry."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Report&oldid=1063765657"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000625 +cco:ont00000625 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Nozzle Throat"@en ; + skos:definition "A Fluid Control Artifact that consists of the narrowest portion of a Nozzle that is designed to converge the flow of fluid in order to increase the Velocity of the flow."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000627 +cco:ont00000627 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00001141 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Infrastructure Element"@en ; + skos:definition "A Material Entity that bears an Infrastructure Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000629 +cco:ont00000629 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Deception Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes which misinform or mislead some other entity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Deception&oldid=1061346984"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000634 +cco:ont00000634 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000431 ; + rdfs:label "Steam Engine"@en ; + skos:definition "An External Combustion Engine that is designed to use steam as its working fluid."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Steam_engine&oldid=1064097686"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000635 +cco:ont00000635 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Refraction Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a refraction event in which the Artifact causes a change in direction of wave propagation due to a change in its transmission medium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000637 +cco:ont00000637 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000593 ; + rdfs:label "Portion of Gaseous Propellant"@en ; + skos:definition "A Portion of Propellant that is stored in a gaseous state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000638 +cco:ont00000638 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000210 ; + rdfs:label "Heat Engine"@en ; + skos:definition "An Engine that is designed to convert thermal energy into mechanical energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000640 +cco:ont00000640 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001002 ; + rdfs:label "Email Message"@en ; + skos:definition "A Message that is transmitted to the recipient's Email Box."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000646 +cco:ont00000646 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000247 ; + rdfs:label "Highway"@en ; + skos:definition "A Road that is designed to enable Ground Vehicles to travel between relatively major destinations."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Highway&oldid=1063985949"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000650 +cco:ont00000650 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000214 ; + rdfs:label "Ground Moving Target Indication Artifact Function"@en ; + skos:definition "A Moving Target Indication Artifact Function that inheres in Artifacts that are designed to identify and track entities moving on or near the ground."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000651 +cco:ont00000651 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Containing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which one entity contains another."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/containing" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000652 +cco:ont00000652 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Decoy"@en ; + skos:definition "A Material Artifact that is designed to distract or conceal what an individual or group might be looking for."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Decoy&oldid=1058455081"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000656 +cco:ont00000656 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Radiological Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing radioactive material."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radiological_warfare&oldid=1060817328"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000657 +cco:ont00000657 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001100 ; + rdfs:label "Distance Measurement Artifact Function"@en ; + skos:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the spatial Distance to a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000658 +cco:ont00000658 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Missile Launcher"@en ; + skos:definition "A Projectile Launcher that is designed to launch one or more Precision-Guided Missiles."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000661 +cco:ont00000661 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Government Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes in which public policy is administered and the actions of its members are directed."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000663 +cco:ont00000663 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Power Transmission Artifact"@en ; + skos:definition "A Material Artifact that is designed to transfer and regulate Power flow from a Power Source to an application point."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000665 +cco:ont00000665 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Cleaning Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes in which some Artifact is used to remove foreign objects from another object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000668 +cco:ont00000668 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Battery Terminal"@en ; + skos:definition "A Material Artifact that is designed to connect a load or charger to a single or multiple-cell Battery."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Battery_terminal&oldid=1059455659"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000671 +cco:ont00000671 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000415 ; + rdfs:label "Anti-Bacterial Artifact Function"@en ; + skos:definition "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some bacterium."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Antibiotic&oldid=1063633090"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000673 +cco:ont00000673 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Prosthetic Foot"@en ; + skos:definition "A Prosthesis that is designed to replace a missing foot."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000678 +cco:ont00000678 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Voltage Regulating Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact is used to cause a change in the voltage magnitude between the sending and receiving end of an electrical component."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Voltage_regulation&oldid=1045628774"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000679 +cco:ont00000679 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Attitude Control Artifact Function"@en ; + skos:altLabel "Orientation Control Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in an attitude control process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000681 +cco:ont00000681 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000236 ; + rdfs:label "External Navigation Lighting System"@en ; + skos:definition "A Lighting System that is designed to be attached to some Vehicle and to emit colored light in order to signal that Vehicle's position, heading, and status."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Navigation_light&oldid=1034200601"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000682 +cco:ont00000682 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000136 ; + rdfs:label "Mirror"@en ; + skos:definition "An Optical Instrument that is designed to reflect light that has a wavelength within a given range and is incident on its relflecting surface such that the reflected light maintains most of the characteristics of the original light."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mirror&oldid=1063296474"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000686 +cco:ont00000686 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000688 +cco:ont00000688 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000294 ; + rdfs:label "Turbofan Air-Breathing Jet Engine"@en ; + skos:definition "An Air-Breathing Jet Engine that uses a Turbofan, which consists of a Turbine and a Fan."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Turbofan&oldid=1063724215"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000689 +cco:ont00000689 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Switch Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process of breaking an electric circuit by interrupting the current or diverting it from one conductor to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Switch&oldid=1059685800"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000690 +cco:ont00000690 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000346 ; + rdfs:label "Telecommunication Instrument"@en ; + skos:definition "A Communication Instrument that is designed for use by some Agent in some Act of Communication where the recipient of that communication is potentially a significant distance away from the Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000691 +cco:ont00000691 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000020 ; + rdfs:label "Fuel Tank"@en ; + skos:definition "A Container that is designed to store a Portion of Fuel."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000693 +cco:ont00000693 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000575 ; + rdfs:label "Mass Specification"@en ; + skos:definition "A Quality Specification that prescribes the Amount of Mass that a Material Entity should have."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000694 +cco:ont00000694 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Nozzle Mouth"@en ; + skos:definition "A Fluid Control Artifact that consists of the portion of a Nozzle at the end that is designed to be where the flow of fluid exits the Nozzle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000698 +cco:ont00000698 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000252 ; + rdfs:comment "By increasing the Exhaust Velocity of the gas, the Nozzle increases the Thrust generated."@en ; + rdfs:label "Convergent-Divergent Nozzle"@en ; + skos:altLabel "CD Nozzle"@en , + "de Laval Nozzle"@en ; + skos:definition "A Nozzle that consists of a tube with an asymmetric hourglass shape that is designed to accelerate hot pressurized gas by converting the heat energy of the gas flow into kinetic energy as it passes through the Nozzle Throat to generate increased Exhaust Velocity of the gas as it exits the Nozzle."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=De_Laval_nozzle&oldid=1062746288"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000700 +cco:ont00000700 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000998 ; + rdfs:label "Computer Network"@en ; + skos:altLabel "Data Network"@en ; + skos:definition "A Telecommunication Network that is designed to allow the exchange of data between two or more computers connected to the network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Computer_network&oldid=1061571662"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000701 +cco:ont00000701 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001145 ; + rdfs:label "Wire Receiver"@en ; + skos:definition "A Radio Receiver that uses a Wire Antenna to intercept radio signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000702 +cco:ont00000702 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Image"@en ; + skos:definition "An Information Bearing Artifact that is designed to carry an Information Content Entity that represents some entity owing to a visual isomorphism between the carrying artifact and the entity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Image&oldid=1062709732"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000703 +cco:ont00000703 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000159 ; + rdfs:label "System Clock"@en ; + skos:definition "A Timekeeping Instrument that is part of a computer an is designed to issue a steady high-frequency signal that is used to synchronize all of the computer's internal components."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/system+clock" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000704 +cco:ont00000704 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Tunnel"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable Ground Vehicles to travel underneath a surrounding soil, earth, or rock formation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tunnel&oldid=1062456881"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000706 +cco:ont00000706 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Terminal Board"@en ; + skos:definition "A Material Artifact that is designed to join electrical terminations and create an electrical circuit by means of a block which connects individual wires without a splice or physically joining the ends."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electrical_connector&oldid=1061247409"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000709 +cco:ont00000709 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001248 ; + rdfs:label "Visual Prosthesis"@en ; + skos:altLabel "Bionic Eye"@en ; + skos:definition "An Artificial Eye that is designed to replace a missing eye, which performs the function of an eye."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Visual_prosthesis&oldid=1059269261"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000711 +cco:ont00000711 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000156 ; + rdfs:label "Semi-automatic Pistol"@en ; + skos:definition "A Hand Gun that has a single fixed firing chamber machined into the rear of the barrel and an ammunition magazine capable of holding multiple Cartridges such that the Hand Gun is designed to automatically reload each time it is fired and to fire a Bullet with each successive pull of the trigger until the stored ammunition is depleted."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Semi-automatic_pistol&oldid=1058568715"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000713 +cco:ont00000713 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Vehicle"@en ; + skos:definition "A Material Artifact that is designed to facilitate the movement of material entities from one location to another by conveying them there."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000714 +cco:ont00000714 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001192 ; + rdfs:label "Horn Antenna"@en ; + skos:altLabel "Microwave Horn"@en ; + skos:definition "A Radio Antenna that consists of a flaring metal waveguide shaped like a horn to direct radio waves in a beam and can be used on its own or as a feeder for larger antenna structures, such as Parabolic Antennas."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Horn_antenna&oldid=1050375403"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000715 +cco:ont00000715 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001381 ; + rdfs:label "Prosthesis"@en ; + skos:definition "A Medical Artifact that is designed to replace a missing body part."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000716 +cco:ont00000716 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Electric Battery"@en ; + skos:altLabel "Battery"@en ; + skos:definition "An Electrical Power Source that is designed to produce electric power by converting chemical energy to electrical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Battery_(electricity)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000719 +cco:ont00000719 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Counterfeit Instrument"@en ; + skos:definition "A Material Artifact that is designed to be a fake replica of some genuine Artifact."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000720 +cco:ont00000720 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000020 ; + rdfs:label "Cryogenic Storage Dewar"@en ; + skos:definition "A Container that is designed to store a Portion of Cryogenic Material (such as liquid helium or liquid oxygen) and which consists of, minimally, walls that are constructed from two or more layers that are separated by a high vacuum to provide thermal insulation between the interior and exterior of the dewar."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cryogenic_storage_dewar&oldid=1021282649"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000721 +cco:ont00000721 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000804 ; + rdfs:label "Polarizing Prism"@en ; + skos:definition "A Prism designed to split a beam of light entering the Prism into components of varying polarization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000723 +cco:ont00000723 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000781 ; + rdfs:label "Vehicle Control System"@en ; + skos:definition "A Control System that is designed to enable some Agent to control some Vehicle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000724 +cco:ont00000724 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001192 ; + rdfs:label "Parabolic Antenna"@en ; + skos:altLabel "Dish Antenna"@en , + "Parabolic Dish"@en ; + skos:definition "A Radio Antenna that uses a parabolic reflector to direct or receive radio waves and has a very high gain."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Parabolic_antenna&oldid=1057213241"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000727 +cco:ont00000727 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Communication Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which meaningful signs are conveyed from one entity to another."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000728 +cco:ont00000728 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000215 ; + rdfs:comment "The submillimeter waveband is between the far-infrared and microwave wavebands and is typically taken to have a wavelength of between a few hundred micrometers and a millimeter."@en ; + rdfs:label "Submillimeter Wavelength Radio Telescope"@en ; + skos:altLabel "Microwave Telescope"@en ; + skos:definition "A Radio Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves from the submillimeter waveband (i.e. microwaves) to form an enhanced image of the Object."@en ; + cco:ont00001754 "http://kp12m.as.arizona.edu/docs/what_is_submillimeter.htm, https://en.wikipedia.org/wiki/Submillimetre_astronomy" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000730 +cco:ont00000730 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Hydraulic Power Transfer Unit"@en ; + skos:definition "A Material Artifact that is designed to transfer hydraulic power from one of an Aircraft's hydraulic systems to another in the event that a system has failed or been turned off."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000734 +cco:ont00000734 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000552 ; + rdfs:label "Land Mine"@en ; + skos:definition "An Explosive Weapon that is designed to be concealed under or on the ground and to detonate as its target passes over or near it."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Land_mine&oldid=1060289159"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000736 +cco:ont00000736 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Transducer"@en ; + skos:definition "A Material Artifact that is designed to convert one form of energy to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000740 +cco:ont00000740 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000002 ; + rdfs:comment "This class is designed to group continuants according to a very broad criterion and is not intended to be used as a parent class for entities that can be more specifically represented under another class. Hence, Natural Resource may be an appropriate subtype but Money, Oil, and Gold Mine are not."@en ; + rdfs:label "Resource"@en ; + skos:definition "A Continuant that is owned by, in the possession of, or is otherwise controlled by an Agent such that it could be used by that Agent."@en ; + skos:example "a group of interns" , + "a knowledge base" , + "a plot of land" , + "a software program" , + "a sum of money" , + "a vehicle" ; + skos:scopeNote "Resources are Resources for some Agent. If no instance of Agent existed, no instance of Resource would exist either. It is not a requirement that something be valuable in order for it to be a Resource. Thus the value of something can drastically change without altering whether that thing is a Resource."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000742 +cco:ont00000742 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Ignition System"@en ; + skos:definition "A Material Artifact that is designed to produce an Ignition process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000743 +cco:ont00000743 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000702 ; + rdfs:label "Chart"@en ; + skos:definition "An Image that is designed to carry some Representational Information Content Entity that is prescribed by some canonical visual format."@en ; + cco:ont00001754 "Adapted from “Chart.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/chart. Accessed 4 Aug. 2024." ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000746 +cco:ont00000746 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000638 ; + rdfs:label "Combustion Engine"@en ; + skos:definition "A Heat Engine that is designed to convert thermal energy that is generated through a local Combustion process into mechanical energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000747 +cco:ont00000747 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000549 ; + rdfs:label "Canal"@en ; + skos:definition "A Water Transportation Artifact that is an artificial Hydrographic Feature designed to convey water or enable Watercraft to travel inland."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Canal&oldid=1059514223" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000748 +cco:ont00000748 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Bullet"@en ; + skos:definition "A Portion of Ammunition that is designed to be projected by a Firearm, Sling, Slingshot, or Air Gun, but which does not (typically) contain explosives."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bullet&oldid=1062391591"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000756 +cco:ont00000756 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Database"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some set of specific Information Content Entities and to be rapidly searchable and retrievable."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Database&oldid=1057024641"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000758 +cco:ont00000758 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Component Role"@en ; + skos:definition "A Role that inheres in an entity having a discrete structure in virtue of that entity being part of a system considered at a particular level of analysis."@en ; + cco:ont00001754 "ISO/IEC. 1998. Information Technology ― System and Software Integrity Levels Geneva, Switzerland: International Organization for Standardization (ISO)/International Electrotechnical Commission (IEC). ISO/IEC. 15026:1998. : 3.1"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000762 +cco:ont00000762 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000415 ; + rdfs:label "Fungicide Artifact Function"@en ; + skos:definition "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some fungus or fungal spore."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fungicide&oldid=1056769271"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000764 +cco:ont00000764 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000504 ; + rdfs:label "Optical Focusing Artifact Function"@en ; + skos:definition "An Optical Processing Artifact Function that is realized by an Artifact participating in a light focusing event in which the Artifact causes the light beam to converge on a target spatial point."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000767 +cco:ont00000767 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:comment "A Lubrication System typical consists of a reservoir, pump, heat exchanger, filter, regulator, valves, sensors, pipes, and hoses. In some cases it also includes the passageways and openings within the artifact it is designed to lubricate. For example, the oil holes in a bearing and crankshaft."@en ; + rdfs:label "Lubrication System"@en ; + skos:definition "A Material Artifact that is designed to contain, transfer, and regulate the flow of lubricant to multiple locations in an Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000771 +cco:ont00000771 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Imaging Instrument"@en ; + skos:definition "A Material Artifact that is designed to produce images (visual representations) of an entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000774 +cco:ont00000774 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000199 ; + rdfs:label "Video Camera"@en ; + skos:definition "A Camera that is designed to form and digitally or physically record a continuous stream of subsequent images of an entity or scene such that the images can be played back in succession as a video."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000775 +cco:ont00000775 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000796 ; + rdfs:label "Locomotive"@en ; + skos:definition "A Rail Transport Vehicle that is designed to provide the motive power for a Train."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Locomotive&oldid=1062802629"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000776 +cco:ont00000776 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Signal Detection Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in the process of discerning between information-bearing patterns and random patterns, or noise, that distract from the information."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Detection_theory&oldid=1049765804"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000777 +cco:ont00000777 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001221 ; + rdfs:label "Hydraulic Motor"@en ; + skos:definition "A Physically Powered Engine that converts hydraulic pressure and flow into torque and angular displacement."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hydraulic_motor&oldid=1027427666"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000781 +cco:ont00000781 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Control System"@en ; + skos:definition "A Material Artifact that is designed to manage, command, direct, or regulate the behavior of at least one other Artifact."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Control_system&oldid=1061817176"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000785 +cco:ont00000785 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001320 ; + rdfs:label "Radio Repeater"@en ; + skos:definition "A Radio Transceiver that is designed to receive a radio signal, amplify it, and retransmit it (often on another frequency)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Repeater&oldid=1040047439"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000788 +cco:ont00000788 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000634 ; + rdfs:label "Turbine Steam Engine"@en ; + skos:altLabel "Steam Turbine"@en ; + skos:definition "A Steam Engine that is designed to extract thermal energy from pressurized steam and use it to do mechanical work on a rotating output shaft."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Steam_turbine&oldid=1060224962"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000790 +cco:ont00000790 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Direct Current Power Source"@en ; + skos:definition "An Electrical Power Source that is designed to transfer electrical power in the form of direct current."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000791 +cco:ont00000791 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Chemical Reaction Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process that leads to the transformation of one set of chemical substances to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Chemical_reaction&oldid=1063262412"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000792 +cco:ont00000792 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001009 ; + rdfs:label "Catadioptric Optical Telescope"@en ; + skos:altLabel "Catadioptric Telescope"@en ; + skos:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light through the use of a combination of Lenses and Mirrors to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Catadioptric_system&oldid=1017210114"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000793 +cco:ont00000793 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Fuel Ventilation System"@en ; + skos:definition "A Fluid Control Artifact that is designed to allow air into the Fuel Tank to take the place of burned fuel."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000795 +cco:ont00000795 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Electrical Conduction Artifact Function"@en ; + skos:definition "An Electrical Artifact Function that is realized by an Artifact being used to conduct an electric current."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000796 +cco:ont00000796 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000618 ; + rdfs:label "Rail Transport Vehicle"@en ; + skos:definition "A Ground Vehicle that is designed to convey cargo, passengers, or equipment by Railway."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000798 +cco:ont00000798 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000101 ; + owl:someValuesFrom cco:ont00000958 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000893 + ] ; + rdfs:label "Information Bearing Artifact"@en ; + skos:definition "A Material Artifact that carries an Information Content Entity and is designed to do so using a particular format or structure."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000799 +cco:ont00000799 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "List"@en ; + skos:definition "An Information Bearing Artifact that consists of one or more Information Bearing Artifacts that carry Information Content Entities and are the subjects of some Sequence Position Ordinality."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=List_(abstract_data_type)&oldid=1041588680"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000804 +cco:ont00000804 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000136 ; + rdfs:label "Prism"@en ; + skos:definition "An Optical Instrument that is designed to refract light and which consists of a transparent material with flat polished surfaces where at least two of these surfaces have an angle between them."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prism&oldid=1060221124"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000806 +cco:ont00000806 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000581 ; + rdfs:label "Power Tool"@en ; + skos:definition "A Tool that is designed to be actuated by a Power Source and mechanism other than or in addition to manual labor."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_tool&oldid=1057147715"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000807 +cco:ont00000807 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000394 ; + rdfs:label "Compression Ignition Engine"@en ; + skos:definition "An Internal Combustion Engine that is designed to operate by igniting a portion of Fuel and Oxidizer mixture using heat generated via compression of the mixture."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000808 +cco:ont00000808 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Reactant Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which a substance or compound is added to a system in order to bring about a chemical reaction and is consumed in the course of the reaction."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reagent&oldid=1017651471"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000809 +cco:ont00000809 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Submersible Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes of operating while submerged in water."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Submersible&oldid=1062994844"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000811 +cco:ont00000811 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Radio Wave Conversion Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact being used to convert electric power into radio waves or radio waves into electric power."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000813 +cco:ont00000813 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Nuclear Fuel"@en ; + skos:definition "A Portion of Material that is designed to be used in a nuclear fission process to produce energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000816 +cco:ont00000816 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000255 ; + rdfs:label "Portion of Liquid Nitrogen"@en ; + skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid nitrogen."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000823 +cco:ont00000823 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001148 ; + rdfs:label "Optical Communication Artifact Function"@en ; + skos:definition "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of visible light."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000825 +cco:ont00000825 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000346 ; + rdfs:label "Telecommunication Network Line"@en ; + skos:definition "A Communication Artifact that is designed to be the physical transmission medium that connects two or more Telecommunication Network Nodes within a Telecommunication Network to facilitate communication between the Nodes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications_link&oldid=1062252217"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000828 +cco:ont00000828 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001123 ; + rdfs:label "Pesticide Artifact Function"@en ; + skos:definition "A Poison Artifact Function that is realized in a process which causes illness in, or the death of, a living thing that is detrimental to humans or human concerns."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/pesticide" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000831 +cco:ont00000831 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000828 ; + rdfs:label "Herbicide Artifact Function"@en ; + skos:definition "A Pesticide Artifact Function that is realized in a process which causes harm to, or the death to, unwanted plants."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Herbicide&oldid=1061228045"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000838 +cco:ont00000838 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Fuel"@en ; + skos:definition "A Portion of Material that is designed to release thermal energy when reacted with other substances."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000840 +cco:ont00000840 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000618 ; + rdfs:label "Bicycle"@en ; + skos:definition "A Ground Vehicle that consists of two wheels, one in front of the other, attached to a frame along with handlebars and pedals such that it is designed to receive its motive power from pedaling."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bicycle&oldid=1063761124"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000841 +cco:ont00000841 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001153 ; + rdfs:label "Explosive Artifact Function"@en ; + skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired beucase of the rapid increase in volume and release of energy in an extreme manner."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/explosive" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000843 +cco:ont00000843 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Solar Panel"@en ; + skos:definition "An Electrical Power Source that consists in part of one or more photovoltaic (i.e. solar) cells that convert light energy (photons) directly into electricity by means of the photovoltaic effect."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Solar_cell&oldid=1063439932"^^xsd:anyURI , + "https://en.wikipedia.org/w/index.php?title=Solar_panel&oldid=1064397496"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000848 +cco:ont00000848 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000088 ; + rdfs:label "Mounted Gun"@en ; + skos:definition "A Firearm that is designed to be fired while mounted."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000849 +cco:ont00000849 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000453 ; + rdfs:label "Heating System"@en ; + skos:definition "An Environment Control System that is designed to heat the air or objects in a Site."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000851 +cco:ont00000851 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001104 ; + rdfs:label "Light Machine Gun"@en ; + skos:definition "A Long Gun that is designed to fire bullets in quick succession from an ammunition belt or magazine and to be employed by an individual soldier, with or without assistance, and typically weighing 9-22 lbs."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Light_machine_gun&oldid=1063598801"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000856 +cco:ont00000856 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000182 ; + rdfs:label "Artifact History"@en ; + skos:definition "A History of an Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000857 +cco:ont00000857 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Ultra High Frequency Communication Instrument"@en ; + skos:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some Ultra High Frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000858 +cco:ont00000858 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000552 ; + rdfs:label "Improvised Explosive Device"@en ; + skos:definition "An Explosive Weapon that is designed to be used in non-conventional military action."@en ; + cco:ont00001753 "IED" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Improvised_explosive_device&oldid=1063432318"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000864 +cco:ont00000864 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Public Safety Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of preventing and responding to events that could endanger the safety of the general public from significant danger, injury/harm, or damage, such as crimes or disasters (natural or man-made)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000868 +cco:ont00000868 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001173 ; + rdfs:label "Rocket Pod"@en ; + skos:definition "A Rocket Launcher that is designed to contain several Unguided Rockets held in individual tubes and to be used by Aircraft or Helicopters for close air support."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000869 +cco:ont00000869 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000199 ; + rdfs:label "Optical Camera"@en ; + skos:definition "A Camera that is designed to form and record an image generated from visible light."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Camera&oldid=1063931551"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000870 +cco:ont00000870 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Infrastructure System"@en ; + skos:altLabel "Infrastructure"@en ; + skos:definition "A Material Entity that is composed of elements bearing Infrastructure Roles and is by itself sufficient to provide a planned service or benefit to some organization that maintains its elements."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000874 +cco:ont00000874 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Video"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity in the form of a sequence of representations that are presented sufficiently rapidly to create the appearance of motion and continuity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Video&oldid=1049376249"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000877 +cco:ont00000877 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000723 ; + rdfs:label "Brake Control System"@en ; + skos:definition "A Vehicle Control System that is designed to control the process of braking with the aim of preventing rolling, skidding, and hydroplaning."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000878 +cco:ont00000878 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000325 ; + rdfs:label "Identification Friend or Foe Transponder"@en ; + skos:altLabel "IFF"@en ; + skos:definition "A Radio Transponder that is designed to automatically transmit a predefined signal in response to receiving an appropriate interrogation signal such that the entity it is located on can be positively identified as friendly."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Identification_friend_or_foe&oldid=1055168718"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000880 +cco:ont00000880 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Religious Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes related to worship and prayer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000886 +cco:ont00000886 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000422 ; + rdfs:label "Wired Communication Reception Artifact Function"@en ; + skos:definition "A Communication Reception Artifact Function that is realized during events in which an Artifact receives information transmitted from another Artifact, where the transmission of information occurs via a direct connection using an electrical conductor."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000888 +cco:ont00000888 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "High Frequency Communication Instrument"@en ; + skos:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some High Frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000893 +cco:ont00000893 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:comment "An empty notebook, when manufactured, is a medium but not yet a carrier of information content. However, a book, in the sense of a novel or collection of philosophical essays or poems, depends necessarily on it carrying some information content. Thus, there are no empty books. Likewise, there are no empty databases, only portions of digital storage that have not yet been configured to carry some information content according to a database software application."@en ; + rdfs:label "Information Medium Artifact"@en ; + skos:definition "A Material Artifact that is designed to have some Information Bearing Artifact as part."@en ; + skos:example "A magnetic hard drive" , + "A notebook" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000897 +cco:ont00000897 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:comment "Oxidizers are essential participants in many processes including combustion and rusting. Hence, a portion of oxidizer must always be present along with a portion of fuel in order for combustion to occur."@en ; + rdfs:label "Portion of Oxidizer"@en ; + skos:altLabel "Portion of Oxidant"@en , + "Portion of Oxidizing Agent"@en ; + skos:definition "A Portion of Material that is disposed to steal electrons from other substances (i.e. to oxidize other substances) as a participant in a reduction-oxidation process."@en ; + skos:example "oxygen, hydrogen peroxide, chlorine, sulfiric acid, potassium nitrate" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000899 +cco:ont00000899 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "MSI Plessey Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of an indefinite number of numerical characters and is used for inventory control and marking storage containers and shelves in warehouse environments."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000900 +cco:ont00000900 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001169 ; + rdfs:label "Radio Communication Relay Artifact Function"@en ; + skos:definition "A Communication Relay Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information without the use of wires from one Artifact to another for the purpose of communiction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000903 +cco:ont00000903 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000346 ; + rdfs:label "Radio Communication Instrument"@en ; + skos:definition "A Communication Instrument that is designed to enable communication between two or more entities via the use of radio waves."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000904 +cco:ont00000904 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000205 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001855 ; + owl:someValuesFrom cco:ont00000122 + ] ; + rdfs:label "Vehicle Track"@en ; + skos:definition "An Object Track for a Vehicle during some motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000906 +cco:ont00000906 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000690 ; + rdfs:label "Email Box"@en ; + skos:definition "A Telecommunication Instrument that is designed to be the delivery destination of Email Messages that are addressed to the corresponding Email Address."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Email_box&oldid=1061295368"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000907 +cco:ont00000907 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000690 ; + rdfs:label "Telephone"@en ; + skos:altLabel "Phone"@en ; + skos:definition "A Telecommunication Instrument that is designed to provide point-to-point communication between agents by means of audio messages."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000909 +cco:ont00000909 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Emergency AC/DC Power Source"@en ; + skos:definition "An Electrical Power Source that is designed to provide electrical power in an emergency situation by means of both alternating current and direct current."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000918 +cco:ont00000918 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000346 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000998 + ] ; + rdfs:label "Telecommunication Network Node"@en ; + skos:definition "A Communication Artifact that consists of a connection point, redistribution point, or endpoint that is designed to be part of a Telecommunication Network and can be either active or passive."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Node_(networking)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000919 +cco:ont00000919 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000575 ; + rdfs:label "Parts List"@en ; + skos:definition "A Quality Specification that prescribes the Amount of some type of Artifact that are part of or located on another Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000928 +cco:ont00000928 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000796 ; + rdfs:label "Train Car"@en ; + skos:altLabel "Railroad Car"@en ; + skos:definition "A Rail Transport Vehicle that consists of a single Vehicle that is not a Train but is designed to be connected to other Train Cars along with at least one Locomotive to form a Train."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Railroad_car&oldid=1063802472"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000929 +cco:ont00000929 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Part Role"@en ; + skos:definition "A Role that inheres in an entity in virtue of it being part of some other entity without being subject to further subdivision or disassembly without destruction of its designated use."@en ; + cco:ont00001754 "http://origins.sese.asu.edu/ses405/Class%20Notes/Sys-Hier-WBS_Module_V1.0_PAS.pdf"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000930 +cco:ont00000930 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001105 ; + rdfs:label "Nickel-metal Hydride Electric Battery"@en ; + skos:altLabel "NiMH Battery"@en ; + skos:definition "A Secondary Cell Electric Battery that has a metal-hydride anode and nickel oxide hydroxide cathode."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93metal_hydride_battery&oldid=1061626676"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000931 +cco:ont00000931 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000326 ; + rdfs:label "UPC-A Barcode"@en ; + skos:definition "A UPC Barcode that consists of 12 numerical digits."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000932 +cco:ont00000932 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Computing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a computation process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000933 +cco:ont00000933 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000907 ; + rdfs:label "Landline Telephone"@en ; + skos:definition "A Telephone that is connected to a Telephone Network through a pair of wires."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000937 +cco:ont00000937 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Inhibiting Motion Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact is used to inhibit the motion of some object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000938 +cco:ont00000938 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Financial Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of managing money."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000942 +cco:ont00000942 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000204 ; + rdfs:label "Sniper Rifle"@en ; + skos:definition "A Rifle that is designed to be highly accurate for long-range precision tactical shooting."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sniper_rifle&oldid=1061592308"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000943 +cco:ont00000943 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001248 ; + rdfs:label "Ocular Prosthesis"@en ; + skos:definition "An Artificial Eye that is designed to replace a missing eye, but which does not function as an eye."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ocular_prosthesis&oldid=1061336760"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000944 +cco:ont00000944 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000601 ; + rdfs:label "Thermal Imaging Artifact Function"@en ; + skos:definition "An Imaging Artifact Function that is realized during events in which an Artifact is used to create a visual representation of an entity using radiation from the far infrared region of the electromagnetic spectrum that the entity emits"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000945 +cco:ont00000945 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:label "X-ray Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing X-rays to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=X-ray_telescope&oldid=1035025593"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000947 +cco:ont00000947 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001100 ; + rdfs:label "Temperature Measurement Artifact Function"@en ; + skos:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Temperature of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000952 +cco:ont00000952 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000210 ; + rdfs:label "Electric Motor"@en ; + skos:altLabel "Electric Engine"@en ; + skos:definition "An Engine that is designed to convert electrical energy into mechanical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electric_motor&oldid=1063829856"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000954 +cco:ont00000954 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000870 ; + rdfs:label "Telecommunication Infrastructure"@en ; + skos:definition "An Infrastructure System that is designed to support the use of Telecommunication Instruments to communicate."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Category:Telecommunications_infrastructure&oldid=989151314"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000956 +cco:ont00000956 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001086 ; + rdfs:label "Highway Interchange"@en ; + skos:definition "A Road Junction that is designed to enable Ground Vehicles to exit one or more Highways and enter another Highway without directly crossing any other traffic stream."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Interchange_(road)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000958 +cco:ont00000958 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000961 +cco:ont00000961 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Current Conversion Artifact Function"@en ; + skos:definition "An Electrical Artifact Function that is realized by processes in which some Artifact is used to convert some electrical current."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000962 +cco:ont00000962 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000593 ; + rdfs:label "Portion of Liquid Propellant"@en ; + skos:definition "A Portion of Propellant that is stored in a liquid state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000963 +cco:ont00000963 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Fuel Transfer System"@en ; + skos:definition "A Fluid Control Artifact that is designed to facilitate the transfer of some Portion of Fuel from the Fuel Tank for use in some Engine."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000965 +cco:ont00000965 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000966 +cco:ont00000966 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "EAN Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of 8 or 13 numerical digits and is used to scan consumer goods."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000968 +cco:ont00000968 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000204 ; + rdfs:label "Assault Rifle"@en ; + skos:definition "A Rifle that is designed to have selective-fire functionality and use an intermediate Cartridge and a detachable magazine."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Assault_rifle&oldid=1063774380"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000972 +cco:ont00000972 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000966 ; + rdfs:label "EAN-13 Barcode"@en ; + skos:definition "An EAN Barcode that consists of 13 numerical digits and is used to designate products at the point of sale."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000980 +cco:ont00000980 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001084 ; + rdfs:label "Portion of Waste Material"@en ; + skos:definition "A Portion of Processed Material that serves no further use in terms of the initial user's own purposes of production, transformation, or consumption such that the Agent wants to dispose of it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000985 +cco:ont00000985 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001350 ; + rdfs:label "Thermal Insulation Artifact Function"@en ; + skos:definition "A Thermal Control Artifact Function that is realized during events in which an Artifact prevents or reduces the transfer of heat between objects that are in thermal contact or in range of radiative influence."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Thermal_insulation&oldid=1059273300"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000988 +cco:ont00000988 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000804 ; + rdfs:label "Reflective Prism"@en ; + skos:definition "A Prism designed to reflect light in order to flip, invert, rotate, deviate, or displace a beam of light entering the Prism."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000993 +cco:ont00000993 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000961 ; + rdfs:label "Power Rectifying Artifact Function"@en ; + skos:definition "A Current Conversion Artifact Function that is realized by processes in which some Artifact is used to convert alternating current (AC) to direct current (DC)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000994 +cco:ont00000994 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Electrical Power Production Artifact Function"@en ; + skos:definition "An Electrical Artifact Function that is realized during events in which an Artifact is used to generate electrical power."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 +cco:ont00000995 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Material Artifact"@en ; + skos:definition "A Material Entity that was designed by some Agent to realize a certain Function."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000996 +cco:ont00000996 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000294 ; + rdfs:label "Ramjet Engine"@en ; + skos:altLabel "Ramjet"@en ; + skos:definition "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air (without the use of an axial compressor) and decelerate it to subsonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ramjet&oldid=1062836331"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000998 +cco:ont00000998 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001036 ; + rdfs:label "Telecommunication Network"@en ; + skos:definition "A Communication System that is designed to enable the transmission of information over significant distances between Telecommunication Endpoints via Telecommunication Network Nodes and Lines."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001000 +cco:ont00001000 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000252 ; + rdfs:label "Spray Nozzle"@en ; + skos:definition "A Nozzle that is designed to facilitate a conversion of the flow of a portion of liquid into a dynamic collection of drops dispersed in a portion of gas."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001002 +cco:ont00001002 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Message"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity that is relatively brief and to be transmitted from a sender to a recipient."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Message&oldid=1060098631"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001003 +cco:ont00001003 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Cartridge"@en ; + skos:definition "A Portion of Ammunition that is designed to package a Bullet, a propellant substance, and a primer within a case that is designed to fit within the firing chamber of a Firearm."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Cartridge_(firearms)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001005 +cco:ont00001005 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000294 ; + rdfs:label "Turbojet Air-Breathing Jet Engine"@en ; + skos:definition "An Air-Breathing Jet Engine that uses a Turbojet, which consists of a Turbine with a Propelling Nozzle."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Turbojet&oldid=1060948529"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001007 +cco:ont00001007 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000928 ; + rdfs:label "Passenger Train Car"@en ; + skos:definition "A Train Car that is designed to transport passengers."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Passenger_car_(rail)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001008 +cco:ont00001008 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Biological Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, incapacity, or death by means of releasing disease-producing agents—such as bacteria, viruses, or fungi."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Biological_warfare&oldid=1062972883"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001009 +cco:ont00001009 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:label "Optical Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Optical_telescope&oldid=1062201329"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001011 +cco:ont00001011 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000053 ; + rdfs:label "Automobile"@en ; + skos:definition "A Ground Motor Vehicle that is designed to transport a small number of passengers while traveling on four tired wheels."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Car&oldid=1064116950"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001012 +cco:ont00001012 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:comment "Further variants of GS1 DataBar have not been defined here."@en ; + rdfs:label "GS1 DataBar Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of 12-14 numerical digits and is used in retail and healthcare."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001013 +cco:ont00001013 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Heating Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which the thermal energy of a system increases."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001015 +cco:ont00001015 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000646 ; + rdfs:label "Controlled-Access Highway"@en ; + skos:altLabel "Expressway"@en , + "Freeway"@en , + "Motorway"@en ; + skos:definition "A Highway that is designed for high-speed vehicular traffic, with all traffic flow and ingress/egress regulated."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Controlled-access_highway&oldid=1063655601"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001018 +cco:ont00001018 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000350 ; + rdfs:label "Equipment Cooling System"@en ; + skos:definition "A Cooling System that is designed to cool some piece of equipment."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001019 +cco:ont00001019 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000723 ; + rdfs:label "Steering Control System"@en ; + skos:definition "A Vehicle Control System that is designed to control the direction some Vehicle is traveling."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001020 +cco:ont00001020 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000838 ; + rdfs:label "Portion of Gaseous Fuel"@en ; + skos:definition "A Portion of Fuel that is stored in a gaseous state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001024 +cco:ont00001024 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000394 ; + rdfs:label "Spark Ignition Engine"@en ; + skos:definition "An Internal Combustion Engine that is designed to operate by generating a spark to ignite a portion of Fuel and Oxidizer mixture."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001025 +cco:ont00001025 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Electric Generator"@en ; + skos:definition "An Electrical Power Source that is designed to convert mechanical energy to electrical energy for use in an external circuit."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electric_generator&oldid=1057805035"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001027 +cco:ont00001027 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000095 ; + rdfs:label "Trim Tab"@en ; + skos:definition "A Control Surface that is designed to counteract hydro-, aerodynamic, or other forces in order to stabilize the Vehicle it is part of in the desired Attitude."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Trim_tab&oldid=1054550485"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001029 +cco:ont00001029 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Unguided Rocket"@en ; + skos:altLabel "Rocket"@en ; + skos:definition "A Portion of Ammunition that is designed to be a self-propelled, but unguided, projectile that delivers some payload (explosive or other) over relatively long distances through the use of a Rocket Engine."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Rocket_(weapon)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001030 +cco:ont00001030 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000796 ; + rdfs:label "Train"@en ; + skos:altLabel "Railroad Train"@en , + "Railway Train"@en ; + skos:definition "A Rail Transport Vehicle that consists of a series of connected Train Cars or Railcars."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Train&oldid=1064071492"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001034 +cco:ont00001034 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000774 ; + rdfs:label "Full Motion Video Camera"@en ; + skos:definition "A Video Camera that is designed to capture and record images of sufficiently high quality and in rapid enough succession that the resulting video supports smooth playback."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001036 +cco:ont00001036 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Communication System"@en ; + skos:definition "A Material Artifact that is designed to enable some Act of Communication by means of transmission systems, relay stations, tributary stations, and data terminal equipment, usually capable of interconnection and interoperation to form an integrated whole."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Communications_system&oldid=1058600948"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001038 +cco:ont00001038 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001105 ; + rdfs:label "Nickel Cadmium Electric Battery"@en ; + skos:altLabel "NiCad Battery"@en ; + skos:definition "A Secondary Cell Electric Battery that has a cadmium anode and nickel oxide hydroxide cathode."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93cadmium_battery&oldid=1061809659"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001042 +cco:ont00001042 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Equipment Mount"@en ; + skos:definition "A Material Artifact that is designed to support an Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001043 +cco:ont00001043 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000713 ; + rdfs:label "Aircraft"@en ; + skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by air travel."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aircraft&oldid=1063924562"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001044 +cco:ont00001044 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Nuclear Radiation Detection Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to detect the presence of nuclear radiation particles."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001045 +cco:ont00001045 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000319 ; + rdfs:label "Artifact Model"@en ; + skos:definition "A Directive Information Content Entity that prescribes a common set of Functions and Qualities to inhere in a set of artifact instances."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001046 +cco:ont00001046 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001002 ; + rdfs:label "Notification Message"@en ; + skos:definition "A Message that is designed to bear an Information Content Entity that describes a scenario that has been determined to merit attention by the recipient."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001049 +cco:ont00001049 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000288 ; + rdfs:label "Electrical Power Source"@en ; + skos:definition "A Power Source that is designed to generate, control, and transfer power in the form of electrical energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001050 +cco:ont00001050 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000716 ; + rdfs:label "Primary Cell Electric Battery"@en ; + skos:altLabel "Primary Cell Battery"@en ; + skos:definition "A Electric Battery that is designed for one-time use and not to be recharged."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Primary_cell&oldid=1047226932"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001051 +cco:ont00001051 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Projectile Launcher"@en ; + skos:definition "A Weapon that is designed to inflict damage or harm by means of launching a high-velocity projectile at a target."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Projectile&oldid=1062048285"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001054 +cco:ont00001054 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000499 ; + rdfs:label "Helical Antenna"@en ; + skos:definition "A Wire Antenna that consists of a conducting wire wound in the form of a helix that is typically mounted over a ground plane with a feed line connected between the bottom of the helix and the ground plane."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Helical_antenna&oldid=1062343033"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001060 +cco:ont00001060 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Fuel System"@en ; + skos:definition "A Material Artifact that is designed to pump, manage, and deliver some Portion of Fuel to the Propulsion System and Auxiliary Power Unit of some Vehicle."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001061 +cco:ont00001061 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000053 ; + rdfs:label "Motorcycle"@en ; + skos:altLabel "Motorbike"@en ; + skos:definition "A Ground Motor Vehicle that is designed to transport a very small number of passengers (usually 1 or 2) while traveling on two or three tired wheels."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Motorcycle&oldid=1063743553"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001064 +cco:ont00001064 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:comment "For information on types of barcodes, see: https://www.scandit.com/types-barcodes-choosing-right-barcode/"@en ; + rdfs:label "Barcode"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear one or more geometric shapes that concretize some Directive Information Content Entity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Barcode&oldid=1059844765"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001067 +cco:ont00001067 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Laser"@en ; + skos:definition "A Material Artifact that is designed to emit light coherently through a process of optical amplification based on the stimulated emission of electromagnetic radiation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Laser&oldid=1059215159"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001070 +cco:ont00001070 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Fluid Control Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes in which some Artifact is used to control the direction or flow of some fluid."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001071 +cco:ont00001071 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00000713 + ] ; + rdfs:label "Payload Capacity"@en ; + skos:definition "An Artifact Function that inheres in a Vehicle that is designed to transport Payload, and which is typically characterized by the maximum Weight, Mass, or Volume of Payload that the Vehicle can transport."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001077 +cco:ont00001077 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000848 ; + rdfs:label "Heavy Machine Gun"@en ; + skos:definition "A Mounted Gun that is designed to fire ammunition greater than .50 caliber or 12.7mm ammunition in quick succession from an ammunition belt, and which typically weighs more than 30lbs."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Heavy_machine_gun&oldid=1047303735"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001082 +cco:ont00001082 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001145 ; + rdfs:label "Patch Receiver"@en ; + skos:definition "A Radio Receiver that uses a Patch Antenna to intercept radio signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001083 +cco:ont00001083 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000056 ; + rdfs:label "Air-Breathing Combustion Engine"@en ; + skos:definition "A Reaction Engine that functions by drawing a continuous stream of air into and through the Engine where it is compressed, mixed with a Portion of Fuel, ignited, and then expelled as exhaust gas."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001084 +cco:ont00001084 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Portion of Processed Material"@en ; + skos:definition "A Material Artifact that is the output of an Act of Artifact Processing."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001085 +cco:ont00001085 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Reflection Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a reflection event in which the Artifact causes a change in a wavefront at an interface between the reflecting medium and the transmission medium such that the wavefront returns into the transmission medium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001086 +cco:ont00001086 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Road Junction"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable Ground Vehicles to exit one Road and enter another."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Junction_(road)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001087 +cco:ont00001087 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001306 ; + rdfs:label "Orientation Observation Artifact Function"@en ; + skos:altLabel "Attitude Observation Artifact Function"@en ; + skos:definition "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the Orientation of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001092 +cco:ont00001092 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Electrical Power Storage Artifact Function"@en ; + skos:altLabel "Capacitance"@en ; + skos:definition "An Electrical Artifact Function that is realized during events in which an Artifact is used to store electrical power to be released at a later time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001093 +cco:ont00001093 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000475 ; + rdfs:label "Coin"@en ; + skos:definition "A Portion of Cash that consists of a flat, portable, round pieces of metal designed to bear some specified Financial Value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001095 +cco:ont00001095 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000363 ; + rdfs:label "Cellular Telecommunication Network"@en ; + skos:altLabel "Cellular Network"@en , + "Mobile Telecommunication Network"@en ; + skos:definition "A Wireless Telecommunication Network where the last link between the network and the end user is wireless and is distributed over service areas called cells."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cellular_network&oldid=1061429562"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001096 +cco:ont00001096 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001104 ; + rdfs:label "Submachine Gun"@en ; + skos:definition "An Long Gun that is designed to be have automatic-fire functionality, fire pistol-caliber ammunition that is magazine-fed, and which is usually smaller than other automatic firearms."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Submachine_gun&oldid=1063939013"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001097 +cco:ont00001097 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001278 ; + rdfs:label "Common Stock"@en ; + skos:definition "Stock that entitles its holder to voting on corporate decisions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001099 +cco:ont00001099 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Bridge"@en ; + skos:definition "A Land Transportation Artifact that is designed to span physical obstacles without closing the way underneath to enable Persons or Ground Vehicles to pass over the obstacles."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bridge&oldid=1061858310" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001100 +cco:ont00001100 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Measurement Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to measure one or more features of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001103 +cco:ont00001103 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00001045 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000686 ; + rdfs:label "Artifact Model Name"@en ; + skos:definition "A Designative Information Content Entity that designates some Artifact Model."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001104 +cco:ont00001104 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000088 ; + rdfs:label "Long Gun"@en ; + skos:definition "A Firearm that is designed to have a longer barrel than a Hand Gun and to be fired while braced against the shoulder."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Long_gun&oldid=1063715506"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001105 +cco:ont00001105 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000716 ; + rdfs:label "Secondary Cell Electric Battery"@en ; + skos:altLabel "Rechargeable Battery"@en , + "Secondary Cell Battery"@en ; + skos:definition "An Electric Battery that is designed to be recharged."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rechargeable_battery&oldid=1064096406"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001117 +cco:ont00001117 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000252 ; + rdfs:label "Propelling Nozzle"@en ; + skos:altLabel "Jet Nozzle"@en ; + skos:definition "A Nozzle that is used to convert a propulsion Engine into a Jet Engine and functions by using its narrowest part, the throat, to increase Pressure within the Engine by constricting flow, usually until the flow chokes, then expanding the exhaust stream to, or near to, atmospheric pressure, while forming it into a high speed jet to propel the Vehicle."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propelling_nozzle&oldid=1061239812"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001119 +cco:ont00001119 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001298 ; + rdfs:label "Document Form"@en ; + skos:definition "A Document having Document Fields as parts in which to write or select prescribed content."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Form_(document)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001121 +cco:ont00001121 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000294 ; + rdfs:label "Scramjet Engine"@en ; + skos:altLabel "Scramjet"@en , + "Supersonic Combusting Ramjet"@en ; + skos:definition "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air at supersonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Scramjet&oldid=1062429697"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001123 +cco:ont00001123 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001153 ; + rdfs:label "Poison Artifact Function"@en ; + skos:definition "A Damaging Artifact Function that is realized in a process which causes illness in, or the death of, a living thing."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/poison" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001124 +cco:ont00001124 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Precision-Guided Missile"@en ; + skos:altLabel "Missile"@en ; + skos:definition "A Portion of Ammunition that is designed to be a self-propelled and precision-guided projectile that delivers some payload (explosive or other) over relatively long distances."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Missile&oldid=1062028589"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001129 +cco:ont00001129 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000113 ; + rdfs:label "Pressurization Control Artifact Function"@en ; + skos:definition "A Ventilation Control Artifact Function that is realized by processes in which some Artifact is used to control the partial pressure of air in some space."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001131 +cco:ont00001131 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000966 ; + rdfs:label "EAN-8 Barcode"@en ; + skos:definition "An EAN Barcode that consists of 8 numerical digits and is used to designate products at the point of sale."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001134 +cco:ont00001134 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Vehicle Frame"@en ; + skos:definition "A Material Artifact that is designed to be the main supporting structure of some Vehicle."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Vehicle_frame&oldid=1054003530"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001135 +cco:ont00001135 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000838 ; + rdfs:label "Portion of Liquid Fuel"@en ; + skos:definition "A Portion of Fuel that is stored in a liquid state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001138 +cco:ont00001138 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000499 ; + rdfs:label "Beverage Antenna"@en ; + skos:definition "A Wire Antenna that consists of a horizontal wire one-half to two wavelengths long that is suspended above the ground with one end attached to the receiver feedline and the other grounded and which is typically used in the low and medium frequency radio bands."@en ; + cco:ont00001754 "Adapted from: https://en.wikipedia.org/wiki/Beverage_antenna" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001139 +cco:ont00001139 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000713 ; + rdfs:label "Spacecraft"@en ; + skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by Spaceflight."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Spacecraft&oldid=1062102614"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001140 +cco:ont00001140 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Flywheel"@en ; + skos:definition "A Material Artifact that is designed to store rotational energy such that it has a significant moment of inertia which enables it to resist changes in rotational speed."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flywheel&oldid=1061360783"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001141 +cco:ont00001141 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:comment "The disposition will typically be a function of an artifact, which is often designed to be part of some Infrastructure system. But not always. In some cases an entity may be repurposed to be an element of some Infrastructure. In those cases it is a capability of that entity that supports the functioning of the system."@en ; + rdfs:label "Infrastructure Role"@en ; + skos:definition "A Role that inheres in the bearer of a Disposition and has been assigned to an Infrastructure System such that the realization of that Disposition is sometimes part of the functioning of the Infrastructure System."@en ; + cco:ont00001754 "https://archive.org/details/economicsprincip00osul/page/n489/mode/2up"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001145 +cco:ont00001145 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Radio Receiver"@en ; + skos:definition "A Radio Communication Instrument that is an electronic device that is designed to extract information from radio waves intercepted by a Radio Antenna by using electronic filters to separate the desired radio frequency signal from other signals, an electronic amplifier to increase the power of the signal, and demodulation to recover the desired information."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_receiver&oldid=1060111342"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001148 +cco:ont00001148 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000727 ; + rdfs:label "Electromagnetic Communication Artifact Function"@en ; + skos:definition "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of electromagnetic radiation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001150 +cco:ont00001150 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Portion of Ammunition"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by being projected toward its target at a significant Velocity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ammunition&oldid=1062875850"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001151 +cco:ont00001151 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000893 ; + rdfs:label "Portion of Paper"@en ; + skos:definition "An Information Medium Artifact that is designed to bear some Information Content Entity by means of pressing together moist fibres of cellulose pulp derived from wood, rags, or grasses, and drying them into flexible sheets."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Paper&oldid=1057624743"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001153 +cco:ont00001153 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Damaging Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which the structural integrity of an entity is impaired."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001155 +cco:ont00001155 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000601 ; + rdfs:label "Full Motion Video Imaging Artifact Function"@en ; + skos:definition "An Imaging Artifact Function that inheres in Artifacts that are designed to produce video of entities that is of high enough quality to make the represented motion appear continuous to human viewers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001156 +cco:ont00001156 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Information Line"@en ; + skos:definition "An Information Bearing Artifact that consists of a single line or row of some larger Information Bearing Artifact of which it is a part."@en ; + skos:example "a line in a computer file that bears a portion of code for some computer program" , + "a line of data in a database" , + "a line of text in a book" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001157 +cco:ont00001157 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000288 ; + rdfs:label "Hydraulic Power Source"@en ; + skos:definition "A Power Source that is designed to generate, control, or transmit power by means of pressurized liquid."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001159 +cco:ont00001159 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000537 ; + rdfs:label "Bond"@en ; + skos:definition "A Financial Instrument that is designed to secure an Agent's debt for the holders of that debt."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Bond_(finance)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001160 +cco:ont00001160 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Solvent Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in the dissolving of other substances (namely, solutes) without change in the former's chemical structure."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Solvent&oldid=1062572314"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001161 +cco:ont00001161 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000719 ; + rdfs:label "Counterfeit Legal Instrument"@en ; + skos:definition "A Counterfeit Instrument that is designed to be a fake replica of some genuine Legal Instrument."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001168 +cco:ont00001168 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Reaction Mass"@en ; + skos:altLabel "Working Mass"@en ; + skos:definition "A Material Entity against which a Propulsion System operates in order to produce Acceleration."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Working_mass&oldid=1057126114"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001169 +cco:ont00001169 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Communication Relay Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information from one Artifact to another for the purpose of communiction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001172 +cco:ont00001172 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000593 ; + rdfs:label "Portion of Gelatinous Propellant"@en ; + skos:definition "A Portion of Propellant that is stored in a gelatinous state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001173 +cco:ont00001173 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Rocket Launcher"@en ; + skos:definition "A Projectile Launcher that is designed to launch one or more Unguided Rockets."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket_launcher&oldid=1049900727"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001174 +cco:ont00001174 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Electromagnetic Shielding Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which an electromagnetic field is blocked by barriers made of conductive or magnetic materials."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_shielding&oldid=1063432544"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001178 +cco:ont00001178 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Railway Crossing"@en ; + skos:altLabel "Level Crossing"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable Persons or Ground Vehicles to cross a Railway when traveling along a road or path that is perpendicular to and at the same elevation as the Railway at the point where they overlap."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001179 +cco:ont00001179 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000893 ; + rdfs:label "Digital Storage Device"@en ; + skos:definition "An Information Medium Artifact that is designed to bear some Information Content Entity by means of recording that information in digital (binary) format."@en ; + skos:example "A computer's Hard Disk Drive" , + "A portable USB Drive" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Data_storage&oldid=1060116427"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001181 +cco:ont00001181 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000287 ; + rdfs:label "Triple Inertial Navigation System"@en ; + skos:altLabel "Triple INS"@en ; + skos:definition "An Inertial Navigation System that is designed to use three redundant computers to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references, in such a way that eliminates the need for a navigator."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001185 +cco:ont00001185 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000713 ; + rdfs:label "Rocket"@en ; + skos:definition "A Vehicle that is designed to travel through air or space and which obtains Thrust from a Rocket Engine."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket&oldid=1063307477"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001187 +cco:ont00001187 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Navigation System"@en ; + skos:definition "A Material Artifact that is designed to enable an Agent or Artifact to determine the position or direction of some object, usually for the purpose of monitoring or controlling the movement of some Vehicle from one place to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Navigation&oldid=1064122463"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001188 +cco:ont00001188 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Denture"@en ; + skos:definition "A Prosthesis that is designed to replace missing teeth."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Dentures&oldid=1056527226"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001192 +cco:ont00001192 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000092 ; + rdfs:label "Radio Antenna"@en ; + skos:definition "A Bidirectional Transducer that is designed to convert electric power into radio waves, and radio waves into electric power."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Antenna_(radio)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001198 +cco:ont00001198 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000796 ; + rdfs:comment "In American-English, the term 'Railcar' is often used in a broader sense that is interchangeable with 'Railroad Car'."@en ; + rdfs:label "Railcar"@en ; + skos:definition "A Rail Transport Vehicle that consists of a single self-propelled Vehicle that is not a Train, is designed to transport passengers, and which may also be designed to connect to other Railcars to form a Train."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Railcar&oldid=1063519348"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001200 +cco:ont00001200 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Structural Support Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact providing physical support to another object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001201 +cco:ont00001201 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Trail"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable transport through rough country, such as a forest or moor."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Trail&oldid=1056047142"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001207 +cco:ont00001207 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000136 ; + rdfs:label "Optical Lens"@en ; + skos:altLabel "Lens"@en ; + skos:definition "An Optical Instrument that is designed to focus or disperse a beam of light entering the lens by means of refraction."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Lens_(optics)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001209 +cco:ont00001209 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000326 ; + rdfs:label "UPC-E Barcode"@en ; + skos:definition "A UPC Barcode that consists of 6 numerical digits."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001210 +cco:ont00001210 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Retail Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of selling goods or merchandise in small or individual lots for direct consumption by persons or organizations."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001211 +cco:ont00001211 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Lifting Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact is used to lift some object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001216 +cco:ont00001216 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000136 ; + rdfs:label "Periscope"@en ; + skos:definition "An Optical Instrument that is designed to enable observation of an object that is located over, around, or through another object, obstacle, or condition that prevents direct line-of-sight observation from the observer's current position."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Periscope&oldid=1030400442"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001217 +cco:ont00001217 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000848 ; + rdfs:label "Medium Machine Gun"@en ; + skos:definition "A Mounted Gun that is designed to fire full-power rifle Cartridges (less than .50 caliber or 12.7mm) in quick succession from an ammunition belt, and which typically weighs 22-30 lbs."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Medium_machine_gun&oldid=1063571269"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001218 +cco:ont00001218 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Signal Processing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in the process of transferring or processing information contained in signals."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Signal_processing&oldid=1062720685"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001221 +cco:ont00001221 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000210 ; + rdfs:label "Physically Powered Engine"@en ; + skos:altLabel "Physical Engine"@en ; + skos:definition "An Engine that is designed to convert potential or kinetic energy into mechanical energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001222 +cco:ont00001222 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Solar Panel System"@en ; + skos:altLabel "Photovoltaic System"@en , + "Solar Array"@en ; + skos:definition "An Electrical Power Source that consists in part of one or more Solar Panels, a power inverter, electrical wiring between the components, a mounting and support structure, and may also include a battery and/or a solar tracking system and is the bearer of functions realized in processes of deriving, transferring, and storing electrical energy derived from light energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Photovoltaic_system&oldid=1063366598"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001223 +cco:ont00001223 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001145 ; + rdfs:label "Dish Receiver"@en ; + skos:definition "A Radio Receiver that uses a Parabolic (or Dish) Antenna to intercept radio signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001228 +cco:ont00001228 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Journal Article"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear a specific brief composition on a specific topic as part of a Journal Issue."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Academic_journal&oldid=1059723283"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001229 +cco:ont00001229 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001050 ; + rdfs:label "Alkaline Electric Battery"@en ; + skos:definition "A Primary Cell Electric Battery that has a Zinc anode and Manganese (IV) oxide cathode."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Alkaline_battery&oldid=1055652562"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001230 +cco:ont00001230 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000499 ; + rdfs:label "Rhombic Antenna"@en ; + skos:definition "A Wire Antenna that consists of one to three parallel wires suspended above the ground by poles or towers at each vertex in a rhombic shape with each of the four sides being the same length (typically at least one wavelength or longer)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rhombic_antenna&oldid=1057114456"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001233 +cco:ont00001233 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001153 ; + rdfs:label "Crushing Artifact Function"@en ; + skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of significant pressure."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/crushing" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001234 +cco:ont00001234 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Neutralization Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which an acid and a base react quantitatively with each other."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Neutralization_(chemistry)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001240 +cco:ont00001240 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001148 ; + rdfs:label "Radio Communication Artifact Function"@en ; + skos:definition "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of radio waves."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001241 +cco:ont00001241 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Sensor Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes wherein its bearer is used to produce an output signal which reliably corresponds to changes in the artifact's environment."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001242 +cco:ont00001242 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000736 ; + rdfs:label "Actuator"@en ; + skos:definition "A Transducer that is designed to convert some control signal into mechanical motion."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Actuator&oldid=1064000375"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001243 +cco:ont00001243 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000253 ; + rdfs:label "Document Field"@en ; + skos:definition "An Information Bearing Entity that is a part of some document into which bearers of prescribed information can be written or selected."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001245 +cco:ont00001245 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000241 ; + rdfs:label "PDF417 Code"@en ; + skos:definition "A Two-Dimensional Barcode that is used in applications that require the storage of huge amounts of data."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001247 +cco:ont00001247 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000918 ; + rdfs:label "Telecommunication Endpoint"@en ; + skos:definition "A Telecommunication Network Node that connects a Telecommunication Terminal to a Telecommunication Network."@en ; + skos:scopeNote "A Telecommunication Terminal is an end user device such as a Telephone, fax machine, or Computer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Communication_endpoint&oldid=1020569501"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001248 +cco:ont00001248 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Artificial Eye"@en ; + skos:definition "A Prosthesis that is designed to replace a missing eye."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Artificial_eye&oldid=1046672400"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001249 +cco:ont00001249 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000453 ; + rdfs:label "Cabin Pressurization Control System"@en ; + skos:definition "An Environment Control System that is designed to control the process in which conditioned air is pumped into the Cabin of some Aircraft or Spacecraft in order to create a safe and comfortable environment for passengers and crew flying at high altitudes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cabin_pressurization&oldid=1062243955"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001250 +cco:ont00001250 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000236 ; + rdfs:label "Interior Lighting System"@en ; + skos:definition "A Lighting System that is designed to emit light within the interior of some area."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001252 +cco:ont00001252 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000448 ; + rdfs:label "Propulsion Artifact Function"@en ; + skos:definition "A Motion Artifact Function that is realized in a process in which the bearer of the function creates force leading to an entity's movement."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001253 +cco:ont00001253 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Fuel Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes in which a Portion of Fuel is reacted with other substances in order to release chemical or nuclear energy to be used for heat or for work."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fuel&oldid=1063590518"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001254 +cco:ont00001254 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000156 ; + rdfs:label "Revolver"@en ; + skos:definition "A Hand Gun having a number of firing chambers in a revolving cylinder, where each chamber in the cylinder can be loaded with a single Cartridge."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Revolver&oldid=1060461644"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001255 +cco:ont00001255 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000828 ; + rdfs:label "Insecticide Artifact Function"@en ; + skos:definition "A Pesticide Artifact Function that is realized in a process that causes harm to, or the death of, an insect."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Insecticide&oldid=1063322558"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001260 +cco:ont00001260 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "Code 39 Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of 39 characters that are numbers 0-9, capital letters A-Z, or the symbols -.$/+% and space and is used primarily in automotive and defense industries."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001264 +cco:ont00001264 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "Code 128 Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of up to 128 ASCII characters and is used primarily in supply chains."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001265 +cco:ont00001265 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001036 ; + rdfs:label "Public Address System"@en ; + skos:altLabel "PA System"@en ; + skos:definition "A Communication System that is designed to allow a Person to speak to a large audience."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Public_address_system&oldid=1059177344"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001268 +cco:ont00001268 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000966 ; + rdfs:label "ISBN Barcode"@en ; + skos:definition "An EAN Barcode that is used to designate books."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001270 +cco:ont00001270 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000268 ; + rdfs:label "Howitzer"@en ; + skos:definition "A Cannon that is designed to have a relatively short barrel and to use relatively small propellant charges to propel projectiles in relatively high trajectories with a steep angle of descent."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Howitzer&oldid=1059576383"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001271 +cco:ont00001271 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001169 ; + rdfs:label "Wired Communication Relay Artifact Function"@en ; + skos:definition "A Communication Relay Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information by means of wires from one Artifact to another for the purpose of communiction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001273 +cco:ont00001273 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001241 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00000569 + ] ; + rdfs:label "Sensor Modality Function"@en ; + skos:definition "A Sensor Artifact Function that inheres in some Sensor in virtue of the type of energy the Sensor is capable of converting into an output signal."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001275 +cco:ont00001275 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001353 ; + rdfs:label "Nominal Speed Artifact Function"@en ; + skos:definition "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains a speed that does not exceed some specified tolerance of that Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001278 +cco:ont00001278 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000537 ; + rdfs:label "Stock"@en ; + skos:definition "A Financial Instrument that entitles holders to an ownership interest (equity) in the specified Incorporated Organization."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Stock&oldid=1064040249"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001281 +cco:ont00001281 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Emulsifier Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which two or more liquids that are normally immiscible are mixed."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Emulsion&oldid=1056901580"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001282 +cco:ont00001282 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000598 ; + rdfs:label "Hydraulic Valve"@en ; + skos:definition "A Valve that is designed to regulate, direct, or control the flow of a liquid by opening, closing, or partially obstructing various passageways."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001288 +cco:ont00001288 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Round Shot"@en ; + skos:definition "A Portion of Ammunition that is designed to be a solid projectile without explosive charge and to be fired from a cannon."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Round_shot&oldid=1062790260"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001292 +cco:ont00001292 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000053 ; + rdfs:label "Bus"@en ; + skos:definition "A Ground Motor Vehicle that is designed to transport a large number of people and to travel on six or more tired wheels."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bus&oldid=1055341487"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001298 +cco:ont00001298 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Document"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity in a series of paragraphs of text or diagrams in the form of physical pieces of paper or an electronic word processor file."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Document&oldid=1057829688"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001299 +cco:ont00001299 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000344 ; + rdfs:label "Wetting Agent Artifact Function"@en ; + skos:definition "A Surfactant Artifact Function that is realized in a process that reduces the water repellent tendency of a substance thereby allowing it to become wet."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wetting&oldid=1062806793"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001300 +cco:ont00001300 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001192 ; + rdfs:label "Patch Antenna"@en ; + skos:altLabel "Microstrip Patch Antenna"@en , + "Rectangular Microstrip Antenna"@en ; + skos:definition "A Radio Antenna that consists of a flat rectangular sheet (or patch) of metal mounted over a larger sheet of metal called a ground plane which is typically contained inside a plastic radome for protection and is small enough that it can be mounted on a flat surface."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Patch_antenna&oldid=1016658507"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 +cco:ont00001301 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Service Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process of providing intangible goods to consumers."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Goods_and_services&oldid=1063137197"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001303 +cco:ont00001303 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001306 ; + rdfs:label "Position Observation Artifact Function"@en ; + skos:definition "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the position of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001304 +cco:ont00001304 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000575 ; + rdfs:label "Dimension Specification"@en ; + skos:definition "An Quality Specification that prescribes some Size Quality."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001306 +cco:ont00001306 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Observation Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to collect information about a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001310 +cco:ont00001310 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Covering Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which an entity is covered."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/covering" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001313 +cco:ont00001313 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Article of Clothing"@en ; + skos:definition "A Material Artifact that is designed to cover some portion of a body."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Clothing&oldid=1063505718"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001316 +cco:ont00001316 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001042 ; + rdfs:label "Gimbal"@en ; + skos:definition "An Equipment Mount that consists of a pivoted support that allows an Artifact to Rotate about one or more Axes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gimbal&oldid=1053306885"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001319 +cco:ont00001319 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000427 ; + rdfs:comment "Tank firepower is normally provided by a large-caliber main gun mounted in a rotating turret, which is supported by secondary machine guns. A tank's heavy armour and all-terrain mobility provide protection for both the tank and its crew, allowing it to perform all primary tasks of the armoured troops on the battlefield."@en ; + rdfs:label "Tank"@en ; + skos:definition "An Armored Fighting Vehicle that is designed to carry heavy firepower, have a powerful Engine, and travel on one or more continuous tracks such that it is suitable for front-line combat and can provide operational maneuverability as well as tactical offensive and defensive capabilities."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tank&oldid=1060527612"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001320 +cco:ont00001320 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Radio Transceiver"@en ; + skos:definition "A Radio Communication Instrument that is an electronic device composed of both a Radio Transmitter and a Radio Receiver that share common circuitry or a single housing."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transceiver&oldid=1058453736"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001321 +cco:ont00001321 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001105 ; + rdfs:label "Lead Acid Electric Battery"@en ; + skos:definition "A Secondary Cell Electric Battery that has a lead anode and lead oxide cathode."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lead%E2%80%93acid_battery&oldid=1061641405"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001323 +cco:ont00001323 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Bearing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes in which the Artifact constrains relative motion to only the desired motion, and reduces friction between moving parts."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001326 +cco:ont00001326 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000254 ; + rdfs:label "Land Transportation Artifact"@en ; + skos:definition "A Transportation Artifact that is fixed in place and designed to bear a Function, the realization of which is sometimes part of a process moving Vehicles and Agents from one location to another via land."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001329 +cco:ont00001329 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Education Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of transmiting accumulated knowledge skills and values from one generation to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001341 +cco:ont00001341 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001342 +cco:ont00001342 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000427 ; + rdfs:label "Infantry Fighting Vehicle"@en ; + skos:definition "An Armored Fighting Vehicle that is designed to carry infantry into battle and to provide fire support for them."@en ; + skos:scopeNote "Infantry Fighting Vehicles (IFVs) are differentiated from Armored Personnel Carriers (APCs) because they are designed to give direct fire support to the dismounted infantry and so usually have significantly enhanced armament. IFVs also often have improved armour and firing ports (allowing the infantry to fire personal weapons while mounted)."@en ; + cco:ont00001753 "IFV" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Infantry_fighting_vehicle&oldid=1062470745"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001343 +cco:ont00001343 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Circuit Breaker"@en ; + skos:definition "A Material Artifact that is designed to protect an electrical circuit from damage caused by excess current from an overload or short circuit."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Circuit_breaker&oldid=1060854893"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001346 +cco:ont00001346 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Legal Instrument"@en ; + skos:definition "A Material Artifact that is designed as a formally executed written document that can be formally attributed to its author, records and formally expresses a legally enforceable act, process, or contractual duty, obligation, or right, and therefore evidences that act, process, or agreement."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Legal_instrument&oldid=1054387344"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001350 +cco:ont00001350 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Thermal Control Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact increasing, decreasing, or maintaining the temperature of itself, a part of itself, or another object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001353 +cco:ont00001353 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000448 ; + rdfs:label "Speed Artifact Function"@en ; + skos:definition "A Motion Artifact Function that is realized in some process in which its bearer has some speed."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001355 +cco:ont00001355 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000928 ; + rdfs:label "Freight Train Car"@en ; + skos:altLabel "Freight Car"@en ; + skos:definition "A Train Car that is designed to transport cargo."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Goods_wagon&oldid=1062686785"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001361 +cco:ont00001361 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Healing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which health is restored to an unbalanced, diseased, or damaged organism."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Healing&oldid=1053920678"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001365 +cco:ont00001365 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001353 ; + rdfs:label "Maximum Speed Artifact Function"@en ; + skos:definition "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains the highest speed at which that Artifact is designed to operate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001366 +cco:ont00001366 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Powering Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact is used to supply power to some Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001368 +cco:ont00001368 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001306 ; + rdfs:label "Motion Observation Artifact Function"@en ; + skos:definition "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the Motion of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001370 +cco:ont00001370 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Machine Bearing"@en ; + skos:definition "A Material Artifact that is designed to constrain relative motion to only desired motion and reduces friction between moving parts."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001371 +cco:ont00001371 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Electromagnetic Induction Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact that is used to produce electromotive force across an electrical conductor due to its dynamic interaction with a magnetic field."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_induction&oldid=1061836930"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001372 +cco:ont00001372 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000437 ; + rdfs:label "Fertilizer Artifact Function"@en ; + skos:definition "An Enhancing Artifact Function that is realized in processes of supplying soilds or plant tissues with one or more plant nutrients essential to growth."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fertilizer&oldid=1062923261"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001373 +cco:ont00001373 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Bow"@en ; + skos:definition "A Projectile Launcher that is designed to launch Arrows."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bow_and_arrow&oldid=1062193194"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001378 +cco:ont00001378 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Hospitality Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of accommodation food and beverage meeting and events gaming entertainment and recreation tourism services and visitor information."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hospitality&oldid=1049599161"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001381 +cco:ont00001381 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Medical Artifact"@en ; + skos:definition "A Material Artifact that is designed for diagnosing, treating, or preventing disease, disability, or death."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001382 +cco:ont00001382 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000475 ; + rdfs:label "Electronic Cash"@en ; + skos:definition "A Portion of Cash that consists of Bytes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001999 +cco:ont00001999 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:comment """Although its basic function remains the same, a Filter can be used in 2 different ways: +(1) to allow only the desired entities to pass through (e.g. removing dirt from engine oil); or +(2) to allow everything except the desired entities to pass through (e.g. panning for gold)."""@en ; + rdfs:label "Filter Function"@en ; + skos:definition "An Artifact Function that is realized in a process where entities of a specific type or which have specified properties enter it or pass through it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/CommonCoreOntologiesMerged.ttl b/src/cco-iris/CommonCoreOntologiesMerged.ttl new file mode 100644 index 00000000..e60b0aa9 --- /dev/null +++ b/src/cco-iris/CommonCoreOntologiesMerged.ttl @@ -0,0 +1,19756 @@ +@prefix : . +@prefix owl: . +@prefix obo: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "A stand-alone file containing the eleven mid-level Common Core Ontologies plus BFO. Provided for use-cases where one file representing a specific release of CCO and its imports is desirable."@en ; + rdfs:label "Common Core Ontologies Merged"@en ; + owl:versionInfo "Depends on http://purl.obolibrary.org/obo/bfo/2020/bfo-core.ttl, obtained 11/03/2024."@en , + "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/elements/1.1/contributor + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/elements/1.1/identifier + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/elements/1.1/license + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/bibliographicCitation +dcterms:bibliographicCitation rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/contributor +dcterms:contributor rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/created +dcterms:created rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator +dcterms:creator rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/description +dcterms:description rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/license +dcterms:license rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/title +dcterms:title rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#altLabel +skos:altLabel rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition +skos:definition rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote +skos:editorialNote rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example +skos:example rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel +skos:prefLabel rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote +skos:scopeNote rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001735 +cco:ont00001735 rdf:type owl:AnnotationProperty ; + rdfs:label "query text"@en ; + skos:definition "The text of a query that is associated with a class"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001737 +cco:ont00001737 rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal definition"@en ; + skos:definition "A Definition that is taken directly from a Doctrinal Source."@en ; + skos:scopeNote "There is only one definition for any given term in an ontology; however, a Doctrinal Definition may be provided in addition to the asserted Definition if the preservation of this information is important. When both a Definition and a Doctrinal Definition are provided for a term, the Definition takes precedence."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf skos:definition . + + +### https://www.commoncoreontologies.org/ont00001738 +cco:ont00001738 rdf:type owl:AnnotationProperty ; + rdfs:label "SI unit label"@en ; + skos:definition "An Alternative Label that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI ; + rdfs:subPropertyOf skos:altLabel . + + +### https://www.commoncoreontologies.org/ont00001739 +cco:ont00001739 rdf:type owl:AnnotationProperty ; + rdfs:label "ordinal measurement annotation"@en ; + skos:definition "An ordinal measurement value of an instance of a quality, realizable or process profile"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001746 . + + +### https://www.commoncoreontologies.org/ont00001740 +cco:ont00001740 rdf:type owl:AnnotationProperty ; + rdfs:label "SI unit symbol"@en ; + skos:definition "An Acronym that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001753 . + + +### https://www.commoncoreontologies.org/ont00001741 +cco:ont00001741 rdf:type owl:AnnotationProperty ; + rdfs:label "nominal measurement annotation"@en ; + skos:definition "A nominal measurement value of an instance of a quality, realizable or process profile"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001746 . + + +### https://www.commoncoreontologies.org/ont00001742 +cco:ont00001742 rdf:type owl:AnnotationProperty ; + rdfs:label "term creator"@en ; + skos:definition "The name of the Term Editor who added the term to the ontology."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001762 . + + +### https://www.commoncoreontologies.org/ont00001743 +cco:ont00001743 rdf:type owl:AnnotationProperty ; + rdfs:label "content license"@en ; + skos:definition "The name and description of the license under which the ideas, concepts and other informational content expressed in the .owl file are released."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001744 +cco:ont00001744 rdf:type owl:AnnotationProperty ; + rdfs:label "copyright"@en ; + skos:definition "An assertion of copyright"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001745 +cco:ont00001745 rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal source"@en ; + skos:definition "A Definition Source that consists of a formalized doctrine in which the term is authoritatively defined."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001754 . + + +### https://www.commoncoreontologies.org/ont00001746 +cco:ont00001746 rdf:type owl:AnnotationProperty ; + rdfs:label "measurement annotation"@en ; + skos:definition "A measurement value of an instance of a quality, realizable or process profile"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001747 +cco:ont00001747 rdf:type owl:AnnotationProperty ; + rdfs:label "ratio measurement annotation"@en ; + skos:definition "A ratio measurement value of an instance of a quality, realizable or process profile"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001746 . + + +### https://www.commoncoreontologies.org/ont00001748 +cco:ont00001748 rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal label"@en ; + skos:definition "An Alternative Label that consists of the preferred term or phrase used by a Doctrinal Source to denote the entity."@en ; + skos:scopeNote "When the cco:doctrinal_label is identical to the rdfs:label, the cco:doctrinal_label annotation is superfluous. As a subclass of 'alternative label', 'doctrinal label' is intended to be used to provide additional information about the entity when its preferred doctrinal designator is ambiguous or otherwise inappropriate for use as the rdfs:label."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf skos:altLabel . + + +### https://www.commoncoreontologies.org/ont00001749 +cco:ont00001749 rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal acronym"@en ; + skos:definition "An Acronym that is used by a Doctrinal Source to denote the entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001753 . + + +### https://www.commoncoreontologies.org/ont00001752 +cco:ont00001752 rdf:type owl:AnnotationProperty ; + rdfs:label "has token unit"@en ; + skos:definition "A relation between an information content entity and a widely used measurement unit of the token used to express it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001753 +cco:ont00001753 rdf:type owl:AnnotationProperty ; + rdfs:label "acronym"@en ; + skos:definition "An Alternative Label that consists of a shortened or abbreviated form of the rdfs:label and is used to denote the entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf skos:altLabel . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty ; + rdfs:label "definition source"@en ; + skos:definition "A citation of where all or some of the information used to create the term's Definition was acquired from."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001756 +cco:ont00001756 rdf:type owl:AnnotationProperty ; + rdfs:label "interval measurement annotation"@en ; + skos:definition "A interval measurement value of an instance of a quality, realizable or process profile "@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001746 . + + +### https://www.commoncoreontologies.org/ont00001757 +cco:ont00001757 rdf:type owl:AnnotationProperty ; + rdfs:label "designator annotation"@en ; + skos:definition "A name or other identifier that is used to designate an individual."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001758 +cco:ont00001758 rdf:type owl:AnnotationProperty ; + rdfs:label "http query string"@en ; + skos:definition "The text of an HTTP request that can be sent to a SPARQL Protocol service."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001759 +cco:ont00001759 rdf:type owl:AnnotationProperty ; + rdfs:label "code license"@en ; + skos:definition "The name and description of the license under which the .owl file is released."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty ; + rdfs:label "is curated in ontology"@en ; + skos:definition "An annotation property that links a class, property, or named individual to the URI of the ontology where it is located."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001761 +cco:ont00001761 rdf:type owl:AnnotationProperty ; + rdfs:label "is tokenized by"@en ; + skos:definition "A relation between an information content entity and a widely used token used to express it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001762 +cco:ont00001762 rdf:type owl:AnnotationProperty ; + rdfs:label "term editor"@en ; + skos:definition "The name of a person who contributed to the development or enhancement of the term."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000054 +obo:BFO_0000054 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000055 ; + rdfs:domain obo:BFO_0000017 ; + rdfs:range obo:BFO_0000015 ; + "206-BFO" ; + rdfs:label "has realization"@en ; + skos:altLabel "realized in"@en ; + skos:definition "b has realization c =Def c realizes b"@en ; + skos:example "As for realizes"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000055 +obo:BFO_0000055 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000017 ; + "059-BFO" ; + rdfs:label "realizes"@en ; + skos:definition "(Elucidation) realizes is a relation between a process b and realizable entity c such that c inheres in some d & for all t, if b has participant d then c exists & the type instantiated by b is correlated with the type instantiated by c"@en ; + skos:example "A balding process realizes a disposition to go bald; a studying process realizes a student role; a process of pumping blood realizes the pumping function of a heart"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000056 +obo:BFO_0000056 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000057 ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000020 + obo:BFO_0000031 + [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:range obo:BFO_0000015 ; + "250-BFO" ; + rdfs:label "participates in"@en ; + skos:definition "(Elucidation) participates in holds between some b that is either a specifically dependent continuant or generically dependent continuant or independent continuant that is not a spatial region & some process p such that b participates in p some way"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000057 +obo:BFO_0000057 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000020 + obo:BFO_0000031 + [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + "248-BFO" ; + rdfs:label "has participant"@en ; + skos:definition "p has participant c =Def c participates in p"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000058 +obo:BFO_0000058 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000059 ; + rdfs:domain obo:BFO_0000031 ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000020 + ) + ] ; + "258-BFO" ; + rdfs:label "is concretized by"@en ; + skos:definition "c is concretized by b =Def b concretizes c"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000059 +obo:BFO_0000059 rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000020 + ) + ] ; + rdfs:range obo:BFO_0000031 ; + "256-BFO" ; + rdfs:label "concretizes"@en ; + skos:definition "b concretizes c =Def b is a process or a specifically dependent continuant & c is a generically dependent continuant & there is some time t such that c is the pattern or content which b shares at t with actual or potential copies"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000062 +obo:BFO_0000062 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000063 ; + rdf:type owl:TransitiveProperty ; + rdfs:domain obo:BFO_0000003 ; + rdfs:range obo:BFO_0000003 ; + "213-BFO" ; + rdfs:label "preceded by"@en ; + skos:definition "b preceded by c =Def b precedes c"@en ; + skos:example "The temporal region occupied by the second half of the match is preceded by the temporal region occupied by the first half of the match"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000063 +obo:BFO_0000063 rdf:type owl:ObjectProperty , + owl:TransitiveProperty ; + rdfs:domain obo:BFO_0000003 ; + rdfs:range obo:BFO_0000003 ; + "270-BFO" ; + rdfs:label "precedes"@en ; + skos:definition "(Elucidation) precedes is a relation between occurrents o, o' such that if t is the temporal extent of o & t' is the temporal extent of o' then either the last instant of o is before the first instant of o' or the last instant of o is the first instant of o' & neither o nor o' are temporal instants"@en ; + skos:example "The temporal region occupied by Mary's birth precedes the temporal region occupied by Mary's death."@en ; + skos:scopeNote "Each temporal region is its own temporal extent. The temporal extent of a spatiotemporal region is the temporal region it temporally projects onto. The temporal extent of a process or process boundary that occupies temporal region t is t." , + "Precedes defines a strict partial order on occurrents." . + + +### http://purl.obolibrary.org/obo/BFO_0000066 +obo:BFO_0000066 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000183 ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000035 + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000029 + obo:BFO_0000040 + ) + ] ; + "143-BFO" ; + rdfs:label "occurs in"@en ; + skos:definition "b occurs in c =Def b is a process or a process boundary & c is a material entity or site & there exists a spatiotemporal region r & b occupies spatiotemporal region r & for all time t, if b exists at t then c exists at t & there exist spatial regions s and s' where b spatially projects onto s at t & c occupies spatial region s' at t & s is a continuant part of s' at t"@en ; + skos:example "A process of digestion occurs in the interior of an organism; a process of loading artillery rounds into a tank cannon occurs in the interior of the tank"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000084 +obo:BFO_0000084 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000101 ; + rdfs:domain obo:BFO_0000031 ; + rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + "252-BFO" ; + rdfs:label "generically depends on"@en ; + skos:altLabel "g-depends on"@en ; + skos:definition "b generically depends on c =Def b is a generically dependent continuant & c is an independent continuant that is not a spatial region & at some time t there inheres in c a specifically dependent continuant which concretizes b at t"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000101 +obo:BFO_0000101 rdf:type owl:ObjectProperty ; + rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range obo:BFO_0000031 ; + "254-BFO" ; + rdfs:label "is carrier of"@en ; + skos:definition "b is carrier of c =Def there is some time t such that c generically depends on b at t"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000108 +obo:BFO_0000108 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000001 ; + rdfs:range obo:BFO_0000008 ; + "118-BFO" ; + rdfs:label "exists at"@en ; + skos:definition "(Elucidation) exists at is a relation between a particular and some temporal region at which the particular exists"@en ; + skos:example "First World War exists at 1914-1916; Mexico exists at January 1, 2000"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000115 +obo:BFO_0000115 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000178 ; + owl:inverseOf obo:BFO_0000129 ; + rdfs:domain obo:BFO_0000040 ; + rdfs:range obo:BFO_0000040 ; + "230-BFO" ; + rdfs:label "has member part"@en ; + skos:definition "b has member part c =Def c member part of b"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000117 +obo:BFO_0000117 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000132 ; + rdf:type owl:TransitiveProperty ; + rdfs:domain obo:BFO_0000003 ; + rdfs:range obo:BFO_0000003 ; + "202-BFO" ; + rdfs:label "has occurrent part"@en ; + skos:definition "b has occurrent part c =Def c occurrent part of b"@en ; + skos:example "Mary's life has occurrent part Mary's 5th birthday"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000121 +obo:BFO_0000121 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000117 ; + owl:inverseOf obo:BFO_0000139 ; + rdf:type owl:TransitiveProperty ; + rdfs:domain obo:BFO_0000003 ; + rdfs:range obo:BFO_0000003 ; + "211-BFO" ; + rdfs:label "has temporal part"@en ; + skos:definition "b has temporal part c =Def c temporal part of b"@en ; + skos:example "Your life has temporal part the first year of your life"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000124 +obo:BFO_0000124 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000171 ; + rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + "236-BFO" ; + rdfs:label "location of"@en ; + skos:definition "b location of c =Def c located in b"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000127 +obo:BFO_0000127 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000218 ; + rdfs:domain obo:BFO_0000040 ; + rdfs:range obo:BFO_0000016 ; + "244-BFO" ; + rdfs:label "material basis of"@en ; + skos:definition "b material basis of c =Def c has material basis b"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000129 +obo:BFO_0000129 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000176 ; + rdfs:domain obo:BFO_0000040 ; + rdfs:range obo:BFO_0000040 ; + "228-BFO" ; + rdfs:label "member part of"@en ; + skos:definition "b member part of c =Def b is an object & c is a material entity & there is some time t such that b continuant part of c at t & there is a mutually exhaustive and pairwise disjoint partition of c into objects x1, ..., xn (for some n ≠ 1) with b = xi (for some 1 <= i <= n)"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000132 +obo:BFO_0000132 rdf:type owl:ObjectProperty , + owl:TransitiveProperty ; + rdfs:domain obo:BFO_0000003 ; + rdfs:range obo:BFO_0000003 ; + "003-BFO" ; + rdfs:label "occurrent part of"@en ; + skos:definition "(Elucidation) occurrent part of is a relation between occurrents b and c when b is part of c"@en ; + skos:example "Mary's 5th birthday is an occurrent part of Mary's life; the first set of the tennis match is an occurrent part of the tennis match"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000139 +obo:BFO_0000139 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000132 ; + rdf:type owl:TransitiveProperty ; + rdfs:domain obo:BFO_0000003 ; + rdfs:range obo:BFO_0000003 ; + "078-BFO" ; + rdfs:label "temporal part of"@en ; + skos:definition "b temporal part of c =Def b occurrent part of c & (b and c are temporal regions) or (b and c are spatiotemporal regions & b temporally projects onto an occurrent part of the temporal region that c temporally projects onto) or (b and c are processes or process boundaries & b occupies a temporal region that is an occurrent part of the temporal region that c occupies)"@en ; + skos:example "Your heart beating from 4pm to 5pm today is a temporal part of the process of your heart beating; the 4th year of your life is a temporal part of your life, as is the process boundary which separates the 3rd and 4th years of your life; the first quarter of a game of football is a temporal part of the whole game"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000153 +obo:BFO_0000153 rdf:type owl:ObjectProperty , + owl:FunctionalProperty ; + rdfs:domain obo:BFO_0000011 ; + rdfs:range obo:BFO_0000008 ; + "080-BFO" ; + rdfs:label "temporally projects onto"@en ; + skos:definition "(Elucidation) temporally projects onto is a relation between a spatiotemporal region s and some temporal region which is the temporal extent of s"@en ; + skos:example "The world line of a particle temporally projects onto the temporal region extending from the beginning to the end of the existence of the particle"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000171 +obo:BFO_0000171 rdf:type owl:ObjectProperty ; + rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + "234-BFO" ; + rdfs:label "located in"@en ; + skos:definition "b located in c =Def b is an independent continuant & c is an independent & neither is a spatial region & there is some time t such that the spatial region which b occupies at t is continuant part of the spatial region which c occupies at t"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000176 +obo:BFO_0000176 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000178 ; + rdfs:domain obo:BFO_0000002 ; + rdfs:range obo:BFO_0000002 ; + "221-BFO" ; + rdfs:label "continuant part of"@en ; + skos:definition "b continuant part of c =Def b and c are continuants & there is some time t such that b and c exist at t & b continuant part of c at t"@en ; + skos:example "Milk teeth continuant part of human; surgically removed tumour continuant part of organism"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000178 +obo:BFO_0000178 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000002 ; + rdfs:range obo:BFO_0000002 ; + "271-BFO" ; + rdfs:label "has continuant part"@en ; + skos:definition "b has continuant part c =Def c continuant part of b"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000183 +obo:BFO_0000183 rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000029 + obo:BFO_0000040 + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000035 + ) + ] ; + "267-BFO" ; + rdfs:label "environs"@en ; + skos:altLabel "contains process"@en ; + skos:definition "b environs c =Def c occurs in b"@en ; + skos:example "Mouth environs process of mastication; city environs traffic"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000184 +obo:BFO_0000184 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000185 ; + rdf:type owl:FunctionalProperty , + owl:InverseFunctionalProperty ; + rdfs:domain obo:BFO_0000182 ; + rdfs:range obo:BFO_0000040 ; + "144-BFO" ; + rdfs:label "history of"@en ; + skos:definition "(Elucidation) history of is a relation between history b and material entity c such that b is the unique history of c"@en ; + skos:example "This life is the history of this organism"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000185 +obo:BFO_0000185 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000040 ; + rdfs:range obo:BFO_0000182 ; + "145-BFO" ; + rdfs:label "has history"@en ; + skos:definition "b has history c =Def c history of b"@en ; + skos:example "This organism has history this life"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000194 +obo:BFO_0000194 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000195 ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000020 + [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:range obo:BFO_0000020 ; + "260-BFO" ; + rdfs:label "specifically depended on by"@en ; + skos:altLabel "s-depended on by"@en ; + skos:definition "b specifically depended on by c =Def c specifically depends on b"@en ; + skos:example "Coloured object specifically depended on by colour"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000195 +obo:BFO_0000195 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000020 ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000020 + [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + "012-BFO" ; + rdfs:label "specifically depends on"@en ; + skos:altLabel "s-depends on"@en ; + skos:definition "(Elucidation) specifically depends on is a relation between a specifically dependent continuant b and specifically dependent continuant or independent continuant that is not a spatial region c such that b and c share no parts in common & b is of a nature such that at all times t it cannot exist unless c exists & b is not a boundary of c"@en ; + skos:example "A shape specifically depends on the shaped object; hue, saturation and brightness of a colour sample specifically depends on each other"@en ; + skos:scopeNote "The analogue of specifically depends on for occurrents is has participant."@en . + + +### http://purl.obolibrary.org/obo/BFO_0000196 +obo:BFO_0000196 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000194 ; + owl:inverseOf obo:BFO_0000197 ; + rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range obo:BFO_0000020 ; + "053-BFO" ; + rdfs:label "bearer of"@en ; + skos:definition "b bearer of c =Def c inheres in b"@en ; + skos:example "A patch of ink is the bearer of a colour quality; an organism is the bearer of a temperature quality"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000197 +obo:BFO_0000197 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000195 ; + rdfs:domain obo:BFO_0000020 ; + rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + "051-BFO" ; + rdfs:label "inheres in"@en ; + skos:definition "b inheres in c =Def b is a specifically dependent continuant & c is an independent continuant that is not a spatial region & b specifically depends on c"@en ; + skos:example "A shape inheres in a shaped object; a mass inheres in a material entity"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000199 +obo:BFO_0000199 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001874 ; + rdf:type owl:FunctionalProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000035 + ) + ] ; + rdfs:range obo:BFO_0000008 ; + "132-BFO" ; + rdfs:label "occupies temporal region"@en ; + skos:definition "p occupies temporal region t =Def p is a process or process boundary & the spatiotemporal region occupied by p temporally projects onto t"@en ; + skos:example "The Second World War occupies the temporal region September 1, 1939 - September 2, 1945"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000200 +obo:BFO_0000200 rdf:type owl:ObjectProperty , + owl:FunctionalProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000035 + ) + ] ; + rdfs:range obo:BFO_0000011 ; + "082-BFO" ; + rdfs:label "occupies spatiotemporal region"@en ; + skos:definition "(Elucidation) occupies spatiotemporal region is a relation between a process or process boundary p and the spatiotemporal region s which is its spatiotemporal extent"@en ; + skos:example "A particle emitted by a nuclear reactor occupies the spatiotemporal region which is its trajectory"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000210 +obo:BFO_0000210 rdf:type owl:ObjectProperty ; + rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range obo:BFO_0000006 ; + "232-BFO" ; + rdfs:label "occupies spatial region"@en ; + skos:definition "b occupies spatial region r =Def b is an independent continuant that is not a spatial region & r is a spatial region & there is some time t such that every continuant part of b occupies some continuant part of r at t and no continuant part of b occupies any spatial region that is not a continuant part of r at t"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000216 +obo:BFO_0000216 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000011 ; + rdfs:range obo:BFO_0000006 ; + "246-BFO" ; + rdfs:label "spatially projects onto"@en ; + skos:definition "(Elucidation) spatially projects onto is a relation between some spatiotemporal region b and spatial region c such that at some time t, c is the spatial extent of b at t"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000218 +obo:BFO_0000218 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000016 ; + rdfs:range obo:BFO_0000040 ; + "242-BFO" ; + rdfs:label "has material basis"@en ; + skos:definition "b has material basis c =Def b is a disposition & c is a material entity & there is some d bearer of b & there is some time t such that c is a continuant part of d at t & d has disposition b because c is a continuant part of d at t"@en ; + skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + + +### http://purl.obolibrary.org/obo/BFO_0000221 +obo:BFO_0000221 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000222 ; + rdfs:domain obo:BFO_0000203 ; + rdfs:range obo:BFO_0000008 ; + "268-BFO" ; + rdfs:label "first instant of"@en ; + skos:definition "t first instant of t' =Def t is a temporal instant & t' is a temporal region t' & t precedes all temporal parts of t' other than t"@en ; + skos:example "An hour starting at midnight yesterday has first instant midnight yesterday"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000222 +obo:BFO_0000222 rdf:type owl:ObjectProperty , + owl:FunctionalProperty ; + rdfs:domain obo:BFO_0000008 ; + rdfs:range obo:BFO_0000203 ; + "261-BFO" ; + rdfs:label "has first instant"@en ; + skos:definition "t has first instant t' =Def t' first instant of t"@en ; + skos:example "The first hour of a year has first instant midnight on December 31"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000223 +obo:BFO_0000223 rdf:type owl:ObjectProperty ; + owl:inverseOf obo:BFO_0000224 ; + rdfs:domain obo:BFO_0000203 ; + rdfs:range obo:BFO_0000008 ; + "269-BFO" ; + rdfs:label "last instant of"@en ; + skos:definition "t last instant of t' =Def t is a temporal instant & t' is a temporal region & all temporal parts of t' other than t precede t"@en ; + skos:example "Last midnight is the last instant of yesterday"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000224 +obo:BFO_0000224 rdf:type owl:ObjectProperty , + owl:FunctionalProperty ; + rdfs:domain obo:BFO_0000008 ; + rdfs:range obo:BFO_0000203 ; + "215-BFO" ; + rdfs:label "has last instant"@en ; + skos:definition "t has last instant t' =Def t' last instant of t"@en ; + skos:example "The last hour of a year has last instant midnight December 31"@en . + + +### https://www.commoncoreontologies.org/ont00001774 +cco:ont00001774 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001902 ; + owl:inverseOf cco:ont00001883 ; + rdfs:label "has brother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001775 +cco:ont00001775 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001928 ; + rdfs:domain obo:BFO_0000004 ; + rdfs:range obo:BFO_0000004 ; + rdfs:label "is successor of"@en ; + skos:definition "A continuant c2 is a successor of some continuant c1 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1. Inverse of is predecessor. "@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001776 +cco:ont00001776 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001945 ; + owl:inverseOf cco:ont00001876 ; + rdfs:label "has grandfather"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001777 +cco:ont00001777 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000117 ; + owl:inverseOf cco:ont00001857 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "has process part"@en ; + skos:definition "x has_process_part y iff x and y are instances of Process, such that y occurs during the temporal interval of x, and y either provides an input to x or receives an output of x, or both."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001778 +cco:ont00001778 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + owl:inverseOf cco:ont00001936 ; + rdfs:label "has object"@en ; + skos:definition "If p is a process and c is a continuant, then p has object c if and only if p is performed by an agent and c is part of the projected state that agent intends to achieve by performing p."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001779 +cco:ont00001779 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001848 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000148 ; + rdfs:label "has inside instant"@en ; + skos:definition "For Temporal Interval t1 and Temporal Instant t2, t1 has inside instant t2 if and only if there exists Temporal Instants t3 and t4 that are part of t1 and non-identical with t2, such that t3 is before t2 and t4 is after t2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001780 +cco:ont00001780 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001842 ; + owl:inverseOf cco:ont00001786 ; + rdfs:label "has mother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001781 +cco:ont00001781 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001996 ; + owl:inverseOf cco:ont00001979 ; + rdfs:label "has step sister"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001782 +cco:ont00001782 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001832 ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "has all members located in"@en ; + skos:definition "x has all members located in y iff x is an instance of Object Aggregate and y is an instance of independent continuant but not a spatial region, and every member of x is located in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001783 +cco:ont00001783 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001945 ; + owl:inverseOf cco:ont00001820 ; + rdfs:label "is granddaughter of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001784 +cco:ont00001784 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001881 ; + rdfs:label "has son in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001785 +cco:ont00001785 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001988 ; + rdfs:label "has uncle"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001786 +cco:ont00001786 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001995 ; + rdfs:label "is mother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001787 +cco:ont00001787 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + owl:inverseOf cco:ont00001833 ; + rdfs:label "agent in"@en ; + skos:definition "x agent_in y iff y is an instance of Process and x is an instance of Agent, such that x is causally active in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001788 +cco:ont00001788 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001789 ; + owl:inverseOf cco:ont00001994 ; + rdfs:label "has paternal aunt"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001789 +cco:ont00001789 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001955 ; + rdfs:label "has aunt"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001790 +cco:ont00001790 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001785 ; + owl:inverseOf cco:ont00001929 ; + rdfs:label "has maternal uncle"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001791 +cco:ont00001791 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001810 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "coincides with"@en ; + skos:definition "An immaterial entity im1 coincides with some immaterial entity im2 iff im1 is a spatial part of im2 and im2 is a spatial part of im1."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive and symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001792 +cco:ont00001792 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001902 ; + owl:inverseOf cco:ont00001851 ; + rdfs:label "has sister"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001793 +cco:ont00001793 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001975 ; + owl:inverseOf cco:ont00001948 ; + rdfs:label "has half sister"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001794 +cco:ont00001794 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001977 ; + owl:inverseOf cco:ont00001815 ; + rdfs:domain cco:ont00001180 ; + rdfs:range cco:ont00001180 ; + rdfs:label "has subsidiary"@en ; + skos:definition "An Organization o1 has_subsidiary Organization o2 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies."@en ; + cco:ont00001754 "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001795 +cco:ont00001795 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001924 ; + owl:inverseOf cco:ont00001869 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "has inside interval"@en ; + skos:definition "A Temporal Interval INT2 has inside interval some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001796 +cco:ont00001796 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001944 ; + owl:inverseOf cco:ont00001909 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "tangential part of"@en ; + skos:definition "An immaterial entity im1 is a tangential part of some immaterial entity im2 iff im1 is a spatial part of im2 and there exists some immaterial entity im3 such that im3 externally connects with im1 and im3 externally connects with im2."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001797 +cco:ont00001797 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001810 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "partially overlaps with"@en ; + skos:definition "An immaterial entity im1 partially overlaps with some immaterial entity im2 iff im1 overlaps with im2 and im1 is not a spatial part of im2 and im2 is not a spatial part of im1."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001798 +cco:ont00001798 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001939 ; + owl:inverseOf cco:ont00001943 ; + rdfs:domain cco:ont00001262 ; + rdfs:range cco:ont00001262 ; + rdfs:label "is supervised by"@en ; + skos:definition "A person p1 is supervised by a person p2 by virtue of p1 being directed, managed, or overseen by p2."@en ; + cco:ont00001754 "http://en.wiktionary.org/wiki/supervise)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001799 +cco:ont00001799 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001809 ; + rdfs:domain obo:BFO_0000023 ; + rdfs:range obo:BFO_0000027 ; + rdfs:label "role of aggregate"@en ; + skos:definition "x role_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Role, and x inheres_in_aggregate y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001800 +cco:ont00001800 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001942 ; + owl:inverseOf cco:ont00001817 ; + rdfs:domain cco:ont00001324 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "prohibits"@en ; + skos:definition "x prohibits y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that some y must not occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001801 +cco:ont00001801 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001808 ; + rdfs:range cco:ont00000958 ; + rdfs:label "is subject of"@en ; + skos:definition "A primitive relationship between an instance of an Entity and an instance of an Information Content Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001802 +cco:ont00001802 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001804 ; + owl:inverseOf cco:ont00001957 ; + rdfs:label "has husband"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001803 +cco:ont00001803 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001819 ; + rdfs:domain obo:BFO_0000003 ; + rdfs:range obo:BFO_0000003 ; + rdfs:label "is cause of"@en ; + skos:definition "x is_cause_of y iff x and y are instances of Occurrent, and y is a consequence of x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001804 +cco:ont00001804 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001804 ; + rdfs:label "is spouse of"@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001805 +cco:ont00001805 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001888 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "is disrupted by"@en ; + skos:definition "Inverse of disrupts." ; + skos:prefLabel "is disrupted by"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001806 +cco:ont00001806 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001806 ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is first cousin of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001807 +cco:ont00001807 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001920 ; + owl:inverseOf cco:ont00001974 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range cco:ont00001324 ; + rdfs:label "is required by"@en ; + skos:definition "y is_required_by x at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y must occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001808 +cco:ont00001808 rdf:type owl:ObjectProperty ; + rdfs:domain cco:ont00000958 ; + rdfs:range obo:BFO_0000001 ; + rdfs:label "is about"@en ; + skos:definition "A primitive relationship between an Information Content Entity and some Entity."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000136" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001809 +cco:ont00001809 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001836 ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000020 + obo:BFO_0000031 + ) + ] ; + rdfs:range obo:BFO_0000027 ; + rdfs:label "inheres in aggregate"@en ; + skos:definition "x inheres_in_aggregate y iff x is an instance of Specifically Dependent Continuant and y is an instance of Object Aggregate and z is an instance of Object, such that z bearer_of x, and all other members of y are bearers of a unique instance of the same type as x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001810 +cco:ont00001810 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "connected with"@en ; + skos:definition "An immaterial entity im1 is connected with some immaterial entity im2 iff there exists some immaterial entity im3 that is common to both im1 and im2."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001811 +cco:ont00001811 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001966 ; + owl:inverseOf cco:ont00001963 ; + rdfs:domain cco:ont00001010 ; + rdfs:label "is a ordinal measurement of"@en ; + skos:definition "x is_a_ordinal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale ordered by rank."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001812 +cco:ont00001812 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001945 ; + owl:inverseOf cco:ont00001981 ; + rdfs:label "is grandson of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001813 +cco:ont00001813 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001925 ; + rdfs:label "uses"@en ; + skos:definition "x uses y iff x is an instance of an Agent and y is an instance of a Material Entity, such that both x and y participate in some instance of a Process wherein x attempts to accomplish a goal by manipulating, deploying, or leveraging some attribute of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001814 +cco:ont00001814 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001971 ; + owl:inverseOf cco:ont00001821 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval finishes"@en ; + skos:definition "A Temporal Interval INT1 finishes some Temporal Interval INT2 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001815 +cco:ont00001815 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001939 ; + rdfs:domain cco:ont00001180 ; + rdfs:range cco:ont00001180 ; + rdfs:label "is subsidiary of"@en ; + skos:definition "An Organization o2 is_subsidiary_of Organization o1 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies. "@en ; + cco:ont00001754 "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001816 +cco:ont00001816 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + owl:inverseOf cco:ont00001986 ; + rdfs:domain obo:BFO_0000002 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "is output of"@en ; + skos:definition "x is_output_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001817 +cco:ont00001817 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001920 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range cco:ont00001324 ; + rdfs:label "is prohibited by"@en ; + skos:definition "y is_prohibited_by y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y must not occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001818 +cco:ont00001818 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001818 ; + rdfs:label "is in-law of"@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001819 +cco:ont00001819 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000003 ; + rdfs:range obo:BFO_0000003 ; + rdfs:label "caused by"@en ; + skos:definition "x caused_by y iff x and y are instances of Occurrent, and x is a consequence of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001820 +cco:ont00001820 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001850 ; + rdfs:label "has granddaughter"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001821 +cco:ont00001821 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001924 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval finished by"@en ; + skos:definition "A Temporal Interval INT2 is finished by some Temporal Interval INT1 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001822 +cco:ont00001822 rdf:type owl:ObjectProperty , + owl:SymmetricProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + owl:propertyDisjointWith cco:ont00001862 ; + rdfs:label "interval equals"@en ; + skos:definition "A Temporal Interval INT1 is equal to some Temporal Interval INT2 iff there exists Temporal Instants inst1 and inst2 such that inst1 is the starting instant of both INT1 and INT2 and inst2 is the ending instant of both INT1 and INT2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001823 +cco:ont00001823 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001785 ; + owl:inverseOf cco:ont00001926 ; + rdfs:label "has paternal uncle"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001824 +cco:ont00001824 rdf:type owl:ObjectProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00000253 ; + rdfs:label "is excerpted from"@en ; + skos:definition "An Information Bearing Entity b1 is excerpted from another Information Bearing Entity B2 iff b1 is part of some Information Bearing Entity B1 that is carrier of some Information Content Entity C1, B2 is carrier of some Information Content Entity C2, C1 is not identical with C2, b1 is carrier of some Information Content Entity c1, b2 is an Information Bearing Entity that is part of B2 and b2 is carrier of c1 (i.e. the same Information Content Entity as borne by b1)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001825 +cco:ont00001825 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001870 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + owl:propertyDisjointWith cco:ont00001862 ; + rdfs:label "interval overlaps"@en ; + skos:definition "A Temporal Interval INT1 overlaps some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst1 is before inst3, inst3 is before inst2, and inst2 is before inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001826 +cco:ont00001826 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001828 ; + rdfs:label "is sister-in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001827 +cco:ont00001827 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001944 ; + owl:inverseOf cco:ont00001989 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "nontangential part of"@en ; + skos:definition "An immaterial entity im1 is a nontangential part of some immaterial entity im2 iff im1 is a spatial part of im2 and there does not exist an immaterial entity im3 such that im3 externally connects with im1 and im3 externally connects with im2."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001828 +cco:ont00001828 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "has sister in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001829 +cco:ont00001829 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001809 ; + owl:inverseOf cco:ont00001956 ; + rdfs:domain obo:BFO_0000016 ; + rdfs:range obo:BFO_0000027 ; + rdfs:label "disposition of aggregate"@en ; + skos:definition "x disposition_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Disposition, and x inheres_in_aggregate y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001830 +cco:ont00001830 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + owl:inverseOf cco:ont00001895 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000040 ; + rdfs:label "has accomplice"@en ; + skos:definition "A Processual Entity p1 has_accomplice some agent a1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001831 +cco:ont00001831 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001951 ; + rdfs:domain obo:BFO_0000023 ; + rdfs:range obo:BFO_0000023 ; + rdfs:label "is subordinate role to"@en ; + skos:definition "For all x,y,t: y is subordinate role to x at t iff: x is an instance of Role at time t, and y is an instance of Role at time t, and there is some z such that x is realized by z and z is an instance of Process which creates, modifies, transfers, or eliminates some u such that u is a Process Regulation at time t, and u is addressed to the bearer of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001832 +cco:ont00001832 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf owl:topObjectProperty ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "has some member located in"@en ; + skos:definition "x has some member located in y iff x is an instance of Object Aggregate and y is an instance of independent continuant but not a spatial region, and at least one member of x is located in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001833 +cco:ont00001833 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + rdfs:label "has agent"@en ; + skos:definition "x has_agent y iff x is an instance of Process and y is an instance of Agent, such that y is causally active in x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001834 +cco:ont00001834 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + owl:inverseOf cco:ont00001886 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000002 ; + rdfs:label "affects"@en ; + skos:definition "x affects y iff x is an instance of Process and y is an instance of Continuant, and x influences y in some manner, most often by producing a change in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001835 +cco:ont00001835 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001842 ; + owl:inverseOf cco:ont00001839 ; + rdfs:label "is son of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001836 +cco:ont00001836 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000020 + obo:BFO_0000031 + ) + ] ; + rdfs:label "aggregate bearer of"@en ; + skos:definition "x aggregate_bearer_of y iff x is an instance of Object Aggregate and y is an instance of Specifically Dependent Continuant and z is an instance of Object, such that z bearer of y, and all other members of x are bearers of a unique instance of the same type as y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001837 +cco:ont00001837 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000084 ; + owl:inverseOf cco:ont00001908 ; + rdfs:domain cco:ont00000829 ; + rdfs:range cco:ont00000253 ; + rdfs:label "time zone identifier used by"@en ; + skos:definition "x time_zone_identifier_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Time Zone Identifier, such that x designates the spatial region associated with the time zone mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001838 +cco:ont00001838 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "disconnected with"@en ; + skos:definition "An immaterial entity im1 is disconnected with some immaterial entity im2 iff there does not exist some immaterial entity im3 that is common to both im1 and im2."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001839 +cco:ont00001839 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001995 ; + rdfs:label "has son"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001840 +cco:ont00001840 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001945 ; + owl:inverseOf cco:ont00001882 ; + rdfs:label "has grandmother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001841 +cco:ont00001841 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + owl:inverseOf cco:ont00001921 ; + rdfs:domain obo:BFO_0000002 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "is input of"@en ; + skos:definition "x is_input_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001842 +cco:ont00001842 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001995 ; + rdfs:label "is child of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001843 +cco:ont00001843 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001806 ; + owl:inverseOf cco:ont00001894 ; + rdfs:comment "Comment is_paternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"@en ; + rdfs:label "is paternal first cousin of"@en ; + skos:definition "Person A is paternal first cousin of Person B iff Person B has father F and F has sibling P and P is parent of Person A."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001844 +cco:ont00001844 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + owl:inverseOf cco:ont00001993 ; + rdfs:range cco:ont00001017 ; + rdfs:label "has sender"@en ; + skos:definition "y has_sender x iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001845 +cco:ont00001845 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000183 ; + owl:inverseOf cco:ont00001918 ; + rdfs:domain obo:BFO_0000029 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "is site of"@en ; + skos:definition "x is_site_of y iff x is an instance of Site and y is an instance of Process, such that y occurs in x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001846 +cco:ont00001846 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001992 ; + rdfs:domain cco:ont00001180 ; + rdfs:range obo:BFO_0000023 ; + rdfs:label "is organizational context of"@en ; + skos:definition "x is_organizational_context_of y iff x is an instance of an Organization and y is an instance of a Role and z is an instance of a Person, such that z's affiliation with x is a prerequisite for z bearing y, or x ascribes y to the bearer of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001847 +cco:ont00001847 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001862 ; + owl:inverseOf cco:ont00001940 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval is after"@en ; + skos:definition "A TemporalInterval INT2 is after some TemporalInterval INT1 iff there exists TemporalInstants inst2, inst1 such that inst2 is the starting instant of INT2 and inst1 is the ending instant of INT1 and inst2 is after inst1."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001848 +cco:ont00001848 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000148 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "is inside instant of"@en ; + skos:definition "For Temporal Instant t1 and Temporal Interval t2, t1 is inside instant of t2 if and only if there are Temporal Instants t3 and t4 non-identical to t1 and part of t2 such that t3 is before t1 and t4 is after t1."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001849 +cco:ont00001849 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001935 ; + rdfs:label "is father in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001850 +cco:ont00001850 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001945 ; + rdfs:label "is grandparent of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001851 +cco:ont00001851 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001902 ; + rdfs:label "is sister of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001852 +cco:ont00001852 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + owl:inverseOf cco:ont00001949 ; + rdfs:domain obo:BFO_0000040 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "accessory in"@en ; + skos:definition "y is_accessory_in x iff x is an instance of Process and y is an instance of Agent, such that y assists another agent in the commission of x, and y was not located at the location of x when x occurred, and y was not an agent_in x."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001853 +cco:ont00001853 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001885 ; + rdfs:label "is mother in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001854 +cco:ont00001854 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001867 ; + rdfs:label "has daughter in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001855 +cco:ont00001855 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000178 , + cco:ont00001810 ; + owl:inverseOf cco:ont00001944 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "has spatial part"@en ; + skos:definition "y has_spatial_part x iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001856 +cco:ont00001856 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001932 ; + rdfs:label "has niece"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001857 +cco:ont00001857 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000132 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "is part of process"@en ; + skos:definition "x is_part_of_process y iff x and y are instances of Process, such that x occurs during the temporal interval of y, and x either provides an input to y or receives an output of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001858 +cco:ont00001858 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001842 ; + owl:inverseOf cco:ont00001987 ; + rdfs:label "is daughter of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001859 +cco:ont00001859 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001864 ; + rdfs:domain cco:ont00001180 ; + rdfs:range cco:ont00001203 ; + rdfs:label "is delimited by"@en ; + skos:definition "An instance of Organization o1 is_delimited_by some Delimiting Domain dd1 iff dd1 is the area within which o1 can legally operate."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001860 +cco:ont00001860 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001968 ; + rdfs:label "is ancestor of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001861 +cco:ont00001861 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001991 ; + rdfs:domain obo:BFO_0000030 ; + rdfs:range obo:BFO_0000030 ; + rdfs:label "is material of"@en ; + skos:definition "An object m is material of an object o when m is the material of which o consists and that material does not undergo a change of kind during the creation of o"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001862 +cco:ont00001862 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + owl:propertyDisjointWith cco:ont00001870 , + cco:ont00001924 , + cco:ont00001971 ; + rdfs:label "interval disjoint"@en ; + skos:definition "A Temporal Interval INT1 is disjoint with a Temporal Interval INT2 iff INT1 is before or meets INT2 OR INT2 is before or meets INT1. In other words, INT1 and INT2 are disjoint iff INT1 and INT2 do not overlap, contain, or equal one another."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001863 +cco:ont00001863 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000101 ; + owl:inverseOf cco:ont00001961 ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00000120 ; + rdfs:label "uses measurement unit"@en ; + skos:definition "y uses_measurement_unit x iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001864 +cco:ont00001864 rdf:type owl:ObjectProperty ; + rdfs:domain cco:ont00001203 ; + rdfs:range cco:ont00001180 ; + rdfs:label "delimits"@en ; + skos:definition "An instance of Delimiting Domain dd1 delimits some Organization o1 iff dd1 is the area within which o1 can legally operate."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001865 +cco:ont00001865 rdf:type owl:ObjectProperty , + owl:SymmetricProperty ; + rdfs:domain cco:ont00001262 ; + rdfs:range cco:ont00001262 ; + rdfs:label "has familial relationship to"@en ; + skos:definition "A relationship between persons by virtue of ancestry or legal union."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001866 +cco:ont00001866 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001984 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range cco:ont00001017 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "is interest of"@en ; + skos:definition "The inverse of has_interest_in. " ; + skos:prefLabel "is interest of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001867 +cco:ont00001867 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "is daughter in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001868 +cco:ont00001868 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001966 ; + owl:inverseOf cco:ont00001914 ; + rdfs:domain cco:ont00000293 ; + rdfs:label "is a nominal measurement of"@en ; + skos:definition "x is_a_nominal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001869 +cco:ont00001869 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001971 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval during"@en ; + skos:definition "A Temporal Interval INT1 is during some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001870 +cco:ont00001870 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval overlapped by"@en ; + skos:definition "A Temporal Interval INT2 is overlapped by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst1 is before inst3, inst3 is before inst2, and inst2 is before inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001871 +cco:ont00001871 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001804 ; + owl:inverseOf cco:ont00001887 ; + rdfs:label "has wife"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001872 +cco:ont00001872 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001996 ; + owl:inverseOf cco:ont00001890 ; + rdfs:label "is step-brother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001873 +cco:ont00001873 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001801 ; + owl:inverseOf cco:ont00001938 ; + rdfs:range cco:ont00001069 ; + rdfs:comment "See notes for inverse property." ; + rdfs:label "represented by"@en ; + skos:definition "y represented_by x iff x is an instance of Information Content Entity, and y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001874 +cco:ont00001874 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000008 ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000035 + ) + ] ; + rdfs:label "is temporal region of"@en ; + skos:definition "t is temporal region of p iff p occupies temporal region t."@en ; + skos:editorialNote "Leaving this is in ERO for now since BFO2020 has no inverse of occupies-temporal-region yet."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001875 +cco:ont00001875 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001924 ; + owl:inverseOf cco:ont00001923 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval started by"@en ; + skos:definition "A Temporal Interval INT2 is started by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001876 +cco:ont00001876 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001850 ; + rdfs:label "is grandfather of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001877 +cco:ont00001877 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001966 ; + owl:inverseOf cco:ont00001964 ; + rdfs:domain cco:ont00001364 ; + rdfs:label "is a interval measurement of"@en ; + skos:definition "x is_a_interval_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ; + skos:example "a measurement of air temperature on the Celsius scale." ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001878 +cco:ont00001878 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001919 ; + rdfs:label "is mention of"@en ; + skos:definition "x is_mention_of y iff x is an instance Information Bearing Entity and y is an instance Entity, such that x is used as a reference to y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001879 +cco:ont00001879 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001801 ; + owl:inverseOf cco:ont00001916 ; + rdfs:range cco:ont00000686 ; + rdfs:label "designated by"@en ; + skos:definition "x designated_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that given some context, y uniquely distinguishes x from other entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001880 +cco:ont00001880 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001809 ; + owl:inverseOf cco:ont00001898 ; + rdfs:domain cco:ont00001379 ; + rdfs:range cco:ont00000300 ; + rdfs:label "capability of aggregate"@en ; + skos:definition "x capability_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Agent Capability, such that x inheres in aggregate y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001881 +cco:ont00001881 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "is son in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001882 +cco:ont00001882 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001850 ; + rdfs:label "is grandmother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001883 +cco:ont00001883 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001902 ; + rdfs:label "is brother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001884 +cco:ont00001884 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001801 ; + owl:inverseOf cco:ont00001980 ; + owl:propertyChainAxiom ( cco:ont00001917 + obo:BFO_0000176 + ) ; + rdfs:label "condition described by"@en ; + skos:definition "c condition_described_by p iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001885 +cco:ont00001885 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "has mother in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001886 +cco:ont00001886 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + rdfs:domain obo:BFO_0000002 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "is affected by"@en ; + skos:definition "x is_affected_by y iff x is an instance of Continuant and y is an instance of Process, and y influences x in some manner, most often by producing a change in x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001887 +cco:ont00001887 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001804 ; + rdfs:label "is wife of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001888 +cco:ont00001888 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "disrupts"@en ; + skos:definition "A relation where one process disrupts another process from occurring as it would have."@en ; + skos:editorialNote "To lower the grade of a process is to lower the quality of a process according to some standard, for example when realizing a capability or a function."@en ; + skos:prefLabel "disrupts"@en ; + skos:scopeNote "A process can disrupt another process from occurring as it would have by 1) preventing a disposition or role from being realized by that process, 2) lowering the grade of the process, or 3) stopping the process from continuing to occur."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001889 +cco:ont00001889 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000197 ; + owl:inverseOf cco:ont00001954 ; + rdfs:domain cco:ont00001379 ; + rdfs:range cco:ont00001017 ; + rdfs:label "capability of"@en ; + skos:definition "x capability_of y iff y is an instance of Agent and x is an instance of Agent Capability, such that x inheres in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001890 +cco:ont00001890 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001996 ; + rdfs:label "has step brother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001891 +cco:ont00001891 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + owl:inverseOf cco:ont00001952 ; + rdfs:label "has brother in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001892 +cco:ont00001892 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001876 ; + owl:inverseOf cco:ont00001972 ; + rdfs:label "is paternal grandfather of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001893 +cco:ont00001893 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001990 ; + rdf:type owl:TransitiveProperty ; + rdfs:domain obo:BFO_0000148 ; + rdfs:range obo:BFO_0000148 ; + rdfs:label "instant is after"@en ; + skos:definition "A temporal instant t2 (a instance of a zero-dimensional temporal region) is after another temporal instant t1 iff there exists some instance of a temporal interval ti1 such that t1 is the starting instant of ti1 and t2 is the ending instant of ti1."@en ; + skos:scopeNote "'instant is after' is a primitive relationship. Informally, a temporal instant t2 is after some temporal instant t1 if and only if t1 precedes t2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001894 +cco:ont00001894 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001806 ; + rdfs:label "has paternal first cousin"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001895 +cco:ont00001895 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + rdfs:domain obo:BFO_0000040 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "accomplice in"@en ; + skos:definition "An agent a1 is accomplice_in some Processual Entity p1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001896 +cco:ont00001896 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001862 ; + owl:inverseOf cco:ont00001915 ; + rdf:type owl:IrreflexiveProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval meets"@en ; + skos:definition "A Temporal Interval INT1 meets some Temporal Interval INT2 iff there exists some Temporal Instant inst1 such that inst1 is the ending instant of INT1 and inst1 is the starting instant of INT2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001897 +cco:ont00001897 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001882 ; + owl:inverseOf cco:ont00001960 ; + rdfs:label "is maternal grandmother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001898 +cco:ont00001898 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001836 ; + rdfs:domain cco:ont00000300 ; + rdfs:range cco:ont00001379 ; + rdfs:label "aggregate has capability"@en ; + skos:definition "x aggregate_has_capability y iff x is an instance of Object Aggregate and y is an instance of Agent Capability, such that x is aggregate bearer of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001899 +cco:ont00001899 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001942 ; + owl:inverseOf cco:ont00001976 ; + rdfs:domain cco:ont00001175 ; + rdfs:range cco:ont00000253 ; + rdfs:label "language used in"@en ; + skos:definition "x language_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Language, such that the literal value of y is a string that is encoded according to the syntax of x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001900 +cco:ont00001900 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001997 ; + owl:inverseOf cco:ont00001913 ; + rdfs:domain cco:ont00000469 ; + rdfs:range cco:ont00000253 ; + rdfs:label "is geospatial coordinate reference system of"@en ; + skos:definition "x is_geospatial_coordinate_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001901 +cco:ont00001901 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001836 ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range obo:BFO_0000023 ; + rdfs:label "aggregate has role"@en ; + skos:definition "x aggregate_has_role y iff x is an instance of Object Aggregate and y is an instance of Role, such that x aggregate_bearer_of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001902 +cco:ont00001902 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001902 ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is sibling of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001903 +cco:ont00001903 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001876 ; + owl:inverseOf cco:ont00001973 ; + rdfs:label "is maternal grandfather of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001904 +cco:ont00001904 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001917 ; + owl:inverseOf cco:ont00001966 ; + rdfs:range cco:ont00001163 ; + rdfs:label "is measured by"@en ; + skos:definition "y is_measured_by x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001905 +cco:ont00001905 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001975 ; + owl:inverseOf cco:ont00001927 ; + rdfs:label "is half-brother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001906 +cco:ont00001906 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001806 ; + owl:inverseOf cco:ont00001934 ; + rdfs:comment "Comment is_maternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"@en ; + rdfs:label "is maternal first cousin of"@en ; + skos:definition "Person A is maternal first cousin of Person B iff Person B has mother M and M has sibling P and P is parent of Person A."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001907 +cco:ont00001907 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001836 ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range obo:BFO_0000019 ; + rdfs:label "aggregate has quality"@en ; + skos:definition "x aggregate_has_quality y iff x is an instance of Object Aggregate and y is an instance of Quality, such that x aggregate_bearer_of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001908 +cco:ont00001908 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000101 ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00000829 ; + rdfs:label "uses time zone identifier"@en ; + skos:definition "x uses_time_zone_identifier y iff x is an instance of Information Bearing Entity and y is an instance of Time Zone Identifier, such that y designates the spatial region associated with the time zone mentioned in x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001909 +cco:ont00001909 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001855 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "has tangential part"@en ; + skos:definition "x has_tangential_part y iff x, y, and z are instances of Immaterial Entity, and x has_spatial_part y, such that z externally connects with both x and y."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001910 +cco:ont00001910 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001942 ; + owl:inverseOf cco:ont00001998 ; + rdfs:domain cco:ont00001324 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "permits"@en ; + skos:definition "x permits y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y may occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001911 +cco:ont00001911 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001882 ; + owl:inverseOf cco:ont00001937 ; + rdfs:label "is paternal grandmother of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001912 +cco:ont00001912 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000101 ; + owl:inverseOf cco:ont00001997 ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00000398 ; + rdfs:label "uses reference system"@en ; + skos:definition "y uses_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001913 +cco:ont00001913 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001912 ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00000469 ; + rdfs:label "uses geospatial coordinate reference system"@en ; + skos:definition "y uses_geospatial_coordinate_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001914 +cco:ont00001914 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001904 ; + rdfs:range cco:ont00000293 ; + rdfs:label "is measured by nominal"@en ; + skos:definition "y is_measured_by_nominal x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001915 +cco:ont00001915 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001862 ; + rdf:type owl:IrreflexiveProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval met by"@en ; + skos:definition "A Temporal Interval INT2 is met by some Temporal Interval INT1 iff there exists some Temporal Instant inst1 such that inst1 is the starting instant of INT2 and inst1 is the ending instant of INT1."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001916 +cco:ont00001916 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001808 ; + rdfs:domain cco:ont00000686 ; + rdfs:label "designates"@en ; + skos:definition "x designates y iff x is an instance of an Information Content Entity, and y is an instance of an Entity, such that given some context, x uniquely distinguishes y from other entities."@en ; + skos:example "a URL designates the location of a Web Page on the internet" , + "a person's name designates that person" , + "a vehicle identification number designates some vehicle" ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001917 +cco:ont00001917 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001801 ; + owl:inverseOf cco:ont00001982 ; + rdfs:range cco:ont00000853 ; + rdfs:label "described by"@en ; + skos:definition "x described_by y iff y is an instance of Information Content Entity, and x is an instance of Entity, such that y is about the characteristics by which y can be recognized or visualized."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001918 +cco:ont00001918 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000066 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000029 ; + rdfs:label "occurs at"@en ; + skos:definition "x occurs_at y iff x is an instance of Process and y is an instance of Site, such that x occurs in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001919 +cco:ont00001919 rdf:type owl:ObjectProperty ; + rdfs:label "is mentioned by"@en ; + skos:definition "y is_mention_by x iff x is an instance Information Bearing Entity and y is an instance Entity, such that x is used as a reference to y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001920 +cco:ont00001920 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001801 ; + owl:inverseOf cco:ont00001942 ; + rdfs:range cco:ont00000965 ; + rdfs:label "prescribed by"@en ; + skos:definition "x prescribed_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that y serves as a rule or guide for x if x is an Occurrent, or y serves as a model for x if x is a Continuant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001921 +cco:ont00001921 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000002 ; + rdfs:label "has input"@en ; + skos:definition "y has_input x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001922 +cco:ont00001922 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + owl:inverseOf cco:ont00001978 ; + rdfs:range cco:ont00001017 ; + rdfs:label "has recipient"@en ; + skos:definition "x has_recipient y iff y is an instance of Agent and x is an instance of Act Of Communication, such that y is the recipient and decoder of the InformationContentEntity intended for communication in x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001923 +cco:ont00001923 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001971 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval starts"@en ; + skos:definition "A Temporal Interval INT1 starts some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001924 +cco:ont00001924 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001971 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval contains"@en ; + skos:definition "A Temporal Interval INT2 contains some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, and inst2 is before or identical to inst4, but it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001925 +cco:ont00001925 rdf:type owl:ObjectProperty ; + rdfs:label "is used by"@en ; + skos:definition "x is_used_by y iff y is an instance of an Agent and x is an instance of a Material Entity, such that both x and y participate in some instance of a Process wherein y attempts to accomplish a goal by manipulating, deploying, leveraging some attribute of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001926 +cco:ont00001926 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001988 ; + rdfs:label "is paternal uncle of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001927 +cco:ont00001927 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001975 ; + rdfs:label "has half brother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001928 +cco:ont00001928 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000004 ; + rdfs:range obo:BFO_0000004 ; + rdfs:label "is predecessor of"@en ; + skos:definition "A continuant c1 is a predecessor of some continuant c2 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1."@en ; + skos:scopeNote "More informally, c1 is a predecessor of c2 iff c1 has been followed or replaced by c2."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001929 +cco:ont00001929 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001988 ; + rdfs:label "is maternal uncle of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001930 +cco:ont00001930 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001930 ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is second cousin of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001931 +cco:ont00001931 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001810 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "externally connects with"@en ; + skos:definition "An immaterial entity im1 externally connects with some immaterial entity im2 iff im1 connects with im2 and im1 does not overlap with im2."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001932 +cco:ont00001932 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "is niece of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001933 +cco:ont00001933 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001803 ; + owl:inverseOf cco:ont00001962 ; + rdfs:label "process starts"@en ; + skos:definition "x process_starts y iff x and y are instances of processes, and x is_cause_of y, and i is an instance of a temporal instant, and r is an instant of a temporal interval, and y has starting instance i, and x occurs on r, and r interval contains i."@en ; + skos:scopeNote "A process x starts another process y when x causes y while x is still occurring."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001934 +cco:ont00001934 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001806 ; + rdfs:label "has maternal first cousin"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001935 +cco:ont00001935 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "has father in law"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001936 +cco:ont00001936 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + rdfs:label "is object of"@en ; + skos:definition "If p is a process and c is a continuant, then c is object of p if and only if the c is part of the projected state that the agent intends to achieve by performing p."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001937 +cco:ont00001937 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001840 ; + rdfs:label "has paternal grandmother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001938 +cco:ont00001938 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001808 ; + rdfs:domain cco:ont00001069 ; + rdfs:comment "Isomorphism between the carrier of x and the represented entity can be via a direct similarity relation, e.g., grooves in a vinyl record corresponding to sound waves, or linguistic convention, e.g., a court stenographer's transcription of spoken words, as well as others, such as encoding processes for images."@en ; + rdfs:label "represents"@en ; + skos:definition "x represents y iff x is an instance of Information Content Entity, y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en , + "The relationship that is being defined here is that between the content of a photographic image and its object, between the content of a video and its objects and events, between the content of an audio recording and the sounds or events generating those sounds, or between the content of a written transcript and the verbal event that it transcribes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001939 +cco:ont00001939 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001977 ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( cco:ont00001017 + cco:ont00001180 + cco:ont00001262 + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( cco:ont00001017 + cco:ont00001180 + cco:ont00001262 + ) + ] ; + rdfs:label "is affiliated with"@en ; + skos:definition "x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001940 +cco:ont00001940 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001862 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval is before"@en ; + skos:definition "A TemporalInterval INT1 is before some TemporalInterval INT2 iff there exists TemporalInstants inst1, inst2 such that inst1 is the ending instant of INT1 and inst2 is the starting instant of INT2 and inst1 is before inst2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001941 +cco:ont00001941 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001955 ; + owl:inverseOf cco:ont00001958 ; + rdfs:label "is maternal aunt of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001942 +cco:ont00001942 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001808 ; + rdfs:domain cco:ont00000965 ; + rdfs:label "prescribes"@en ; + skos:definition "x prescribes y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x serves as a rule or guide for y if y an Occurrent, or x serves as a model for y if y is a Continuant."@en ; + skos:example "A blueprint prescribes some artifact or facility by being a model for it." , + "A professional code of conduct prescribes some realizations of a profession (role) by giving rules for how the bearer should act in those realizations." , + "An operations plan prescribes an operation by enumerating the tasks that need to be performed in order to achieve the objectives of the operation." ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001943 +cco:ont00001943 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001977 ; + rdfs:domain cco:ont00001262 ; + rdfs:range cco:ont00001262 ; + rdfs:label "supervises"@en ; + skos:definition "A person p1 supervises a person p2 by virtue of p1 directing, managing, or overseeing p2."@en ; + cco:ont00001754 "http://en.wiktionary.org/wiki/supervise" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001944 +cco:ont00001944 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000176 , + cco:ont00001810 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:comment "in the sense used here, spatial part of is elsewhere referred to as proper spatial part of"@en ; + rdfs:label "spatial part of"@en ; + skos:definition "x spatial_part_of y iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001945 +cco:ont00001945 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "is grandchild of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001946 +cco:ont00001946 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001842 ; + owl:inverseOf cco:ont00001985 ; + rdfs:label "has father"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001947 +cco:ont00001947 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001809 ; + rdfs:domain obo:BFO_0000019 ; + rdfs:range obo:BFO_0000027 ; + rdfs:label "quality of aggregate"@en ; + skos:definition "x quality_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Quality, and x inheres_in_aggregate y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001948 +cco:ont00001948 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001975 ; + rdfs:label "is half sister of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001949 +cco:ont00001949 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000040 ; + rdfs:label "has accessory"@en ; + skos:definition "x has_accessory y iff x is an instance of Process and y is an instance of Agent, such that y assists another agent in the commission of x, and y was not located at the location of x when x occurred, and y was not an agent_in x."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001950 +cco:ont00001950 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001950 ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is third cousin of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001951 +cco:ont00001951 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000023 ; + rdfs:range obo:BFO_0000023 ; + rdfs:label "has subordinate role"@en ; + skos:definition "For all x,y,t: x has subordinate role y at t iff: x is an instance of Role at time t, and y is an instance of Role at time t, and there is some z such that x is realized by z and z is an instance of Process which creates, modifies, transfers, or eliminates some u such that u is a Process Regulation at time t, and u is addressed to the bearer of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001952 +cco:ont00001952 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001818 ; + rdfs:label "is brother-in-law of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001953 +cco:ont00001953 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001995 ; + rdfs:label "has parent"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001954 +cco:ont00001954 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000196 ; + rdfs:domain cco:ont00001017 ; + rdfs:range cco:ont00001379 ; + rdfs:label "has capability"@en ; + skos:definition "x has_capability y iff x is an instance of Agent and y is an instance of Agent Capability, such that x bearer of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001955 +cco:ont00001955 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "is aunt of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001956 +cco:ont00001956 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001836 ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range obo:BFO_0000016 ; + rdfs:label "aggregate has disposition"@en ; + skos:definition "x aggregate_has_disposition y iff x is an instance of Object Aggregate and y is an instance of Disposition, such that x aggregate_bearer_of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001957 +cco:ont00001957 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001804 ; + rdfs:label "is husband of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001958 +cco:ont00001958 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001789 ; + rdfs:label "has maternal aunt"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001959 +cco:ont00001959 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001970 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "inhibits"@en ; + skos:definition "x inhibits y iff x and y are non-identical Processes, d is a Decrease of Realizable Entity, and x is_cause_of d, and r is a Realizable Entity, and d has_participant r, and r realized_in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001960 +cco:ont00001960 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001840 ; + rdfs:label "has maternal grandmother"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001961 +cco:ont00001961 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000084 ; + rdfs:domain cco:ont00000120 ; + rdfs:range cco:ont00000253 ; + rdfs:label "is measurement unit of"@en ; + skos:definition "x is_measurement_unit_of y iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001962 +cco:ont00001962 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001819 ; + rdfs:label "process started by"@en ; + skos:definition "x process_started_by y iff x and y are instances of processes, and x is caused_by y, and i is an instance of a temporal instant, and r is an instant of a temporal interval, and x has starting instance i, and y occurs on r, and r interval contains i."@en ; + skos:scopeNote "A process x is started by another process y when y causes x while y is still occurring."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001963 +cco:ont00001963 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001904 ; + rdfs:range cco:ont00001010 ; + rdfs:label "is measured by ordinal"@en ; + skos:definition "y is_measured_by_ordinal x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale ordered by rank."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001964 +cco:ont00001964 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001904 ; + rdfs:range cco:ont00001364 ; + rdfs:label "is measured by interval"@en ; + skos:definition "y is_measured_by_interval x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001965 +cco:ont00001965 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001904 ; + owl:inverseOf cco:ont00001983 ; + rdfs:range cco:ont00001022 ; + rdfs:label "is measured by ratio"@en ; + skos:definition "y is_measured_by_ratio x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001966 +cco:ont00001966 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001982 ; + rdfs:domain cco:ont00001163 ; + rdfs:comment "This object property, as well as all of its children are typified as functional properties. This means that for instances x, y, and z if x is a measurement of y and x is a measurement of z, then y = z."@en ; + rdfs:label "is a measurement of"@en ; + skos:definition "x is_a_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001967 +cco:ont00001967 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001969 ; + rdfs:label "is nephew of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001968 +cco:ont00001968 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "is descendent of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001969 +cco:ont00001969 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "has nephew"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001970 +cco:ont00001970 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "inhibited by"@en ; + skos:definition "y inhibited_by x iff x and y are non-identical Processes, d is a Decrease of Realizable Entity, and x is_cause_of d, and r is a Realizable Entity, and d has_participant r, and r realized_in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001971 +cco:ont00001971 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval contained by"@en ; + skos:definition "A Temporal Interval INT1 is contained by some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, inst2 is before or identical to inst4, and it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001972 +cco:ont00001972 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001776 ; + rdfs:label "has paternal grandfather"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001973 +cco:ont00001973 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001776 ; + rdfs:label "has maternal grandfather"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001974 +cco:ont00001974 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001942 ; + rdfs:domain cco:ont00001324 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "requires"@en ; + skos:definition "x requires y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that some y must occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001975 +cco:ont00001975 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001975 ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is half-sibling of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001976 +cco:ont00001976 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001920 ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00001175 ; + rdfs:label "uses language"@en ; + skos:definition "x uses_language y iff x is an instance of an Information Bearing Entity and y is an instance of a Language such that the literal value of x is a string that is encoded according to the syntax of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001977 +cco:ont00001977 rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( cco:ont00001017 + cco:ont00001180 + cco:ont00001262 + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( cco:ont00001017 + cco:ont00001180 + cco:ont00001262 + ) + ] ; + rdfs:label "has affiliate"@en ; + skos:definition "x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001978 +cco:ont00001978 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + rdfs:domain cco:ont00001017 ; + rdfs:label "receives"@en ; + skos:definition "x receives y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the recipient and decoder of the InformationContentEntity intended for communication in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001979 +cco:ont00001979 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001996 ; + rdfs:label "is step-sister of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001980 +cco:ont00001980 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001808 ; + owl:propertyChainAxiom ( obo:BFO_0000178 + cco:ont00001982 + ) ; + rdfs:label "describes condition"@en ; + skos:definition "p describes_condition c iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001981 +cco:ont00001981 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001850 ; + rdfs:label "has grandson"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001982 +cco:ont00001982 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001808 ; + rdfs:domain cco:ont00000853 ; + rdfs:comment "It is possible that this relation should be a functional property, that is for all x, y, z if x describes y and x describes z then y = z. For example, if a financial report x describes the quarterly results of a company y and that same financial report describes the quarterly results of a company z, then it should be inferred that companies y and z are the same. We refrained from classifying the relation as a functional property on the concern that descriptions are multifaceted and so consequently it may be that the same report would contain descriptions of multiple entities."@en ; + rdfs:label "describes"@en ; + skos:definition "x describes y iff x is an instance of Information Content Entity, and y is an instance of Entity, such that x is about the characteristics by which y can be recognized or visualized."@en ; + skos:example "the content of a newspaper article describes some current event" , + "the content of a visitor's log describes some facility visit" , + "the content of an accident report describes some accident" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001983 +cco:ont00001983 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001966 ; + rdfs:domain cco:ont00001022 ; + rdfs:label "is a ratio measurement of"@en ; + skos:definition "x is_a_ratio_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001984 +cco:ont00001984 rdf:type owl:ObjectProperty ; + rdfs:domain cco:ont00001017 ; + rdfs:range obo:BFO_0000015 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "has interest in"@en ; + skos:definition "A relation between an entity and some process where the entity has an interest in that process."@en ; + skos:editorialNote "This term is meant to be weakly normative. The only sense in which the process is of positive normative value is that it's prescribed by the entity, or historically of evolutionary benefit to the entity's ancestors, or facilitates a process the entity has an interest in for the prior two reasons. The process an entity has an interest could in many or all ways be harmful to the entity."@en ; + skos:prefLabel "has interest in"@en ; + skos:scopeNote "There are four conditions in which an entity has an interest in some process. 1) Biological Condition: If a part (including improper part) of an organism has a function, then that organism has an interest in the realization of that function. 2) Artifactual Condition: If a part (including improper part) of an artifact has a function, then some agent or group of agents, at some time, has an interest in the realization of that function. 3) Prescription Condition: If an agent or group of agents has a plan, then it has an interest in the realization of all the processes and process-combinations prescribed by that plan. 4) Facilitation Condition: If (a) x has an interest in the realization of a disposition y, and (b) the realization of a disposition z facilitates the realization of disposition y, then (c) x has an interest in the realization of disposition z, and by 'facilitates' we mean that the occurrence of a process w, which realizes realization of z is either (1) required for y, to realize or (2) would contribute positively to the grade of, y's realization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001985 +cco:ont00001985 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001995 ; + rdfs:label "is father of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001986 +cco:ont00001986 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000002 ; + rdfs:label "has output"@en ; + skos:definition "y has_output x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=IPO_model&oldid=1024398398"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001987 +cco:ont00001987 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001995 ; + rdfs:label "has daughter"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001988 +cco:ont00001988 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:label "is uncle of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001989 +cco:ont00001989 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001855 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "has nontangential part"@en ; + skos:definition "x has_nontangential_part y iff x and y are instances of Immaterial Entity, and x has_spatial_part y, such that there does not exist another instance of an Immaterial Entity which externally connects with both x and y."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001990 +cco:ont00001990 rdf:type owl:ObjectProperty , + owl:TransitiveProperty ; + rdfs:domain obo:BFO_0000148 ; + rdfs:range obo:BFO_0000148 ; + rdfs:label "instant is before"@en ; + skos:definition "A temporal instant t1 (a instance of a zero-dimensional temporal region) is before another temporal instant t2 iff there exists some instance of a temporal interval ti1 such that t1 is the starting instant of ti1 and t2 is the ending instant of ti1."@en ; + skos:scopeNote "'instant is before' is a primitive relationship. Informally, a temporal instant t1 is before some temporal instant t2 if and only if t1 precedes t2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001991 +cco:ont00001991 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf owl:topObjectProperty ; + rdfs:domain obo:BFO_0000030 ; + rdfs:range obo:BFO_0000030 ; + rdfs:label "is made of"@en ; + skos:definition "An object o is made of an object m when m is the material that o consists of and that material does not undergo a change of kind during the creation of o"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001992 +cco:ont00001992 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000023 ; + rdfs:range cco:ont00001180 ; + rdfs:label "has organizational context"@en ; + skos:definition "x has_organizational_context y iff y is an instance of an Organization and x is an instance of a Role and z is an instance of a Person, such that z's affiliation with y is a prerequisite for z bearing x or y ascribes x to the bearer of x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001993 +cco:ont00001993 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + rdfs:domain cco:ont00001017 ; + rdfs:label "sends"@en ; + skos:definition "x sends y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001994 +cco:ont00001994 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001955 ; + rdfs:label "is paternal aunt of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001995 +cco:ont00001995 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + rdfs:domain cco:ont00001262 ; + rdfs:range cco:ont00001262 ; + rdfs:label "is parent of"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001996 +cco:ont00001996 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001865 ; + owl:inverseOf cco:ont00001996 ; + rdfs:label "is step-sibling of"@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001997 +cco:ont00001997 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000084 ; + rdfs:domain cco:ont00000398 ; + rdfs:range cco:ont00000253 ; + rdfs:label "is reference system of"@en ; + skos:definition "x is_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001998 +cco:ont00001998 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001920 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range cco:ont00001324 ; + rdfs:label "is permitted by"@en ; + skos:definition "y is_permitted_by x at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y may occur."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Data properties +################################################################# + +### http://www.opengis.net/ont/geosparql#asWKT + rdf:type owl:DatatypeProperty ; + rdfs:comment "ISO 19162:2015"@en ; + rdfs:label "as WKT"@en ; + skos:definition "A Data Property that has as its range a string formated according to the Well-known text standardization for geometric objects."@en ; + skos:example "Polygon ((10 10, 10 20, 20 20, 20 15, 10 10))" ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001763 +cco:ont00001763 rdf:type owl:DatatypeProperty ; + rdfs:comment "Altitude values typically use kilometers as the Unit of Measurement."@en ; + rdfs:label "has altitude value"@en ; + skos:scopeNote "This data property can be used along with has_latitude_value and has_longitude_value to connect three-dimensional spatial data to a single Information Bearing Entity to specify the location of an entity in a Geospatial Region."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001764 +cco:ont00001764 rdf:type owl:DatatypeProperty ; + rdfs:range xsd:decimal ; + rdfs:label "has longitude value"@en ; + skos:definition "A Data Property that has as its range the longitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001765 +cco:ont00001765 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:label "has text value"@en ; + skos:definition "A data property that has as its range a string value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001766 +cco:ont00001766 rdf:type owl:DatatypeProperty ; + rdfs:range xsd:decimal ; + rdfs:label "has latitude value"@en ; + skos:definition "A Data Property that has as its range the latitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001767 +cco:ont00001767 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:dateTime ; + rdfs:label "has datetime value"@en ; + skos:definition "A data property that has as its value a datetime value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001768 +cco:ont00001768 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:anyURI ; + rdfs:label "has URI value"@en ; + skos:definition "A data property that has as its range a URI value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001769 +cco:ont00001769 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:decimal ; + rdfs:label "has decimal value"@en ; + skos:definition "A data property that has as its range a decimal value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001770 +cco:ont00001770 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:double ; + rdfs:label "has double value"@en ; + skos:definition "A data property that has as its range a double value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001771 +cco:ont00001771 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:label "has date value"@en ; + skos:definition "A data property that has as its range a date value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001772 +cco:ont00001772 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:boolean ; + rdfs:label "has boolean value"@en ; + skos:definition "A data property that has as its range a boolean value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001773 +cco:ont00001773 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:integer ; + rdfs:label "has integer value"@en ; + skos:definition "A data property that has as its range an integer value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 +obo:BFO_0000001 rdf:type owl:Class ; + "001-BFO" ; + rdfs:label "entity"@en ; + skos:definition "(Elucidation) An entity is anything that exists or has existed or will exist"@en ; + skos:example "Julius Caesar; the Second World War; your body mass index; Verdi's Requiem"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000002 +obo:BFO_0000002 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000001 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:allValuesFrom obo:BFO_0000002 + ] ; + owl:disjointWith obo:BFO_0000003 ; + "008-BFO" ; + rdfs:label "continuant"@en ; + skos:definition "(Elucidation) A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity"@en ; + skos:example "A human being; a tennis ball; a cave; a region of space; someone's temperature"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000003 +obo:BFO_0000003 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000001 ; + "077-BFO" ; + rdfs:label "occurrent"@en ; + skos:definition "(Elucidation) An occurrent is an entity that unfolds itself in time or it is the start or end of such an entity or it is a temporal or spatiotemporal region"@en ; + skos:example "As for process, history, process boundary, spatiotemporal region, zero-dimensional temporal region, one-dimensional temporal region, temporal interval, temporal instant."@en . + + +### http://purl.obolibrary.org/obo/BFO_0000004 +obo:BFO_0000004 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000002 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:allValuesFrom obo:BFO_0000004 + ] ; + "017-BFO" ; + rdfs:label "independent continuant"@en ; + skos:definition "b is an independent continuant =Def b is a continuant & there is no c such that b specifically depends on c or b generically depends on c"@en ; + skos:example "An atom; a molecule; an organism; a heart; a chair; the bottom right portion of a human torso; a leg; the interior of your mouth; a spatial region; an orchestra"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000006 +obo:BFO_0000006 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000141 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:allValuesFrom obo:BFO_0000006 + ] ; + "035-BFO" ; + rdfs:label "spatial region"@en ; + skos:definition "(Elucidation) A spatial region is a continuant entity that is a continuant part of the spatial projection of a portion of spacetime at a given time"@en ; + skos:example "As for zero-dimensional spatial region, one-dimensional spatial region, two-dimensional spatial region, three-dimensional spatial region"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000008 +obo:BFO_0000008 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000003 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000132 ; + owl:allValuesFrom obo:BFO_0000008 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000139 ; + owl:allValuesFrom obo:BFO_0000008 + ] ; + "100-BFO" ; + rdfs:label "temporal region"@en ; + skos:definition "(Elucidation) A temporal region is an occurrent over which processes can unfold"@en ; + skos:example "As for zero-dimensional temporal region and one-dimensional temporal region"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000009 +obo:BFO_0000009 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000006 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000009 + obo:BFO_0000018 + obo:BFO_0000026 + ) + ] + ] ; + "039-BFO" ; + rdfs:label "two-dimensional spatial region"@en ; + skos:definition "(Elucidation) A two-dimensional spatial region is a spatial region that is a whole consisting of a surface together with zero or more surfaces which may have spatial regions of lower dimension as parts"@en ; + skos:example "The surface of a sphere-shaped part of space; an infinitely thin plane in space"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000011 +obo:BFO_0000011 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000003 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000132 ; + owl:allValuesFrom obo:BFO_0000011 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000139 ; + owl:allValuesFrom obo:BFO_0000011 + ] ; + "095-BFO" ; + rdfs:label "spatiotemporal region"@en ; + skos:definition "(Elucidation) A spatiotemporal region is an occurrent that is an occurrent part of spacetime"@en ; + skos:example "The spatiotemporal region occupied by the development of a cancer tumour; the spatiotemporal region occupied by an orbiting satellite"@en ; + skos:scopeNote "'Spacetime' here refers to the maximal instance of the universal spatiotemporal region."@en . + + +### http://purl.obolibrary.org/obo/BFO_0000015 +obo:BFO_0000015 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000003 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000117 ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000035 + ) + ] + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000132 ; + owl:allValuesFrom obo:BFO_0000015 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000139 ; + owl:allValuesFrom obo:BFO_0000015 + ] ; + "083-BFO" ; + rdfs:label "process"@en ; + skos:altLabel "event"@en ; + skos:definition "(Elucidation) p is a process means p is an occurrent that has some temporal proper part and for some time t, p has some material entity as participant"@en ; + skos:example "An act of selling; the life of an organism; a process of sleeping; a process of cell-division; a beating of the heart; a process of meiosis; the taxiing of an aircraft; the programming of a computer"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000016 +obo:BFO_0000016 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000017 ; + owl:disjointWith obo:BFO_0000023 ; + "062-BFO" ; + rdfs:label "disposition"@en ; + skos:altLabel "internally-grounded realizable entity"@en ; + skos:definition "(Elucidation) A disposition b is a realizable entity such that if b ceases to exist then its bearer is physically changed & b's realization occurs when and because this bearer is in some special physical circumstances & this realization occurs in virtue of the bearer's physical make-up"@en ; + skos:example "An atom of element X has the disposition to decay to an atom of element Y; the cell wall is disposed to transport cellular material through endocytosis and exocytosis; certain people have a predisposition to colon cancer; children are innately disposed to categorize objects in certain ways"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000017 +obo:BFO_0000017 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000020 ; + owl:disjointWith obo:BFO_0000019 ; + "058-BFO" ; + rdfs:label "realizable entity"@en ; + skos:definition "(Elucidation) A realizable entity is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region & which is of a type some instances of which are realized in processes of a correlated type"@en ; + skos:example "The role of being a doctor; the role of this boundary to delineate where Utah and Colorado meet; the function of your reproductive organs; the disposition of your blood to coagulate; the disposition of this piece of metal to conduct electricity"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000018 +obo:BFO_0000018 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000006 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom obo:BFO_0000018 + ] ; + "037-BFO" ; + rdfs:label "zero-dimensional spatial region"@en ; + skos:definition "(Elucidation) A zero-dimensional spatial region is one or a collection of more than one spatially disjoint points in space"@en ; + skos:example "The spatial region occupied at some time instant by the North Pole"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000019 +obo:BFO_0000019 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000020 ; + "055-BFO" ; + rdfs:label "quality"@en ; + skos:definition "(Elucidation) A quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized"@en ; + skos:example "The colour of a tomato; the ambient temperature of this portion of air; the length of the circumference of your waist; the shape of your nose; the shape of your nostril; the mass of this piece of gold"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000020 +obo:BFO_0000020 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000002 ; + "050-BFO" ; + rdfs:label "specifically dependent continuant"@en ; + skos:definition "b is a specifically dependent continuant =Def b is a continuant & there is some independent continuant c which is not a spatial region & which is such that b specifically depends on c"@en ; + skos:example "(with multiple bearers) John's love for Mary; the ownership relation between John and this statue; the relation of authority between John and his subordinates"@en , + "(with one bearer) The mass of this tomato; the pink colour of a medium rare piece of grilled filet mignon at its centre; the smell of this portion of mozzarella; the disposition of this fish to decay; the role of being a doctor; the function of this heart to pump blood; the shape of this hole"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000023 +obo:BFO_0000023 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000017 ; + "061-BFO" ; + rdfs:label "role"@en ; + skos:altLabel "externally-grounded realizable entity"@en ; + skos:definition "(Elucidation) A role b is a realizable entity such that b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be & b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed"@en ; + skos:example "The priest role; the student role; the role of subject in a clinical trial; the role of a stone in marking a property boundary; the role of a boundary to demarcate two neighbouring administrative territories; the role of a building in serving as a military target"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000024 +obo:BFO_0000024 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + "027-BFO" ; + rdfs:label "fiat object part"@en ; + skos:definition "(Elucidation) A fiat object part b is a material entity & such that if b exists then it is continuant part of some object c & demarcated from the remainder of c by one or more fiat surfaces"@en ; + skos:example "The upper and lower lobes of the left lung; the dorsal and ventral surfaces of the body; the Western hemisphere of the Earth; the FMA:regional parts of an intact human body"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000026 +obo:BFO_0000026 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000006 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000018 + obo:BFO_0000026 + ) + ] + ] ; + "038-BFO" ; + rdfs:label "one-dimensional spatial region"@en ; + skos:definition "(Elucidation) A one-dimensional spatial region is a whole consisting of a line together with zero or more lines which may have points as parts"@en ; + skos:example "An edge of a cube-shaped portion of space; a line connecting two points; two parallel lines extended in space"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000027 +obo:BFO_0000027 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + "025-BFO" ; + rdfs:label "object aggregate"@en ; + skos:definition "(Elucidation) An object aggregate is a material entity consisting exactly of a plurality (≥1) of objects as member parts which together form a unit"@en ; + skos:example "The aggregate of the musicians in a symphony orchestra and their instruments; the aggregate of bearings in a constant velocity axle joint; the nitrogen atoms in the atmosphere; a collection of cells in a blood biobank"@en ; + skos:scopeNote "'Exactly' means that there are no parts of the object aggregate other than its member parts." , + "The unit can, at certain times, consist of exactly one object, for example, when a wolf litter loses all but one of its pups, but it must at some time have a plurality of member parts." . + + +### http://purl.obolibrary.org/obo/BFO_0000028 +obo:BFO_0000028 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000006 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom obo:BFO_0000006 + ] ; + "040-BFO" ; + rdfs:label "three-dimensional spatial region"@en ; + skos:definition "(Elucidation) A three-dimensional spatial region is a whole consisting of a spatial volume together with zero or more spatial volumes which may have spatial regions of lower dimension as parts"@en ; + skos:example "A cube-shaped region of space; a sphere-shaped region of space; the region of space occupied by all and only the planets in the solar system at some point in time"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000029 +obo:BFO_0000029 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000141 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000029 + obo:BFO_0000040 + ) + ] + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000029 + obo:BFO_0000140 + ) + ] + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000210 ; + owl:allValuesFrom obo:BFO_0000028 + ] ; + "034-BFO" ; + rdfs:label "site"@en ; + skos:definition "(Elucidation) A site is a three-dimensional immaterial entity whose boundaries either (partially or wholly) coincide with the boundaries of one or more material entities or have locations determined in relation to some material entity"@en ; + skos:example "A hole in a portion of cheese; a rabbit hole; the Grand Canyon; the Piazza San Marco; the kangaroo-joey-containing hole of a kangaroo pouch; your left nostril (a fiat part - the opening - of your left nasal cavity); the lumen of your gut; the hold of a ship; the interior of the trunk of your car; hole in an engineered floor joist"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000030 +obo:BFO_0000030 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + "024-BFO" ; + rdfs:label "object"@en ; + skos:definition "(Elucidation) An object is a material entity which manifests causal unity & is of a type instances of which are maximal relative to the sort of causal unity manifested"@en ; + skos:example "An organism; a fish tank; a planet; a laptop; a valve; a block of marble; an ice cube"@en ; + skos:scopeNote "A description of three primary sorts of causal unity is provided in Basic Formal Ontology 2.0. Specification and User Guide"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000031 +obo:BFO_0000031 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000002 ; + "074-BFO" ; + rdfs:label "generically dependent continuant"@en ; + skos:altLabel "g-dependent continuant"@en ; + skos:definition "(Elucidation) A generically dependent continuant is an entity that exists in virtue of the fact that there is at least one of what may be multiple copies which is the content or the pattern that multiple copies would share"@en ; + skos:example "The pdf file on your laptop; the pdf file that is a copy thereof on my laptop; the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule; the content that is shared by a string of dots and dashes written on a page and the transmitted Morse code signal; the content of a sentence; an engineering blueprint"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000034 +obo:BFO_0000034 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + "064-BFO" ; + rdfs:label "function"@en ; + skos:definition "(Elucidation) A function is a disposition that exists in virtue of its bearer's physical make-up & this physical make-up is something the bearer possesses because it came into being either through evolution (in the case of natural biological entities) or through intentional design (in the case of artefacts) in order to realize processes of a certain sort"@en ; + skos:example "The function of a hammer to drive in nails; the function of a heart pacemaker to regulate the beating of a heart through electricity"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000035 +obo:BFO_0000035 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000003 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000117 ; + owl:allValuesFrom obo:BFO_0000035 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000121 ; + owl:allValuesFrom obo:BFO_0000035 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000132 ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000035 + ) + ] + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000139 ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000035 + ) + ] + ] ; + "084-BFO" ; + rdfs:label "process boundary"@en ; + skos:definition "p is a process boundary =Def p is a temporal part of a process & p has no proper temporal parts"@en ; + skos:example "The boundary between the 2nd and 3rd year of your life"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000038 +obo:BFO_0000038 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000008 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000121 ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000038 + obo:BFO_0000148 + ) + ] + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000139 ; + owl:allValuesFrom obo:BFO_0000038 + ] ; + owl:disjointWith obo:BFO_0000148 ; + "103-BFO" ; + rdfs:label "one-dimensional temporal region"@en ; + skos:definition "(Elucidation) A one-dimensional temporal region is a temporal region that is a whole that has a temporal interval and zero or more temporal intervals and temporal instants as parts"@en ; + skos:example "The temporal region during which a process occurs"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000040 +obo:BFO_0000040 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000004 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:allValuesFrom obo:BFO_0000040 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000029 + obo:BFO_0000040 + obo:BFO_0000140 + ) + ] + ] ; + owl:disjointWith obo:BFO_0000141 ; + "019-BFO" ; + rdfs:label "material entity"@en ; + skos:definition "(Elucidation) A material entity is an independent continuant has some portion of matter as continuant part"@en ; + skos:example "A human being; the undetached arm of a human being; an aggregate of human beings"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000140 +obo:BFO_0000140 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000141 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000124 ; + owl:allValuesFrom obo:BFO_0000140 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom obo:BFO_0000140 + ] ; + "029-BFO" ; + rdfs:label "continuant fiat boundary"@en ; + skos:definition "(Elucidation) A continuant fiat boundary b is an immaterial entity that is of zero, one or two dimensions & such that there is no time t when b has a spatial region as continuant part & whose location is determined in relation to some material entity"@en ; + skos:example "As for fiat point, fiat line, fiat surface"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000141 +obo:BFO_0000141 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000004 ; + "028-BFO" ; + rdfs:label "immaterial entity"@en ; + skos:definition "b is an immaterial entity =Def b is an independent continuant which is such that there is no time t when it has a material entity as continuant part"@en ; + skos:example "As for fiat point, fiat line, fiat surface, site"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000142 +obo:BFO_0000142 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000140 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000142 + obo:BFO_0000147 + ) + ] + ] ; + "032-BFO" ; + rdfs:label "fiat line"@en ; + skos:definition "(Elucidation) A fiat line is a one-dimensional continuant fiat boundary that is continuous"@en ; + skos:example "The Equator; all geopolitical boundaries; all lines of latitude and longitude; the median sulcus of your tongue; the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000144 +obo:BFO_0000144 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000003 ; + rdfs:label "Process Profile"@en ; + skos:definition "An occurrent that is an occurrent part of some process by virtue of the rate, or pattern, or amplitude of change in an attribute of one or more participants of said process."@en ; + skos:example "On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels; One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.; The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."@en ; + skos:scopeNote "b process_profile_of c holds when b proper_occurrent_part_of c& there is some proper_occurrent_part d of c which has no parts in common with b & is mutually dependent on b& is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### http://purl.obolibrary.org/obo/BFO_0000145 +obo:BFO_0000145 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + "057-BFO" ; + rdfs:label "relational quality"@en ; + skos:definition "b is a relational quality =Def b is a quality & there exists c and d such that c and d are not identical & b specifically depends on c & b specifically depends on d"@en ; + skos:example "A marriage bond; an instance of love; an obligation between one person and another"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000146 +obo:BFO_0000146 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000140 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom obo:BFO_0000140 + ] ; + "033-BFO" ; + rdfs:label "fiat surface"@en ; + skos:definition "(Elucidation) A fiat surface is a two-dimensional continuant fiat boundary that is self-connected"@en ; + skos:example "The surface of the Earth; the plane separating the smoking from the non-smoking zone in a restaurant"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000147 +obo:BFO_0000147 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000140 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom obo:BFO_0000147 + ] ; + "031-BFO" ; + rdfs:label "fiat point"@en ; + skos:definition "(Elucidation) A fiat point is a zero-dimensional continuant fiat boundary that consists of a single point"@en ; + skos:example "The geographic North Pole; the quadripoint where the boundaries of Colorado, Utah, New Mexico and Arizona meet; the point of origin of some spatial coordinate system"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000148 +obo:BFO_0000148 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000008 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000121 ; + owl:allValuesFrom obo:BFO_0000148 + ] ; + "102-BFO" ; + rdfs:label "zero-dimensional temporal region"@en ; + skos:definition "(Elucidation) A zero-dimensional temporal region is a temporal region that is a whole consisting of one or more separated temporal instants as parts"@en ; + skos:example "A temporal region that is occupied by a process boundary; the moment at which a finger is detached in an industrial accident"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000182 +obo:BFO_0000182 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + "138-BFO" ; + rdfs:label "history"@en ; + skos:definition "(Elucidation) A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by the material part of a material entity"@en ; + skos:example "The life of an organism from the beginning to the end of its existence"@en . + + +### http://purl.obolibrary.org/obo/BFO_0000202 +obo:BFO_0000202 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 ; + "155-BFO" ; + rdfs:label "temporal interval"@en ; + skos:definition "(Elucidation) A temporal interval is a one-dimensional temporal region that is continuous, thus without gaps or breaks"@en ; + skos:example "The year 2018."@en ; + skos:scopeNote "A one-dimensional temporal region can include as parts not only temporal intervals but also temporal instants separated from other parts by gaps."@en . + + +### http://purl.obolibrary.org/obo/BFO_0000203 +obo:BFO_0000203 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000148 ; + "209-BFO" ; + rdfs:label "temporal instant"@en ; + skos:definition "(Elucidation) A temporal instant is a zero-dimensional temporal region that has no proper temporal part"@en ; + skos:example "The millennium"@en . + + +### https://www.commoncoreontologies.org/ont00000001 +cco:ont00000001 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000804 ; + rdfs:label "Deflecting Prism"@en ; + skos:definition "A Prism designed to deflect a beam of light entering the Prism by a fixed angle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000002 +cco:ont00000002 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Cooling Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which the thermal energy of a system decreases."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000003 +cco:ont00000003 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000686 ; + owl:disjointWith cco:ont00000649 ; + rdfs:label "Designative Name"@en ; + skos:altLabel "Name"@en ; + skos:definition "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified cultural or social namespace and which is typically a word or phrase in a natural language that has an accepted cultural or social significance."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000004 +cco:ont00000004 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Change"@en ; + skos:definition "A Process in which some independent continuant endures and 1) one or more of the dependent entities it bears increase or decrease in intensity, 2) the entity begins to bear some dependent entity or 3) the entity ceases to bear some dependent entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000005 +cco:ont00000005 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Act"@en ; + skos:definition "A Process in which at least one Agent plays a causative role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000006 +cco:ont00000006 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Upper Midrange Frequency"@en ; + skos:definition "A Sonic Frequency that is between 2 and 4 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000007 +cco:ont00000007 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Natural Process"@en ; + skos:definition "A Process existing in or produced by nature; rather than by the intent of human beings."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/natural+process" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000008 +cco:ont00000008 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001047 ; + rdfs:label "Sound Frequency"@en ; + skos:definition "A Frequency that is the rate of Oscillations per second of a Sound Wave."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000009 +cco:ont00000009 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Mass Density"@en ; + skos:altLabel "Density"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of that bearer's mass per unit volume."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000010 +cco:ont00000010 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Incorporated Organization"@en ; + skos:altLabel "Corporation"@en ; + skos:definition "An Organization formed by an Act of Incorporation that consists of an association of individuals, created by law or under authority of law, having a continuous existence independent of the existences of its members and owners, and having powers and liabilities distinct from those of its members and owners."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/corporation" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000011 +cco:ont00000011 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000135 ; + rdfs:label "Nominal Stasis"@en ; + skos:altLabel "Nominal"@en ; + skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has a level of intensity or functionality that falls within the designed, expected, or acceptable range such that the Independent Continuant is of normal value, usefulness, or functionality."@en ; + cco:ont00001754 "https://en.oxforddictionaries.com/definition/nominal (Definition 6)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000012 +cco:ont00000012 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000781 ; + rdfs:label "Propulsion Control System"@en ; + skos:definition "A Control System that consists of control devices, displays, indicators, or modules designed to control a Propulsion System."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000013 +cco:ont00000013 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000554 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000101 ; + owl:someValuesFrom obo:BFO_0000031 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Generically Dependent Continuant"@en ; + skos:definition "A Gain of Dependent Continuant wherein some Independent Continuant becomes the carrier of some Generically Dependent Continuant."@en ; + skos:example "A Person forms a Plan, A Person is initiated into a Religion, A photgraphic image is produced." ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000014 +cco:ont00000014 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000241 ; + rdfs:label "Aztec Code"@en ; + skos:definition "A Two-Dimensional Barcode that is used by the transportation industry to scan tickets."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000015 +cco:ont00000015 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001104 ; + rdfs:label "Shotgun"@en ; + skos:definition "A Long Gun that fires packets of shot, a single slug, a sabot, or a specialty round (such as tear gas, bolo shell, or a breaching round) over shorter ranges than that of Rifles and with less accuracy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Shotgun&oldid=1062571691"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000016 +cco:ont00000016 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001286 ; + rdfs:label "Triangular Waveform"@en ; + skos:definition "A Waveform that is characterized by a triangular shape due to the continuous linear zig-zag transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000017 +cco:ont00000017 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Minor Axis"@en ; + skos:definition "A One-Dimensional Spatial Region that is the longest line segment perpendicular to the Major Axis that connects two points on the edge of an Ellipse."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Semi-major_and_semi-minor_axes&oldid=1047911304"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000018 +cco:ont00000018 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001346 ; + rdfs:label "Title Document"@en ; + skos:definition "A Legal Instrument that is designed as evidence of ownership."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Title_(property)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000019 +cco:ont00000019 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000961 ; + rdfs:label "Power Inverting Artifact Function"@en ; + skos:definition "A Current Conversion Artifact Function that is realized by processes in which some Artifact is used to convert direct current (DC) to alternating current (AC)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000020 +cco:ont00000020 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Container"@en ; + skos:definition "A Material Artifact that is designed to contain (wholly or partially) some material entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000021 +cco:ont00000021 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Sensor Platform"@en ; + skos:definition "A Material Artifact that is designed to support, and in some cases transport, a Sensor during its deployment and functioning."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000022 +cco:ont00000022 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000422 ; + rdfs:label "Radio Communication Reception Artifact Function"@en ; + skos:definition "A Communication Reception Artifact Function that is realized during events in which an Artifact receives information transmitted from another Artifact, where the transmission of information occurs using radio waves."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000023 +cco:ont00000023 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Sensor Deployment Artifact Function"@en ; + skos:definition "An Artifact Function that inheres in Artifacts that are designed to support or convey one or more Sensors while the Sensors are realizing their own Artifact Functions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000024 +cco:ont00000024 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000133 ; + rdfs:label "Act of Advising"@en ; + skos:definition "An Act of Directive Communication performed by providing advice or counsel to another agent."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/advising" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000025 +cco:ont00000025 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001278 ; + rdfs:label "Electronic Stock"@en ; + skos:definition "Stock that consists of Bytes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000026 +cco:ont00000026 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Hair Color"@en ; + skos:definition "A Quality inhering in a portion of Hair by virtue of its color."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000027 +cco:ont00000027 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Mailing"@en ; + skos:altLabel "Act of Mailing"@en ; + skos:definition "An Act of Communication by Media in which information and tangible objects, usually written documents, are delivered to destinations around the world."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000028 +cco:ont00000028 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000804 ; + rdfs:label "Dispersive Prism"@en ; + skos:definition "A Prism designed to break up a beam of light entering the Prism into its constituent spectral colors by leveraging the refractive index of light based on its Frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000029 +cco:ont00000029 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000745 ; + rdfs:label "Median Point Estimate Information Content Entity"@en ; + skos:altLabel "Median"@en ; + skos:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to either the middle value or the average of the two values which separate the set into two equally populated upper and lower sets."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000030 +cco:ont00000030 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000288 ; + rdfs:label "Nuclear Reactor"@en ; + skos:definition "A Power Source that is designed to initiate and control a self-sustained nuclear chain reaction to produce power in the form of heat, which can be transferred to a working fluid for further conversion to mechanical or electrical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nuclear_reactor&oldid=1063370273"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000031 +cco:ont00000031 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001081 ; + rdfs:label "Atmospheric Feature"@en ; + skos:definition "A Geographic Feature that is part of the atmosphere (including the atmosphere itself as a non-proper part) having a relatively stable lifecycle and which has a location that can be distinguished from the surrounding portion of the atmosphere."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000032 +cco:ont00000032 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000052 ; + rdfs:label "Church"@en ; + skos:definition "A Religious Facility that is designed for Christian worship and prayer."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Church_(building)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000033 +cco:ont00000033 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000854 ; + rdfs:label "Decrease of Role"@en ; + skos:definition "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Role that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000034 +cco:ont00000034 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000448 ; + rdfs:label "Conveyance Artifact Function"@en ; + skos:definition "A Motion Artifact Function that is realized in a process in which the bearer of the function conveys entities from one location to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000035 +cco:ont00000035 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000490 ; + rdfs:label "Soft X-ray Frequency"@en ; + skos:definition "An X-Ray Frequency that is between 30 petahertz and 3 exahertz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000036 +cco:ont00000036 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Waste Management Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of collecting transporting processing recycling or disposing and monitoring of waste materials."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000037 +cco:ont00000037 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Observation"@en ; + skos:definition "A Planned Act of acquiring information from a source via the use of one or more senses."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Observation&oldid=1062502087"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000038 +cco:ont00000038 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "System Role"@en ; + skos:definition "A Role that inheres in an entity in virtue of its parts or elements being arranged in such a way that they together exhibit behavior or meaning that they do not exhibit individually."@en ; + cco:ont00001754 "https://www.incose.org/about-systems-engineering/system-and-se-definition/general-system-definition"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000039 +cco:ont00000039 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000838 ; + rdfs:label "Portion of Solid Fuel"@en ; + skos:definition "A Portion of Fuel that is stored in a solid state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000040 +cco:ont00000040 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001102 ; + rdfs:label "Grocery Store"@en ; + skos:definition "A Commercial Facility that is designed to sell food."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Grocery_store&oldid=1060022873"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000041 +cco:ont00000041 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000410 ; + rdfs:label "Hostel"@en ; + skos:definition "A Residential Facility that is designed to temporarily lodge guests in a sociable environment for relatively low costs."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hostel&oldid=1057812930"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000042 +cco:ont00000042 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Semicircular"@en ; + skos:definition "A Shape quality inhering in a bearer in virtue of the bearer having the shape of half a circle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000043 +cco:ont00000043 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000593 ; + rdfs:label "Portion of Solid Propellant"@en ; + skos:definition "A Portion of Propellant that is stored in a solid state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000044 +cco:ont00000044 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00000404 + ] ; + rdfs:label "Eye Color"@en ; + skos:definition "A Quality inhering in an Eye by virtue of the color of the Eye's Iris."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000045 +cco:ont00000045 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Petroleum Depot"@en ; + skos:definition "A Storage Facility that is designed to store petroleum, oil, or lubricants."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000046 +cco:ont00000046 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000126 ; + rdfs:label "Province"@en ; + skos:definition "A First-Order Administrative Region that is part of a Country and delimits the authority of a magistrate who holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the Province."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Province&oldid=1062496131"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000047 +cco:ont00000047 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000598 ; + rdfs:comment "Flow Control Valves are often more complex than a simple Valve and typically include an Actuator that is capable of automatically adjusting the state of the valve in response to signals from a connected Sensor or Controller."@en ; + rdfs:label "Flow Control Valve"@en ; + skos:definition "A Valve that is designed to regulate the flow or Pressure of a fluid."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flow_control_valve&oldid=1013438085"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000048 +cco:ont00000048 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000499 ; + rdfs:label "Random Wire Antenna"@en ; + skos:definition "A Wire Antenna that consists of a long wire suspended above the ground with a length that does not bear a relation to the wavelength of the radio waves used and which is typically used as a receiving antenna on the long, medium, and short wave bands."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Random_wire_antenna&oldid=1058546356"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000049 +cco:ont00000049 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000475 ; + rdfs:label "Banknote"@en ; + skos:definition "A Portion of Cash that consists of a portable slips of paper or fabric designed to bear some specified Financial Value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000050 +cco:ont00000050 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Very High Frequency Communication Instrument"@en ; + skos:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some Very High Frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000051 +cco:ont00000051 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000908 ; + rdfs:comment "An Act of Construction typically involves the production of only one or a limited number of goods, such as in the construction of an airport or a community of condominiums."@en ; + rdfs:label "Act of Construction"@en ; + skos:definition "An Act of Artifact Processing wherein Artifacts are built on site as prescribed by some contract."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000052 +cco:ont00000052 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Religious Facility"@en ; + skos:definition "A Facility that is designed for worship and prayer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000053 +cco:ont00000053 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000618 ; + rdfs:label "Ground Motor Vehicle"@en ; + skos:definition "A Ground Vehicle that is designed to receive its motive power from an Engine and is not designed to travel on rails."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Motor_vehicle&oldid=1063627395"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000054 +cco:ont00000054 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000431 ; + rdfs:label "Stirling Engine"@en ; + skos:definition "An External Combusion Engine that is designed to compress and expand some working fluid at different temperatures, such that there is a net conversion of heat energy to mechanical work."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Stirling_engine&oldid=1061164490"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000055 +cco:ont00000055 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Healthcare Facility"@en ; + skos:definition "A Facility that is designed for the diagnosis, treatment, and prevention of disease."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Medicine&oldid=1062226814"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000056 +cco:ont00000056 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000210 ; + rdfs:label "Reaction Engine"@en ; + skos:altLabel "Reaction Motor"@en ; + skos:definition "An Engine that provides propulsion by expelling Reaction Mass."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reaction_engine&oldid=1046981784"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000057 +cco:ont00000057 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000907 ; + rdfs:label "Mobile Telephone"@en ; + skos:definition "A Telephone that is connected to a Telephone Network by radio waves."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mobile_phone&oldid=1061800841"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000058 +cco:ont00000058 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Scalp Hair"@en ; + skos:definition "A Bodily Component that consists of a portion of hair that grows on the scalp of a human or other animal."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000059 +cco:ont00000059 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000825 ; + rdfs:label "Telephone Line"@en ; + skos:altLabel "Telephone Circuit"@en ; + skos:definition "A Telecommunication Network Line that consists of a physical wire or other signaling medium that is designed to be part of a Telephone Network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000060 +cco:ont00000060 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000639 ; + rdfs:label "Open Pit Mine"@en ; + skos:definition "A Mine that is designed to support the extraction of materials from the ground directly without using tunnels."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Open-pit_mining&oldid=1059271938"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000061 +cco:ont00000061 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Flow"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the rate at which portions of a substance pass per unit of time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000062 +cco:ont00000062 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001100 ; + rdfs:label "Frequency Measurement Artifact Function"@en ; + skos:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Frequency of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000063 +cco:ont00000063 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00001058 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Hour Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Hours and spans at least one Hour."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000064 +cco:ont00000064 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Book"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity by means of ink, paper, parchment, or other materials fastened together to hinge at one side."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Book&oldid=1063132471"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000065 +cco:ont00000065 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000357 ; + rdfs:label "Act of Location Change"@en ; + skos:definition "An Act of Motion in which the location of some Object is changed by some Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000066 +cco:ont00000066 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Military Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes related to the armed services."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000067 +cco:ont00000067 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001328 ; + rdfs:comment "In traditional astronomical usage, civil time is mean solar time as calculated from midnight as the beginning of the Civil Day."@en , + "Note that Civil Time Reference System is more accurately represented as a Temporal Reference System that participates in an act of usage that is sanctioned by an appropriate civil authority. As such, it should be represented as a defined class."@en ; + rdfs:label "Civil Time Reference System"@en ; + skos:definition "A Temporal Reference System that is a statutory time scale as designated by civilian authorities to determine local time(s)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000068 +cco:ont00000068 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000028 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001855 ; + owl:someValuesFrom cco:ont00001348 + ] ; + rdfs:label "Three-Dimensional Path"@en ; + skos:definition "A Three-Dimensional Spatial Region that encompasses the spatial region through which some Object travels."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000069 +cco:ont00000069 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001298 ; + rdfs:label "Transcript"@en ; + skos:definition "A Document that is designed to bear some specific Information Content Entity that was originally recorded in a different medium."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transcript&oldid=1038510063"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000070 +cco:ont00000070 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000018 ; + rdfs:label "Ground Track Point"@en ; + skos:definition "A Zero-Dimensional Spatial Region that is an idealized point located on the surface of an Astronomical Body directly below an Object Track Point."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000071 +cco:ont00000071 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000460 ; + rdfs:label "Town"@en ; + skos:definition "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a Village but smaller than that of a City; is designated as a town based on a particular administrative, legal, or historical status; and which delimits a local Government that typically exercises less power than that of a City Government."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/town" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000072 +cco:ont00000072 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000224 ; + rdfs:label "Low Density Residential Area"@en ; + skos:definition "A Populated Place where houses are on lots of more than one acre."@en ; + cco:ont00001754 "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000073 +cco:ont00000073 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000399 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom obo:BFO_0000038 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000399 ; + rdfs:label "Temporal Interval Identifier"@en ; + skos:altLabel "One-Dimensional Temporal Region Identifier"@en ; + skos:definition "A Temporal Region Identifier that designates some Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000074 +cco:ont00000074 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Acceleration"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the rate at which objects change their velocities per unit of time."@en ; + skos:example "feet per second per second, kilometers per second per second" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000075 +cco:ont00000075 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000304 ; + rdfs:label "Optical Microscope"@en ; + skos:altLabel "Light Microscope"@en ; + skos:definition "A Microscope that is designed to use visible light and a system of Optical Lenses to produce a significantly enlarged image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Optical_microscope&oldid=1063131242"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000076 +cco:ont00000076 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000727 ; + rdfs:label "Wired Communication Artifact Function"@en ; + skos:definition "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of a (usually cylindrical) flexible strand or rod of metal."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000077 +cco:ont00000077 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000649 ; + owl:disjointWith cco:ont00000923 ; + rdfs:label "Code Identifier"@en ; + skos:altLabel "Code ID"@en , + "ID Code"@en , + "Identifier Code"@en ; + skos:definition "A Non-Name Identifier that consists of a string of characters that was created and assigned according to an encoding system such that metadata can be derived from the identifier."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000078 +cco:ont00000078 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000345 ; + rdfs:comment "Although the boundary between Act of Estimation and guessing is vague, estimation can be partially distinguished from guessing in that every Act of Estimation has as input some relevant information; whereas an act of guessing can occur sans information (or at least sans pertinent information). For example, if Mr. Green were asked how many blades of grass are in his lawn, he could simply choose a number (i.e. he could guess) or he could estimate the number by counting how many baldes of grass are in 1 square foot of his lawn, measuring the square footage of his lawn, and then multiplying these values to arrive at a number. Hence, many estimates may be loosely considered to be educated guesses."@en , + "Note that, while every Act of Measuring arguably involves some degree of estimation (for example, a measuring instrument rounding to the nearest ten-thousandth or an Agent reading an analog display), it would be a mistake to classify all Acts of Measuring as Acts of Estimation. This holds even for cases (e.g. census taking) in which sofisticated estimations are often more accurate than other means of measuring (e.g. enumeration)."@en ; + rdfs:label "Act of Estimation"@en ; + skos:altLabel "Act of Approximation"@en ; + skos:definition "An Act of Measuring that involves the comparison of a measurement of a similar Entity or of a portion of the Entity being estimated to produce an approximated measurement of the target Entity."@en ; + skos:example "measuring how much time a train will add to your commute by measuring how long it takes for 10 train cars to pass a given point and then combining this information with an estimate of how many train cars are in a typical train based on your past experience" , + "measuring the amount of time required to do a task based on how long it took to do a similar task in the past" , + "measuring the height of a building by counting the number of floors and multiplying it by the height of an average floor in an average building" , + "measuring the property value of a house based on its square footage and the average cost per square foot of other houses in the area" ; + skos:scopeNote "In all cases, the Agent in an Act of Estimation either lacks complete information, lacks access to the relevant information, or chooses not to use the complete information (perhaps to save money or time) about the thing being estimated; instead, the Agent uses some or all of the relevant information that the Agent does have as a basis for arriving at the estimate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000079 +cco:ont00000079 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001327 ; + rdfs:label "Act of Social Movement"@en ; + skos:definition "A Social Act composed of a series of performances, displays and campaigns directed at implementing, resisting or undoing a change in society."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Social_movement&oldid=1062720561"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000080 +cco:ont00000080 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000827 ; + rdfs:label "Standard Time of Day Identifier"@en ; + skos:definition "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using the Hours, Minutes, and Seconds of the Day that preceded the Temporal Instant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000081 +cco:ont00000081 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Cutting Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of separating some portion of its target into two or more portions through the application of acutely directed force."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cutting&oldid=1058846915"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000082 +cco:ont00000082 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Green"@en ; + skos:definition "A Color that is between Yellow and Cyan with a wavelength in the visible spectrum, typically between 520 to 560 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000083 +cco:ont00000083 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000035 ; + rdfs:label "Process Ending"@en ; + skos:definition "A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the ending instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000084 +cco:ont00000084 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Bodily Component"@en ; + skos:definition "A Fiat Object Part located within or on the surface of an Agent."@en ; + skos:example "Bodily Components include anatomical structures, body flora, pathogens, toxins, and their combinations." ; + cco:ont00001754 "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3017014/" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000085 +cco:ont00000085 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00001058 + ] ; + rdfs:label "Minute"@en ; + skos:definition "A Temporal Interval that is equal to sixty consecutive Seconds."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=minute" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000086 +cco:ont00000086 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000723 ; + rdfs:label "Autopilot System"@en ; + skos:altLabel "Autopilot"@en ; + skos:definition "A Vehicle Control System that is designed to enable some Agent to control the trajectory of a Vehicle without constant 'hands-on' control."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Autopilot&oldid=1063382206"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000087 +cco:ont00000087 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000894 ; + rdfs:comment "An Ordinal Date Identifier may or may not also contain a number indicating a specific Year. If both numbers are included, the ISO 8601 ordinal date format stipulates that the two numbers be formatted as YYYY-DDD or YYYYDDD where [YYYY] indicates a year and [DDD] is the day of that year, from 001 through 365 (or 366 in leap years)."@en ; + rdfs:label "Ordinal Date Identifier"@en ; + skos:altLabel "Ordinal Date"@en ; + skos:definition "A Decimal Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since the beginning of the Year."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ordinal_date&oldid=1061989434"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000088 +cco:ont00000088 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Firearm"@en ; + skos:definition "A Projectile Launcher that is designed to launch Bullets or Cartridges."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Firearm&oldid=1061216363"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000089 +cco:ont00000089 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001379 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001889 ; + owl:someValuesFrom cco:ont00001262 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001379 ; + rdfs:label "Skill"@en ; + skos:definition "An Agent Capability that inheres in a Person to the extent of that Person's capacity to realize it in Intentional Acts of a certain type."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000090 +cco:ont00000090 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:label "Infrared Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing infrared light to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Infrared_telescope&oldid=1062918090"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000091 +cco:ont00000091 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Coolant"@en ; + skos:definition "A Portion of Material that is designed to be used in a thermal control system to reduce or maintain the temperature of an object to or at a specified level."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000092 +cco:ont00000092 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000736 ; + rdfs:label "Bidirectional Transducer"@en ; + skos:definition "A Transducer that is designed to receive a signal in the form of physical phenomena and convert it into an electrical signal, and vice versa."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000093 +cco:ont00000093 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001278 ; + rdfs:label "Preferred Stock"@en ; + skos:definition "Stock that entitles its holder to receive a certain level of dividend payments before any dividends can be issued to other holders."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000094 +cco:ont00000094 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000946 ; + rdfs:label "Seat of National Government"@en ; + skos:definition "A Government Building that is designed for the administration of a sovereign nation."@en ; + skos:example "Parliament of Canada" , + "United States Capitol" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000095 +cco:ont00000095 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Control Surface"@en ; + skos:definition "A Material Artifact that is designed to deflect air, water, or another medium around its surface in order to change the Attitude of a Vehicle by rotating the Vehicle on one or more of its Axes of Rotation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flight_control_surfaces&oldid=1019271264"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000096 +cco:ont00000096 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Propulsion System"@en ; + skos:definition "A Material Artifact that is designed to facilitate the movement of material entities from one location to another and which consists of a source of mechanical power and a means of converting this power into propulsive force to generate the movement."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000097 +cco:ont00000097 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001207 ; + rdfs:label "Complex Optical Lens"@en ; + skos:altLabel "Lens System"@en ; + skos:definition "An Optical Lens consisting of more than one Simple Optical Lenses."@en ; + cco:ont00001754 "Hecht, Eugene (1987). Optics (2nd ed.). Addison Wesley. ISBN 978-0-201-11609-0. Chapters 5 & 6."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000098 +cco:ont00000098 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Electrical Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to perform a process involving electrical power."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000099 +cco:ont00000099 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000062 ; + owl:someValuesFrom cco:ont00000765 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000752 + ] ; + rdfs:label "Wave Process"@en ; + skos:definition "A Natural Process that involves Oscillation accompanied by a transfer of energy that travels through a portion of matter or spatial region."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wave&oldid=1062648180"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000100 +cco:ont00000100 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001132 ; + rdfs:label "Stasis of Partially Mission Capable"@en ; + skos:definition "A Stasis of Mission Capability during which the participating Continuant is capable of performing some but not all of its primary functions for the specified Mission."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000101 +cco:ont00000101 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000255 ; + rdfs:label "Portion of Liquid Oxygen"@en ; + skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid oxygen."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000102 +cco:ont00000102 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:comment "Skin Type is classified according to a reference system such as the Fitzpatrick scale: https://en.wikipedia.org/wiki/Fitzpatrick_scale"@en ; + rdfs:label "Skin Type"@en ; + skos:definition "A Quality inhering in a portion of skin by virtue of its color and natural tendency to respond to ultraviolet light."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000103 +cco:ont00000103 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Vehicle Compartment"@en ; + skos:altLabel "Compartment"@en ; + skos:definition "A Material Artifact that is designed to partition a Vehicle into subdivisions for various purposes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000104 +cco:ont00000104 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000639 ; + rdfs:label "Underwater Mine"@en ; + skos:definition "A Mine that is designed to support the extraction of materials from the ocean floor."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Naval_mine&oldid=1062538523"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000105 +cco:ont00000105 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001369 ; + rdfs:label "Square"@en ; + skos:definition "A Rectangular shape which has four equal length sides and four 90 degree angles."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000106 +cco:ont00000106 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001213 ; + rdfs:comment "An End of Life Stasis (EoL) is distinguished from a Stasis of Partially Mission Capable or Stasis of Non-Mission Capable in that EoL is more inclusive such that the participating Artifact may be either Partially or Non-Mission Capable. Additionally, EoL applies only to Artifacts and is typically determined in relation to its original mission and designed primary functions. In contrast, an Artifact's level of Mission Capability depends on the requirements of the mission under consideration such that a given Artifact may simultaneously be Fully Mission Capable for mission1, Partially Mission Capable for mission2, and Non-Mission Capable for mission3."@en ; + rdfs:label "End of Life Stasis"@en ; + skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when the participating Artifact is no longer capable of realizing all of its designed primary Artifact Functions."@en ; + cco:ont00001753 "EOL" , + "EoL" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000107 +cco:ont00000107 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001048 ; + rdfs:label "Increase of Generically Dependent Continuant"@en ; + skos:definition "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Generically Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000108 +cco:ont00000108 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000226 ; + rdfs:label "Rail Facility"@en ; + skos:definition "A Transportation Facility that is designed for transferring people or cargo to and from Trains."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Train_station&oldid=1063922802"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000109 +cco:ont00000109 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Military Force"@en ; + skos:definition "A Planned Act of employing a Military Force to achieve some desired result."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000110 +cco:ont00000110 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Mechanical Process"@en ; + skos:definition "A Process that is the realization of some Disposition of an Artifact"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000111 +cco:ont00000111 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Air Inlet"@en ; + skos:altLabel "Air Intake"@en ; + skos:definition "A Fluid Control Artifact that consists of an opening that is designed to capture and direct the flow of air into the system it is part of."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000112 +cco:ont00000112 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001384 ; + rdfs:label "Translucent"@en ; + skos:definition "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit some but not all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs some but not all electromagnetic radiation of that frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000113 +cco:ont00000113 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Ventilation Control Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes in which some Artifact is used to control the quality of air in some space."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000114 +cco:ont00000114 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000203 ; + rdfs:label "Unix Temporal Instant"@en ; + skos:definition "A Temporal Instant as specified by the number of Seconds that have elapsed since the specified Epoch Time as described by an implementation of Unix Time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000115 +cco:ont00000115 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000246 ; + rdfs:label "Stasis of Disposition"@en ; + skos:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Disposition that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000116 +cco:ont00000116 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Pump"@en ; + skos:definition "A Fluid Control Artifact that is designed to impart motion to a portion of fluid to transport it within a system through the use of mechanical action."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000117 +cco:ont00000117 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Information Processing Artifact"@en ; + skos:definition "A Material Artifact that is designed to use algorithms to transform some Information Content Entity into another Information Content Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000118 +cco:ont00000118 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000965 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001942 ; + owl:someValuesFrom cco:ont00000323 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Artifact Function Specification"@en ; + skos:definition "A Directive Information Content Entity that prescribes some Artifact Function and which is part of some Artifact Model."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000119 +cco:ont00000119 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000145 ; + rdfs:label "Spatial Orientation"@en ; + skos:altLabel "Attitude"@en ; + skos:definition "A Relational Quality that is the angle of Rotation of an Object relative to one or more Plane of Reference or Axis of Rotation."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Orientation_(geometry)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000120 +cco:ont00000120 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000853 ; + rdfs:label "Measurement Unit"@en ; + skos:definition "A Descriptive Information Content Entity that describes a definite magnitude of a physical quantity, defined and adopted by convention and/or by law, that is used as a standard for measurement of the same physical quantity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Unit_of_measurement&oldid=1061038125"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000121 +cco:ont00000121 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Conducting Mass Media Interview"@en ; + skos:definition "An Act of Mass Media Communication involving a conversation between a reporter and a person of public interest, used as a basis of a broadcast or publication."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000122 +cco:ont00000122 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000170 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001944 ; + owl:someValuesFrom cco:ont00000904 + ] ; + rdfs:label "Vehicle Track Point"@en ; + skos:definition "An Object Track Point that is where a Vehicle is or was located during some motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000123 +cco:ont00000123 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:comment "Examples: apologizing, condoling, congratulating, greeting, thanking, accepting (acknowledging an acknowledgment)"@en ; + rdfs:label "Act of Expressive Communication"@en ; + skos:definition "An Act of Communication in which an Agent expresses their attitudes or emotions towards some entity."@en ; + cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000124 +cco:ont00000124 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001328 ; + rdfs:label "Solar Time Reference System"@en ; + skos:definition "A Temporal Reference System that is based on the position of the Sun in the sky."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000125 +cco:ont00000125 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000373 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000358 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000373 ; + rdfs:label "Bounding Box Point"@en ; + skos:definition "A Geospatial Position that is a proper part of some Geospatial Region Bounding Box."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000126 +cco:ont00000126 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000139 + ] ; + rdfs:label "First-Order Administrative Region"@en ; + skos:definition "A Government Domain that is a primary administrative division of a Country."@en ; + skos:example "a state in the United States" ; + cco:ont00001754 "http://www.geonames.org/export/codes.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000127 +cco:ont00000127 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001980 ; + owl:someValuesFrom obo:BFO_0000001 + ] ; + rdfs:label "Performance Specification"@en ; + skos:definition "A Directive Information Content Entity that prescribes some aspect of the behavior of a participant in a Process given one or more operating conditions."@en ; + skos:example "Maximum Speed at high altitude; Rate of Ascent at 10 degrees celsius with nominal payload." ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000128 +cco:ont00000128 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000255 ; + rdfs:label "Portion of Liquid Hydrogen"@en ; + skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid hydrogen."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000129 +cco:ont00000129 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Tattoo"@en ; + skos:definition "A Bodily Component that consists of a typically permanent mark or design on a portion of skin that is created by a process of pricking and ingraining an indelible pigment or by raising scars."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/tattoo" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000130 +cco:ont00000130 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Power Transformer"@en ; + skos:definition "A Material Artifact that is designed to transfer electrical energy between two or more circuits through electromagnetic induction."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transformer&oldid=1062163369"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000131 +cco:ont00000131 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001214 ; + rdfs:label "Increase of Quality"@en ; + skos:definition "An Increase of Specifically Dependent Continuant in which some Indpendent Continuant has an increase of some Quality that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000132 +cco:ont00000132 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000117 ; + rdfs:label "Recording Device"@en ; + skos:definition "An Information Processing Artifact that is designed to capture some information and store it in some recording format on some storage medium."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Record&oldid=1062776450"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000133 +cco:ont00000133 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:comment "Examples: advising, admonishing, asking, begging, dismissing, excusing, forbidding, instructing, ordering, permitting, requesting, requiring, suggesting, urging, warning"@en ; + rdfs:label "Act of Directive Communication"@en ; + skos:definition "An Act of Communication that is intended to cause the hearer to take a particular action."@en ; + cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000134 +cco:ont00000134 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000405 + ] ; + rdfs:label "Third-Order Administrative Region"@en ; + skos:definition "A Government Domain that is a subdivision of a Second-Order Administrative Region."@en ; + cco:ont00001754 "http://www.geonames.org/export/codes.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000135 +cco:ont00000135 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000819 ; + rdfs:label "Stasis of Specifically Dependent Continuant"@en ; + skos:definition "A Stasis in which some Independent Continuant bears some Specifically Dependent Continuant that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000136 +cco:ont00000136 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:comment "Optical Instruments are typically constructed for the purpose of being used to aid in vision or the analysis of light."@en ; + rdfs:label "Optical Instrument"@en ; + skos:definition "A Material Artifact that is designed to process light waves."@en ; + skos:scopeNote "Light waves can be processed in a variety of ways including via reflection, refraction, diffraction, deflection, focusing, collimation, dispersion, and interference."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Optical_instrument&oldid=1061981216"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000137 +cco:ont00000137 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Financial Deposit"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Depositor) to another Agent to create a liability to be repaid to the Depositor through an Act of Financial Withdrawal."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Deposit_(bank)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000138 +cco:ont00000138 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000503 ; + rdfs:label "Maximum Power"@en ; + skos:definition "A Power that is characterized by the maximum rate of Work, or Energy consumed, done in a given time period."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000139 +cco:ont00000139 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Domain of a Country"@en ; + skos:definition "A Government Domain that is associated with certain distinct political, ethnic, or cultural characteristics, and which delimits a Government that has legitimate authority over a Populace."@en ; + skos:editorialNote "'Country' is an unclear term. Does it refer to the people, the government, the site, or the material in the site? Furthermore, what is properly referred to as a 'Country' is highly dependent on the classification practices of the international community. For example: The United Kingdom is a sovereign country that has Wales, a non-sovereign Country, as a member. Vatican City is a sovereign country that is landlocked by a city: Rome, Italy. Puerto Rico is not a country (it's a territory) but has a government, a distinct culture, and so on. Thus, here we do not define 'Country' but instead define 'Domain of a Country'."@en ; + skos:prefLabel "Domain of a Country"@en ; + cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000140 +cco:ont00000140 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:comment "The type of particle quantified is typically either atoms or molecules, but may also be protons, neutrons, electrons, quarks, or other particles. The type of particle being measured should always be specified along with the measurement and its unit."@en ; + rdfs:label "Measurement Unit of Amount of Substance"@en ; + skos:altLabel "Measurement Unit of Chemical Amount"@en , + "Measurement Unit of Enplethy"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the number of a specified type of particle in a portion of matter."@en ; + skos:example "mole, pound-mole" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology" . + + +### https://www.commoncoreontologies.org/ont00000141 +cco:ont00000141 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000914 ; + rdfs:label "Populace"@en ; + skos:definition "A Group of Persons forming the total population of some Government Domain."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Population&oldid=1059148871"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000142 +cco:ont00000142 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Government"@en ; + skos:definition "A Planned Act that is initiated or supported by some Geopolitical Entity and enforced by some Government Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000143 +cco:ont00000143 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000103 ; + rdfs:label "Cargo Cabin"@en ; + skos:definition "A Vehicle Compartment that is used to store goods or materials during transportation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000144 +cco:ont00000144 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Meeting"@en ; + skos:definition "An Act of Association wherein two or more Persons assemble for some common purpose."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=meet (Sense Key: meet%2:41:00, get together%2:41:00)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000145 +cco:ont00000145 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Incendiary Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of starting a fire."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Incendiary_device&oldid=1055642422"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000146 +cco:ont00000146 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001175 ; + owl:disjointWith cco:ont00000496 ; + rdfs:label "Artificial Language"@en ; + skos:definition "A Language that is developed through conscious planning and premeditation, rather than one that was developed through use and repetition."@en ; + skos:example "Esperanto" , + "Python Programming Language" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Constructed_language&oldid=1062733589"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000147 +cco:ont00000147 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000325 ; + rdfs:label "Flight Transponder"@en ; + skos:definition "A Radio Transponder that is designed to produce a specified response (typically for identification, location, or status update purposes) when it receives a radio-frequency interrogation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transponder_(aeronautics)&oldid=1052688836"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000148 +cco:ont00000148 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000368 ; + rdfs:label "Clockwise Rotational Motion"@en ; + skos:altLabel "CW Rotational Motion"@en , + "Clockwise Rotation"@en ; + skos:definition "A Rotational Motion in which the direction of rotation is toward the right as seen relative to the designated side of the plane of rotation."@en ; + skos:example "the axial rotation of the Earth as seen from above the South Pole" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000149 +cco:ont00000149 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Instant Messaging"@en ; + skos:altLabel "Act of IMing"@en , + "Act of Instant Messaging"@en ; + skos:definition "An Act of Communication by Media in which real-time direct text-based communication occurs between two or more people using personal computers or other devices, along with shared Instant Messaging Client Software conveyed over a network, such as the Internet."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Instant_messaging&oldid=1062873579"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000150 +cco:ont00000150 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:label "Radio Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 3 kHz and 300 GHz."@en ; + cco:ont00001753 "RF" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_wave&oldid=1062110903"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000151 +cco:ont00000151 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000379 ; + rdfs:label "Act of Reporting"@en ; + skos:definition "An Act of Representative Communication performed by giving a detailed account or statement."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/report" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000152 +cco:ont00000152 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000998 ; + rdfs:label "Telephone Network"@en ; + skos:definition "A Telecommunication Network that is designed to allow telephone calls to be made between two or more parties connected to the network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000153 +cco:ont00000153 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000781 ; + rdfs:label "Generator Control Unit"@en ; + skos:definition "A Control System that is designed to regulate the voltage of some Electrical Power Source."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000154 +cco:ont00000154 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000745 ; + rdfs:comment "While there is always at least one Mode for every set of data, it is possible for any given set of data to have multiple Modes. The Mode is typically most useful when the members of the set are all Nominal Measurement Information Content Entities."@en ; + rdfs:label "Mode Point Estimate Information Content Entity"@en ; + skos:altLabel "Mode"@en , + "Statistical Mode"@en ; + skos:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the value or values that occur most often in the set."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000155 +cco:ont00000155 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001337 ; + rdfs:label "Near Infrared Light Frequency"@en ; + skos:definition "An Infrared Light Frequency that is between 214 and 400 terahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000156 +cco:ont00000156 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000088 ; + rdfs:label "Hand Gun"@en ; + skos:definition "A Firearm that is designed to have a relatively short barrel and to be held in one or two hands and to be fired without being braced against the shoulder."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Handgun&oldid=1060570395"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000157 +cco:ont00000157 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Facial Hair"@en ; + skos:definition "A Bodily Component that consists of a portion of hair that grows on the face of a human (typically male) or other animal."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000158 +cco:ont00000158 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001105 ; + rdfs:label "Lithium-ion Electric Battery"@en ; + skos:definition "A Secondary Cell Electric Battery that produces electricity when lithium ions move from anode to cathode."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lithium-ion_battery&oldid=1064099588"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000159 +cco:ont00000159 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Timekeeping Instrument"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity that is about some temporal region."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Timekeeper&oldid=1061681902"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000160 +cco:ont00000160 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000581 ; + rdfs:label "Manual Tool"@en ; + skos:altLabel "Hand Tool"@en ; + skos:definition "A Tool that is designed to be powered by manual labor rather than by an engine."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hand_tool&oldid=1060741381"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000161 +cco:ont00000161 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Coordinate System Axis"@en ; + skos:definition "A One-Dimensional Spatial Region defined by a Coordinate System for the purpose of identifying the position of entities along one dimension of the Coordinate System's spatial framework."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000162 +cco:ont00000162 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000795 ; + rdfs:label "Electrical Connector Artifact Function"@en ; + skos:definition "An Electrical Conduction Artifact Function that is realized by processes in which some Artifact is used to join electrical terminations to create an electrical circuit."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000163 +cco:ont00000163 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000161 ; + rdfs:label "z-Axis"@en ; + skos:definition "A Coordinate System Axis designated by the variable 'z'."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000164 +cco:ont00000164 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001010 ; + rdfs:label "Minimum Ordinal Measurement Information Content Entity"@en ; + skos:definition "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the smallest or having the least amount relative to a nominally described set of like entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000165 +cco:ont00000165 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Criminal Act"@en ; + skos:definition "A Planned Act committed in violation of rules or laws for which some governing authority (via mechanisms such as legal systems) can prescribe a conviction."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Crime&oldid=1062237249"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000166 +cco:ont00000166 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000099 ; + rdfs:label "Wave Cycle"@en ; + skos:definition "A Wave Process that consists of a portion of a Wave Process that begins at an arbitrary point of the Wave Process and ends at the next point when the pattern of the Wave Process begins to repeat."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000167 +cco:ont00000167 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001173 ; + rdfs:label "Large-Scale Rocket Launcher"@en ; + skos:definition "A Rocket Launcher that is designed to contain multiple Rocket Launchers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000168 +cco:ont00000168 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Interpersonal Relationship"@en ; + skos:definition "An Act of Association between two or more Persons that may range from fleeting to enduring."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Interpersonal_relationship&oldid=1060991304"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000169 +cco:ont00000169 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 10–1 m"@en ; + rdfs:label "Very High Frequency"@en ; + skos:altLabel "ITU Band Number 8"@en ; + skos:definition "A Radio Frequency that is between 30 and 300 MHz."@en ; + cco:ont00001753 "VHF" ; + cco:ont00001754 "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000170 +cco:ont00000170 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000018 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001944 ; + owl:someValuesFrom cco:ont00000205 + ] ; + rdfs:label "Object Track Point"@en ; + skos:definition "A Zero-Dimensional Spatial Region that is an idealized point where an Object is or was located during some motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000171 +cco:ont00000171 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000344 ; + rdfs:label "Detergent Artifact Function"@en ; + skos:definition "A Surfactant Artifact Function that is realized in a process that cleans substances in dilute solutions."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Detergent&oldid=1064079329"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000172 +cco:ont00000172 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000483 ; + rdfs:label "Base of Operations"@en ; + skos:altLabel "Main Operating Base"@en ; + skos:definition "A Military Base with permanently stationed operating forces, robust Infrastructure, and strengthened force protection measures such that it is designed to launch and support large-scale operations, support smaller or less-permanent bases, and organize supply facilities."@en ; + cco:ont00001753 "MOB" ; + cco:ont00001754 "http://www.jcs.mil/Portals/36/Documents/Doctrine/pubs/dictionary.pdf?ver=2018-08-27-122235-653" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000173 +cco:ont00000173 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Civilian Role"@en ; + skos:definition "A Role that inheres in an Agent or Group of Agents by virtue of that Agent or Group of Agents not being part of either an Armed Force or police force."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000174 +cco:ont00000174 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:label "Ultraviolet Telescope"@en ; + skos:altLabel "UV Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing ultraviolet light to form an enhanced image of the Object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000175 +cco:ont00000175 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Organization Member Role"@en ; + skos:definition "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill as a member of some Organization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000176 +cco:ont00000176 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001180 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000898 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001180 ; + dcterms:bibliographicCitation "Lee, David S., and Brad Glosserman. “How Companies Can Navigate Today’s Geopolitical Risks.” Harvard Business Review, 28 Nov. 2022. hbr.org, https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks." , + "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Geopolitical Organization"@en ; + skos:definition "An Organization that bears a Geopolitical Power Role."@en ; + skos:prefLabel "Geopolitical Organization"@en ; + cco:ont00001754 "https://chass.usu.edu/international-studies/aggies-go/power" , + "https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000177 +cco:ont00000177 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000017 ; + rdfs:label "Affordance"@en ; + skos:definition "A Realizable Entity of an Independent Continuant that creates an opportunity for an Agent to realize some Agent Capability or Disposition in some Act."@en ; + cco:ont00001754 "J. J. Gibson, \"The Theory of Affordances,\" in The Ecological Approach to Visual Perception (NY: Taylor & Francis Group, 1986): 127-143. Available at: https://archive.org/details/pdfy-u5hmFOvOM2Civ4Gz/page/n70/mode/1up."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000178 +cco:ont00000178 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Arrow"@en ; + skos:definition "A Portion of Ammunition that is designed to be fired from a Bow and consists of a long straight stiff shaft with stabilizers (fletchings) and a slot (the nock) on one end and a weighted tip (the arrowhead) on the other end."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Arrow&oldid=1058445874"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000179 +cco:ont00000179 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000570 ; + rdfs:comment "More generally, Thrust is the propulsive Force of a Rocket."@en ; + rdfs:label "Thrust"@en ; + skos:definition "A Force that is equal in magnitude to but in the opposite direction of an exerted Force and which is used to describe the forward Force of a Jet or Rocket Engine in reaction to the Acceleration of its Reaction Mass in the opposite direction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000180 +cco:ont00000180 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000410 ; + rdfs:label "Hotel"@en ; + skos:definition "A Residential Facility that is designed to provide lodging that is paid for on a short-term basis."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hotel&oldid=1063583593"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000181 +cco:ont00000181 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000089 ; + rdfs:label "Language Skill"@en ; + skos:definition "A Skill that is realized by an Act which is prescribed by a Language."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000182 +cco:ont00000182 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000123 ; + rdfs:label "Act of Thanking"@en ; + skos:definition "An Act of Expressive Communication performed by expressing gratitude."@en ; + cco:ont00001754 " http://www.merriam-webster.com/dictionary/thanks" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000183 +cco:ont00000183 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Fragrance Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes of perceiving a pleasant or sweet odor."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Perfume&oldid=1062785740"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000184 +cco:ont00000184 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Axial Rotation Period"@en ; + skos:definition "A Temporal Interval that is equal to the length of time required for a spinning Object to complete one rotation around its Axis of Rotation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000185 +cco:ont00000185 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Blunt"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer not having a sharp edge or point."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000186 +cco:ont00000186 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001010 ; + rdfs:label "Artifact Version Ordinality"@en ; + skos:definition "An Ordinal Measurement Information Content Entity that is about the form of an Artifact which differs in some respects from previous or future forms of that Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000187 +cco:ont00000187 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Authority Role"@en ; + skos:definition "A Role that is realized by Processes which create, modify, transfer, or eliminate Process Regulations or other Authority Roles, and inheres in an Agent in virtue of collective acceptance of that Agent's ability to issue binding directives."@en ; + skos:scopeNote "Authority Roles are externally grounded in a social group's collective acceptance of the binding force of the agent's directives. This acceptance can be direct or indirect (e.g., by accepting a procedure for deputizing authority). Such collective acceptance need not be explicit or cognized; rather, collective acceptance can be expressed in the dispositions and attitudes of people toward that agent's directives. In many cases, the directives issued by Authority Roles are backed by threats of punishment or sanction for failure to comply, but the issuing of a directive plus a threat is not sufficient for authority. Rather, an agent's authority must be accepted either directly or indirectly through the acceptance of a procedure for bestowing authority (e.g., elections)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000188 +cco:ont00000188 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Ground Track"@en ; + skos:altLabel "Ground Trace"@en ; + skos:definition "A One-Dimensional Spatial Region defined by the line formed on the surface of an Astronomical Body by projecting an imaginary line from the center of the tracked Object to the center of the Astronomical Body as the Object travels above the surface."@en ; + skos:scopeNote "The Ground Track is the line on the surface of the Earth or other Astronomical Body that is located directly below the Object Track."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ground_track&oldid=1058025510"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000189 +cco:ont00000189 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Certificate"@en ; + skos:definition "An Information Bearing Artifact that bears an Information Content Entity which attests to certain demonstrated characteristics of an Object, Person, or Organization."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/degree" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000190 +cco:ont00000190 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001353 ; + rdfs:label "Minimum Speed Artifact Function"@en ; + skos:definition "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains the lowest speed at which that Artifact is designed to operate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000191 +cco:ont00000191 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001147 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001803 ; + owl:someValuesFrom cco:ont00000920 + ] ; + rdfs:label "Act of Homicide"@en ; + skos:definition "An Act of Violence which causes the unlawful killing of another person."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000192 +cco:ont00000192 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000171 ; + owl:someValuesFrom cco:ont00001341 + ] ; + rdfs:label "Facility"@en ; + skos:definition "A Material Artifact that is designed as a building or campus dedicated to some specific purpose."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000193 +cco:ont00000193 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000059 ; + rdfs:label "Telephone Subscriber Line"@en ; + skos:definition "A Telephone Line that connects a Communication Endpoint to another node in a Telecommunication Network to enable service to a user's Telephone."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000194 +cco:ont00000194 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000795 ; + rdfs:label "Electrical Contact Artifact Function"@en ; + skos:definition "An Electrical Conduction Artifact Function that is realized by processes in which some Artifact is used as an endpoint of an electrical circuit from which an electrical current is passed via physical contact with the endpoint."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000195 +cco:ont00000195 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001078 ; + rdfs:label "Heliport"@en ; + skos:definition "An Airport that is designed for launching, receiving, and housing Rotorcraft."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Heliport&oldid=1049937701"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000196 +cco:ont00000196 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Purple"@en ; + skos:definition "A Color that is aproximately midway between Red and Blue."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000197 +cco:ont00000197 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000035 ; + rdfs:label "Process Beginning"@en ; + skos:definition "A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the starting instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000198 +cco:ont00000198 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Sound Level"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the level (the loudness) of sounds."@en ; + skos:example "decibels, sones" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000199 +cco:ont00000199 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000771 ; + rdfs:label "Camera"@en ; + skos:definition "An Imaging Instrument that is designed to form and digitally or physically record an image of an entity."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/camera" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000200 +cco:ont00000200 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000890 ; + rdfs:label "Act of Pilgrimage"@en ; + skos:definition "An Act of Travel to a location of importance to a person's beliefs and faith."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pilgrimage&oldid=1056524204"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000201 +cco:ont00000201 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Change of Residence"@en ; + skos:definition "An Act of Location Change involving one or more Persons moving from one place of residence to another."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000202 +cco:ont00000202 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001075 ; + rdfs:label "Act of Terrorist Training Instruction"@en ; + skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Terrorist Organization by imparting knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature to an Agent either directly or indirectly through some communication medium."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000203 +cco:ont00000203 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000293 ; + rdfs:label "Event Status Nominal Information Content Entity"@en ; + skos:definition "A Nominal Measurement Information Content Entity that is a measurement of the current state of a process."@en ; + skos:example "proposed, approved, planned, in progress, completed, failed, or successful" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000204 +cco:ont00000204 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001104 ; + rdfs:label "Rifle"@en ; + skos:definition "A Long Gun that is designed to have a rifled barrel and to fire single Bullets over long ranges with high accuracy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rifle&oldid=1056172452"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000205 +cco:ont00000205 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001855 ; + owl:someValuesFrom cco:ont00000170 + ] ; + rdfs:comment "The exact line of the Object Track may be drawn based on the Center of Mass of the Object or another reference point, such as the location of a transponder beacon or the center of a radar cross-section, depending on the Object being tracked."@en ; + rdfs:label "Object Track"@en ; + skos:definition "A One-Dimensional Spatial Region that consists of the idealized line along which an Object has traversed during some motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000206 +cco:ont00000206 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Friction Reduction Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes of reducing the force resisting the relative motion of surfaces in contact."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Friction&oldid=1061569068"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000207 +cco:ont00000207 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000142 ; + rdfs:label "One-Dimensional Geospatial Boundary"@en ; + skos:definition "A Fiat Line that is a boundary of some Geospatial Region."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000208 +cco:ont00000208 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000123 ; + rdfs:label "Act of Congratulating"@en ; + skos:definition "An Act of Expressive Communication performed by expressing vicarious pleasure to a person on the occasion of their success or good fortune."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/congratulate" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000209 +cco:ont00000209 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000313 ; + rdfs:label "Sound Wavelength"@en ; + skos:definition "A Wavelength that is the distance a Sound Wave traverses during one Wave Cycle."@en ; + cco:ont00001754 "http://www.physicsclassroom.com/Class/waves/u10l2b.cfm" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000210 +cco:ont00000210 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Engine"@en ; + skos:altLabel "Motor"@en ; + skos:definition "A Material Artifact that is designed to convert one form of energy into mechanical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000211 +cco:ont00000211 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000800 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Day Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Days and spans at least one Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000212 +cco:ont00000212 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Chemical Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing toxic chemicals."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Chemical_weapon&oldid=1054342645"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000213 +cco:ont00000213 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000472 ; + rdfs:label "Subcontinent"@en ; + skos:definition "A Geospatial Region that is bounded by a large, relatively self-contained landmass forming a subdivision of a Continent."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Continent&oldid=1064057312"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000214 +cco:ont00000214 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000289 ; + rdfs:label "Moving Target Indication Artifact Function"@en ; + skos:definition "A Radar Imaging Artifact Function that inheres in Artifacts that are designed to identify and produce visual representations of moving entities by using a radar to emit successive phase coherent pulses, which are sampled and added to the subsequent pulse to cancel out signals from non-moving entities such that only signals from moving entities remain and are displayed."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000215 +cco:ont00000215 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:comment "A Radio Telescope consists of a specialized Antenna and a Radio Receiver and is typically used to receive radio waves from sources in outer space."@en ; + rdfs:label "Radio Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_telescope&oldid=1052819190"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000216 +cco:ont00000216 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Shell"@en ; + skos:definition "A Portion of Ammunition that is designed to be a non-self-propelled projectile and to carry a payload (explosive or other) over a relatively short distance."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Shell_(projectile)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000217 +cco:ont00000217 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Area"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of two-dimensional regions or Geospatial Regions."@en ; + skos:example "square feet, square meters, acre, hectare" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000218 +cco:ont00000218 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Major Axis"@en ; + skos:definition "A One-Dimensional Spatial Region that is the longest line segment that connects two points on the edge of an Ellipse."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000219 +cco:ont00000219 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001009 ; + rdfs:label "Reflecting Optical Telescope"@en ; + skos:altLabel "Reflecting Telescope"@en , + "Reflector"@en ; + skos:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via reflection through the use of one or more curved Mirrors to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reflecting_telescope&oldid=1062982683"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000220 +cco:ont00000220 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Ammunition Depot"@en ; + skos:definition "A Storage Facility that is designed to store Portions of Ammunition."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ammunition_dump&oldid=1044466765"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000221 +cco:ont00000221 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Semi-Minor Axis"@en ; + skos:definition "A One-Dimensional Spatial Region that is equal to half the length of the Minor Axis of an Ellipse."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000222 +cco:ont00000222 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Presence Frequency"@en ; + skos:definition "A Sonic Frequency that is between 4 and 6 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000223 +cco:ont00000223 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000203 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000132 ; + owl:someValuesFrom cco:ont00000800 + ] ; + rdfs:label "Time of Day"@en ; + skos:definition "A Temporal Instant that is part of a Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000224 +cco:ont00000224 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001197 ; + rdfs:label "Populated place"@en ; + skos:definition "An Anthropogenic Feature at which people live or have lived."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Human_settlement&oldid=1060418164"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000225 +cco:ont00000225 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00000832 + ] ; + rdfs:label "Month"@en ; + skos:definition "A Temporal Interval that is based on the approximate length of time required for a Natural Satellite to complete one cycle of its rotational motion around its Primary Body."@en ; + skos:scopeNote "Unless otherwise specified, it is assumed that a Month is specified relative to the Rotational Motion of the Moon around the Earth. Earth Months are approximately equal to four consecutive Weeks or 30 consecutive Days."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=month" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000226 +cco:ont00000226 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Transportation Facility"@en ; + skos:definition "A Facility that is designed for commencing or concluding the transportation of transportation artifacts, or for housing transportation artifacts."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transport&oldid=1063526665"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000227 +cco:ont00000227 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000674 ; + rdfs:comment "A Julian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.25 Julian Days. Julian Years are typically indicated by prefixing a capital 'J' in front of the Year number, e.g. J2000.0 or J2018."@en ; + rdfs:label "Julian Year"@en ; + skos:definition "A Calendar Year in the Julian Calendar."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000228 +cco:ont00000228 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000005 ; + rdfs:label "Planned Act"@en ; + skos:altLabel "Intentional Act"@en ; + skos:definition "An Act in which at least one Agent plays a causative role and which is prescribed by some Directive Information Content Entity held by at least one of the Agents."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000229 +cco:ont00000229 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Power"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of rates of work."@en ; + skos:example "watt, horsepower" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000230 +cco:ont00000230 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000136 ; + rdfs:label "Diffraction Grating"@en ; + skos:definition "An Optical Instrument with a periodic structure that is designed to split and defract a beam of light into several beams travelling in different directions."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Diffraction_grating&oldid=1060463366"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000231 +cco:ont00000231 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Torpedo Tube"@en ; + skos:definition "A Projectile Launcher that is designed to launch Torpedoes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Torpedo_tube&oldid=1063672665"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000232 +cco:ont00000232 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000677 ; + rdfs:label "Pumping Station"@en ; + skos:definition "A Product Transport Facility that is designed to pump fluids from one place to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pumping_station&oldid=1045678418"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000233 +cco:ont00000233 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001278 ; + rdfs:label "Stock Certificate"@en ; + skos:definition "Stock that consists of a Certificate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000234 +cco:ont00000234 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Training"@en ; + skos:definition "A Planned Act in which knowledge, skills or values are imparted from one or more Agents to at least one other Agent."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000235 +cco:ont00000235 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000687 ; + rdfs:label "Act of Vocational Training Acquisition"@en ; + skos:definition "An Act of Training Acquisition performed by an Agent by acquiring skills required for a specific occupation in industry, agriculture or trade from an Agent or communication medium that realizes a capacity derived from its affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000236 +cco:ont00000236 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Lighting System"@en ; + skos:definition "A Material Artifact that is designed to emit light within some area."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000237 +cco:ont00000237 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000687 ; + rdfs:label "Act of Terrorist Training Acquisition"@en ; + skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature from an Agent or communication medium that realizes a capacity derived from its affiliation with a Terrorist Organization."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000238 +cco:ont00000238 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Propeller"@en ; + skos:altLabel "Propelling Screw"@en ; + skos:definition "A Material Artifact that is designed to convert rotary motion from an Engine or other mechanical Power Source into propulsive Force."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Propeller_(aeronautics)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000239 +cco:ont00000239 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Mass"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of an object's resistance to Acceleration when a Force is applied to the object."@en ; + skos:example "ounce, gram, pound" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000240 +cco:ont00000240 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001162 ; + rdfs:label "Act of Oath Taking"@en ; + skos:definition "An Act of Commissive Communication performed by stating or promising, usually calling upon something or someone that the oath maker considers sacred."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Oath&oldid=1052326917"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000241 +cco:ont00000241 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001064 ; + rdfs:label "Two-Dimensional Barcode"@en ; + skos:definition "A Barcode that is designed to bear lines of varying widths, spacing, height, and color that concretize some Directive Information Content Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000242 +cco:ont00000242 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000241 ; + rdfs:label "Data Matrix Code"@en ; + skos:definition "A Two-Dimensional Barcode that consists of cells arranged in rectangular patterns and is used for marking small items in logistics and operations."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000243 +cco:ont00000243 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Heat Sink"@en ; + skos:definition "A Material Artifact that is designed to regulate the temperature of a computer by the passive transfer of heat away from other components in the computer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Heat_sink&oldid=1062822080"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000244 +cco:ont00000244 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001153 ; + rdfs:label "Fragmentation Artifact Function"@en ; + skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of a detonation which causes fragmentation."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/fragmentation" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000245 +cco:ont00000245 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Petroleum Manufacturing Facility"@en ; + skos:definition "A Factory that is designed to manufacture petroleum-based products."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Petroleum&oldid=1062956217"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000246 +cco:ont00000246 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000135 ; + rdfs:label "Stasis of Realizable Entity"@en ; + skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Realizable Entity that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000247 +cco:ont00000247 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Road"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable Ground Vehicles to travel from one location to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Road&oldid=1063402841" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000248 +cco:ont00000248 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Chemical Manufacturing Facility"@en ; + skos:definition "A Factory that is designed to manufacture or process chemicals."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Chemical_industry&oldid=1061177027"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000249 +cco:ont00000249 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:comment "A Shaft is usually used to connect other components of a drive train that cannot be connected directly either because of the distance between them or the need to allow for relative movement between those components."@en ; + rdfs:label "Shaft"@en ; + skos:definition "A Material Artifact that is designed to rotate and transmit Torque, Power, or Rotational Motion from one machine element to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Shaft&oldid=1023963656"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000250 +cco:ont00000250 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000865 ; + rdfs:label "Loss of Realizable Entity"@en ; + skos:definition "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Realizable Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000251 +cco:ont00000251 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000472 ; + rdfs:label "Continent"@en ; + skos:definition "A Geospatial Region that is bounded by any of the Earth's main continuous expanses of land."@en ; + cco:ont00001754 "JC3IEDM version 3.0.2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000252 +cco:ont00000252 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Nozzle"@en ; + skos:definition "A Fluid Control Artifact that is designed to control the speed, direction, rate, shape, or pressure of the flow of fluid exiting it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000253 +cco:ont00000253 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000030 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000101 ; + owl:someValuesFrom cco:ont00000958 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000030 ; + rdfs:label "Information Bearing Entity"@en ; + skos:altLabel "IBE"@en ; + skos:definition "An Object upon which an Information Content Entity generically depends."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000178"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000254 +cco:ont00000254 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Transportation Artifact"@en ; + skos:definition "A Material Artifact that is fixed in place and designed to bear a Function, the realization of which is sometimes part of a process moving Vehicles and Agents from one location to another."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000255 +cco:ont00000255 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Cryogenic Material"@en ; + skos:definition "A Portion of Material that has been reduced to a very low temperature (below -180 degrees Celcius)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000256 +cco:ont00000256 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Fluid Control Artifact"@en ; + skos:definition "A Material Artifact that is designed to manipulate the flow of a fluid (i.e. a liquid or a gas)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000257 +cco:ont00000257 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000620 ; + rdfs:label "Radiopaque"@en ; + skos:altLabel "Radiodense"@en ; + skos:definition "A Radiopacity that inheres in a bearer in virtue of its capacity to prevent most X-rays from passing through it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000258 +cco:ont00000258 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001064 ; + rdfs:label "One-Dimensional Barcode"@en ; + skos:definition "A Barcode that is designed to bear parallel lines of varying widths and spacing that concretize some Directive Information Content Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000259 +cco:ont00000259 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000225 ; + rdfs:label "Calendar Month"@en ; + skos:definition "A Month that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Month."@en ; + skos:example "January; February; March; April; May; June; July; August; September; October; November; December" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000260 +cco:ont00000260 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000675 ; + rdfs:label "Muzzle Blast"@en ; + skos:definition "A Sound Wave Process that is caused by a projectile being pushed from the barrel of a firearm by an explosive charge."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000261 +cco:ont00000261 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:comment """Currently gamma radiation is distinguished from x-rays by their source--either inside or outside of the nucleus--rather than by frequency, energy, and wavelength. +https://en.wikipedia.org/wiki/Gamma_ray#Naming_conventions_and_overlap_in_terminology"""@en ; + rdfs:label "Gamma Ray Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is above 30 exahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gamma_ray&oldid=1062115897"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000262 +cco:ont00000262 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001102 ; + rdfs:label "Shop"@en ; + skos:definition "A Commercial Facility designed to sell small lots of goods to consumers."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000263 +cco:ont00000263 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001328 ; + rdfs:comment "A single Clock Time System does not provide a complete means for identifying or measuring times. Depending on the particular Clock Time System, it may be compatible for use with one or more other Temporal Reference Systems."@en ; + rdfs:label "Clock Time System"@en ; + skos:definition "A Temporal Reference System that is a convention for keeping and displaying the Time of Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000264 +cco:ont00000264 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000020 ; + rdfs:label "Hydraulic Fluid Reservoir"@en ; + skos:definition "A Container that is designed to store some hydraulic fluid for use in some Hyrdraulic Power Source."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000265 +cco:ont00000265 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001327 ; + rdfs:label "Election"@en ; + skos:altLabel "Act of Political Election"@en ; + skos:definition "A Social Act by which a population chooses an individual to hold public office."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Election&oldid=1063238552"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000266 +cco:ont00000266 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001381 ; + rdfs:label "Hearing Aid"@en ; + skos:definition "A Medical Artifact that is designed to improve hearing for its user."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hearing_aid&oldid=1062688647"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000267 +cco:ont00000267 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Catalyst Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which the rate of a chemical reaction is increased due to the participation of an additional substance, without that substance being consumed in the reaction."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Catalysis&oldid=1063864001"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000268 +cco:ont00000268 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Cannon"@en ; + skos:definition "A Projectile Launcher that is designed to use a controlled explosion to launch a relatively large Portion of Ammunition, such as a Round Shot or a Shell, at a significant Velocity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cannon&oldid=1063792906"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000269 +cco:ont00000269 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Radio Transmitter"@en ; + skos:definition "A Radio Communication Instrument that is an electronic device that is designed to generate a radio frequency alternating current, which can be applied to a Radio Antenna to be transmitted as radio waves."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transmitter&oldid=1061735586"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000270 +cco:ont00000270 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Educational Facility"@en ; + skos:definition "A Facility that is designed for facilitating learning, or the acquisition of knowledge, skills, values, beliefs, and habits."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000271 +cco:ont00000271 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000639 ; + rdfs:label "Underground Mine"@en ; + skos:definition "A Mine that is designed to support the extraction of materials from the ground using underground tunnels and shafts."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Underground_mining_(hard_rock)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000272 +cco:ont00000272 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Combustion"@en ; + skos:altLabel "Burning Process"@en , + "Combustion Process"@en ; + skos:definition "A Natural Process in which a Portion of Fuel or other Material Entity is burned."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000273 +cco:ont00000273 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Communication Interference Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to interfere with the transmission of information for the purpose of preventing communication."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000274 +cco:ont00000274 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Armed Force"@en ; + skos:definition "An Organization having the Objective to further the foreign and domestic policies of a Government and to defend that body and the nation it represents from external and internal aggressors."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000275 +cco:ont00000275 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000398 ; + rdfs:comment "Note that, while reference systems and reference frames are treated as synonyms here, some people treat them as related but separate entities. See: http://www.ggos-portal.org/lang_en/GGOS-Portal/EN/Topics/GeodeticApplications/GeodeticReferenceSystemsAndFrames/GeodeticReferenceSystemsAndFrames.html"@en ; + rdfs:label "Spatial Reference System"@en ; + skos:altLabel "Coordinate System"@en , + "Spatial Coordinate System"@en , + "Spatial Reference Frame"@en ; + skos:definition "A Reference System that describes a set of standards for uniquely identifying the position of an entity or the direction of a vector within a defined spatial region by means of measurements along one or more Coordinate System Axes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Coordinate_system&oldid=1060461397"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000276 +cco:ont00000276 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000891 ; + rdfs:label "Solar Calendar System"@en ; + skos:definition "A Calendar System that is designed to organize and identify dates based on the cycles of an Astronomical Body's Orbit around the Sun."@en ; + skos:scopeNote "Unless otherwise specified, a Solar Calendar System is assumed to be relative to the Orbit of the Earth around the Sun."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Solar_calendar&oldid=1058016588"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000277 +cco:ont00000277 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Nuclear Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of a destructive nuclear reaction, either through fission or through a combination of fission and fusion."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nuclear_weapon&oldid=1060854171"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000278 +cco:ont00000278 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:comment "The SI unit of measure for Momentum is Newton seconds (N s)."@en ; + rdfs:label "Momentum"@en ; + skos:definition "A Process Profile of an object in Motion that is the product of its Mass and Velocity with respect to a frame of reference."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000279 +cco:ont00000279 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000392 ; + rdfs:label "Enemy Role"@en ; + skos:definition "An Allegiance Role that inheres in an Agent by virtue of that Agent having committed offensive Acts or exhibited intent to perform such Acts towards a particular Agent or Group of Agents or has been declared as hostile by some appropriate authority."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000280 +cco:ont00000280 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001124 ; + rdfs:label "Torpedo"@en ; + skos:definition "A Precision-Guided Missile that is designed to be fired into a body of water, be self-propelled through the water, and carry an explosive payload."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Torpedo&oldid=1062609830"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000281 +cco:ont00000281 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001137 ; + rdfs:label "Albedo"@en ; + skos:definition "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of its surface to reflect incident electromagnetic radiation of a particular wavelength."@en ; + skos:scopeNote "Albedo is a reflection coefficient and is measured as the ratio of radiation reflected from the surface to the incident radiation. Albedo is dimensionless, can be expressed as a percentage, and is measured on a scale from 0 for no reflection to 1 for perfect reflection of a surface. Albedo depends on the wavelength of the radiation; when no wavelength is specified, it typically refers to some appropriate average across the spectrum of visible light."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Albedo&oldid=1063352646"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000282 +cco:ont00000282 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000719 ; + rdfs:label "Counterfeit Financial Instrument"@en ; + skos:definition "A Counterfeit Instrument that is designed to be a fake replica of some legally sanctioned Financial Instrument."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Counterfeit_money&oldid=1064052318"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000283 +cco:ont00000283 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001360 ; + rdfs:label "Cylindrical"@en ; + skos:altLabel "Columnar"@en ; + skos:definition "A Three Dimensional Shape inhering in a bearer in virtue of the bearer having an elongated shape with round bases."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000284 +cco:ont00000284 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000017 ; + rdfs:label "Strength"@en ; + skos:definition "A Realizable Entity that is realized when its bearer exerts or resists some power, influence, or force."@en ; + skos:scopeNote "Strength is intended to be understood broadly here. Physical strength is only one type of Strength. Other subtypes of Strength may include military strength, psychological strength, emotional strength, political strength, technological strength, and so on."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000285 +cco:ont00000285 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000269 ; + rdfs:label "Emergency Locator Transmitter"@en ; + skos:definition "A Radio Transmitter that is designed to signal distress and provide positional data for the entity it is located on."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Emergency_position-indicating_radiobeacon&oldid=1063407242"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000286 +cco:ont00000286 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000100 ; + rdfs:label "Stasis of Partially Mission Capable Maintenance"@en ; + skos:definition "A Stasis of Partially Mission Capable during which the participating Continuant is not capable of performing some of its primary functions for the specified Mission due to participating in an Act Of Maintenance."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000287 +cco:ont00000287 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001187 ; + rdfs:label "Inertial Navigation System"@en ; + skos:altLabel "INS"@en ; + skos:definition "A Navigation System that is designed to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Inertial_navigation_system&oldid=1063682725"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000288 +cco:ont00000288 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Power Source"@en ; + skos:definition "A Material Artifact that is designed to supply power to some other Artifact."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_source&oldid=1032888635"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000289 +cco:ont00000289 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000601 ; + rdfs:label "Radar Imaging Artifact Function"@en ; + skos:definition "An Imaging Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities using radio waves."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000290 +cco:ont00000290 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000726 ; + rdfs:label "Decrease of Specifically Dependent Continuant"@en ; + skos:definition "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in some Specifically Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000291 +cco:ont00000291 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Decoy Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Decoy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000292 +cco:ont00000292 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00000995 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000686 ; + rdfs:label "Artifact Identifier"@en ; + skos:definition "A Designative Information Content Entity which designates some Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000293 +cco:ont00000293 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001868 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001163 ; + owl:disjointWith cco:ont00001010 , + cco:ont00001022 , + cco:ont00001364 ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Nominal Measurement Information Content Entity"@en ; + skos:definition "A Measurement Information Content Entity that consists of a symbol that classifies Entities according to some shared, possibly arbitrary, characteristic."@en ; + skos:example "The sentence \"January 20, 1985 was a cold day in Chicago, IL\" is the carrier of a nominal measurement."@en , + "a measurement that classifies automobiles as sedans, coupes, hatchbacks, or convertibles" , + "a measurement that classifies military intelligence as strategic, operational, or tactical" , + "a measurement that classifies rocks as igneous, sedimentary, or metamorphic" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000294 +cco:ont00000294 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000533 ; + rdfs:label "Air-Breathing Jet Engine"@en ; + skos:altLabel "Ducted Jet Engine"@en ; + skos:definition "A Jet Engine that is propelled by a jet of hot exhaust gases formed from air that is drawn into the Engine via an Air Inlet."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Airbreathing_jet_engine&oldid=1062364308"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000295 +cco:ont00000295 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Wetness"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the degree to which the bearer is covered by a liquid, typically on a continuum of dry to wet."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000296 +cco:ont00000296 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000763 ; + rdfs:label "Angular Velocity"@en ; + skos:altLabel "Rotational Velocity"@en ; + skos:definition "A Velocity that is characterized by both the angular Speed of an object and the Axis about which the object is Rotating."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Angular_velocity&oldid=1060081663"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000297 +cco:ont00000297 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Portion of Hydrosphere"@en ; + skos:definition "A fiat object part of the combined mass of water found on, under, and above the surface of a natural satellite"@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hydrosphere&oldid=1128848972"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000298 +cco:ont00000298 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001173 ; + rdfs:label "Shoulder-Fired Rocket Launcher"@en ; + skos:definition "A Rocket Launcher that is designed to be small enough to be carried by a single person and fired while supported on the person's shoulder."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000299 +cco:ont00000299 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Prosthetic Leg"@en ; + skos:definition "A Prosthesis that is designed to replace a missing leg."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000300 +cco:ont00000300 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000027 , + [ owl:intersectionOf ( [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000115 ; + owl:someValuesFrom cco:ont00001017 + ] + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000115 ; + owl:allValuesFrom cco:ont00001017 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "Group of Agents"@en ; + skos:definition "An Object Aggregate that has only Agents as parts."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000301 +cco:ont00000301 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000663 ; + rdfs:label "Vehicle Transmission"@en ; + skos:altLabel "Gearbox"@en , + "Transmission"@en ; + skos:definition "A Power Transmission Artifact that is designed to vary the output speed and torque in a rotating power transfer system."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Transmission_(mechanics)"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000302 +cco:ont00000302 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Alternating Current Power Source"@en ; + skos:definition "An Electrical Power Source that is designed to transfer electrical power in the form of alternating current."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000303 +cco:ont00000303 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001036 ; + rdfs:label "Intercommunication System"@en ; + skos:definition "A Communication System that is designed to enable some Act of Communication between end points within a building, small collection of buildings, or within a small area of service."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Intercom&oldid=1055934442"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000304 +cco:ont00000304 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000771 ; + rdfs:label "Microscope"@en ; + skos:definition "An Imaging Instrument that is designed to enable users to see Objects that are otherwise too small to be seen by the naked eye by producing a significantly enlarged image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Microscope&oldid=1059024357"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000305 +cco:ont00000305 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000380 ; + rdfs:label "Sound Pressure"@en ; + skos:altLabel "Acoustic Pressure"@en ; + skos:definition "A Pressure that is caused by a Sound Wave and is a local deviation from the ambient Pressure."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000306 +cco:ont00000306 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001370 ; + rdfs:label "Hinge"@en ; + skos:definition "A Machine Bearing that is designed to limit the angle of Rotation between two solid objects."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hinge&oldid=1059935559"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000307 +cco:ont00000307 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001084 ; + rdfs:label "Portion of Food"@en ; + skos:definition "A Portion of Processed Material that is designed to be consumed and ingested for nutrition or taste."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Food&oldid=1062824590"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000308 +cco:ont00000308 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001226 ; + rdfs:label "Act of Military Service"@en ; + skos:definition "An Act of Employment wherein a Person serves as a member of a Military Force, whether voluntarily or by conscription."@en ; + cco:ont00001754 "http://www.collinsdictionary.com/dictionary/english/military-service" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000309 +cco:ont00000309 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Healthcare Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of treating and preventing illness."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Health_care&oldid=1064015344"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000310 +cco:ont00000310 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000552 ; + rdfs:label "Grenade"@en ; + skos:altLabel "Hand Grenade"@en ; + skos:definition "An Explosive Weapon that is designed to be relatively small and to be thrown by hand."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Grenade&oldid=1060366148"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000311 +cco:ont00000311 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001999 ; + rdfs:label "Filtration Artifact Function"@en ; + skos:definition "A Filter Function that is realized in a process in which some solid entity is prevented from moving along with some quantity of liquid."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Filtration&oldid=1061655528"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000312 +cco:ont00000312 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Propulsion Process"@en ; + skos:definition "A Natural Process in which one or more Forces are generated and applied to a participating Object such that the Object is set in Motion or has the direction or magnitude of its Motion altered."@en ; + skos:example "a twin-engine turboprop plane rotating both of its propellers against a portion of atmosphere to propel the plane forward" , + "an apple falling to the ground under the power of Earth's gravitational force" , + "burning a portion of fuel to produce exhaust that is ejected through a jet nozzle to propel a rocket and its payload" , + "heat from a fire causing ashes to rise into the sky" , + "launching a water balloon using a sling shot" , + "the wind blowing leaves across a lawn" , + "turning a paddle wheel against a portion of water to propel the paddle boat forward" ; + skos:scopeNote "In each case, a Propulsion Process minimally involves the Object being propelled, a Reaction Mass (e.g. a portion of water, atmosphere, exhaust, etc.), and the Force(s) acting between these two entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000313 +cco:ont00000313 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000752 ; + rdfs:comment "Assuming a non-dispersive media, the Wavelength will be the inverse of the Frequency."@en ; + rdfs:label "Wavelength"@en ; + skos:definition "A Wave Process Profile that is the distance the Wave Process traverses during one Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000314 +cco:ont00000314 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00000253 + ] ; + rdfs:comment "Typically, an IQE will be a complex pattern made up of multiple qualities joined together spatially."@en ; + rdfs:label "Information Quality Entity"@en ; + skos:altLabel "IQE"@en ; + skos:definition "A Quality that concretizes some Information Content Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000315 +cco:ont00000315 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000918 ; + rdfs:label "Telecommunication Switching Node"@en ; + skos:definition "A Telecommunication Network Node that is capable of redirecting a communication transmission to another Telecommunication Network Node."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000316 +cco:ont00000316 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000255 ; + rdfs:label "Portion of Liquid Helium"@en ; + skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid helium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000317 +cco:ont00000317 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001218 ; + rdfs:label "Electronic Signal Processing Artifact Function"@en ; + skos:definition "A Signal Processing Artifact Function that inheres in Artifacts that are designed to process or transfer information contained in electronic signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000318 +cco:ont00000318 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + rdfs:label "Disease"@en ; + skos:definition "A Disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/OGMS_0000031" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000319 +cco:ont00000319 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001942 ; + owl:someValuesFrom cco:ont00000995 + ] ; + rdfs:label "Artifact Design"@en ; + skos:definition "A Directive Information Content Entity that is a specification of an object, manifested by an agent, intended to accomplish goals, in a particular environment, using a set of primitive components, satisfying a set of requirements, subject to constraints."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Design&oldid=1063941625"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000320 +cco:ont00000320 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001251 ; + rdfs:label "Act of Reconnaissance"@en ; + skos:definition "An Act of Intelligence Gathering used to determine an Agent's disposition and intention; the composition and capabilities of Equipment and Facilities, and the surrounding landforms and weather conditions."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reconnaissance&oldid=1038843823"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000321 +cco:ont00000321 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Residential Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of residing in a dwelling or home."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000322 +cco:ont00000322 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Funding"@en ; + skos:definition "An Act of Financial Instrument Use in which an Agent provides a sum of money to another Agent for a particular purpose."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000323 +cco:ont00000323 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000034 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00000995 + ] ; + rdfs:label "Artifact Function"@en ; + skos:definition "A Function that inheres in some Artifact in virtue of that Artifact being designed to be used in processes that require that Function to be realized."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000324 +cco:ont00000324 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Width"@en ; + skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a horizontal direction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000325 +cco:ont00000325 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Radio Transponder"@en ; + skos:altLabel "Transmitter-Responder"@en ; + skos:definition "A Radio Communication Instrument that is an electronic device that acts as both a Radio Transmitter and responder and is used to wirelessly receive and transmit electrical signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000326 +cco:ont00000326 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "UPC Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of 6 or 12 numerical digits and is used to scan consumer goods."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000327 +cco:ont00000327 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Texture"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the size, shape, and distribution of features on its surface, typically on a continuum from smooth to rough."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000328 +cco:ont00000328 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000870 ; + rdfs:label "Transportation Infrastructure"@en ; + skos:definition "An Infrastructure System that is designed to facilitate the movement of material entities from one location to another by providing the necessary structures for Persons to travel or for Vehicles to transport material entities."@en ; + cco:ont00001754 "http://www.cfr.org/infrastructure/transportation-infrastructure-moving-america/p18611" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000329 +cco:ont00000329 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000225 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Month Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Months and spans at least one Month."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000330 +cco:ont00000330 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001076 ; + rdfs:label "Thermal Power Plant"@en ; + skos:definition "An Electric Power Station that is designed to convert heat energy into electrical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Thermal_power_station&oldid=1062208548"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000331 +cco:ont00000331 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000410 ; + rdfs:label "House"@en ; + skos:definition "A Residential Facility that is designed to provide a self-standing, permanent residence for an individual, family, household, multiple families, or similar-sized group."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=House&oldid=1062818553"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000332 +cco:ont00000332 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Training Camp"@en ; + skos:definition "A Facility that is designed for rigorous and focused training in order to learn or improve skills, usually involving physical actions."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Training_camp&oldid=1059977631"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000333 +cco:ont00000333 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000394 ; + rdfs:label "Gas Turbine"@en ; + skos:altLabel "Combustion Turbine"@en ; + skos:definition "An Internal Combustion Engine that has a rotating compressor and a turbine and is designed to operate utilizing continous Combustion to produce Thrust, either directly via exhaust or indirectly via a prop."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gas_turbine&oldid=1062398125"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000334 +cco:ont00000334 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000303 ; + rdfs:label "Interphone"@en ; + skos:definition "An Intercommunication System that that is designed to facilitate some Act of Communication between agents by means of audio messages."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000335 +cco:ont00000335 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000819 ; + rdfs:label "Stasis of Generically Dependent Continuant"@en ; + skos:definition "A Stasis in which some Independent Continuant bears some Generically Dependent Continuant that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000336 +cco:ont00000336 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000410 ; + rdfs:label "Apartment Building"@en ; + skos:definition "A Residential Facility that is designed to contain multiple permanent residences comprised of a suite of rooms."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Apartment&oldid=1064019048"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000337 +cco:ont00000337 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001029 ; + rdfs:label "Rocket-Propelled Grenade"@en ; + skos:definition "An Unguided Rocket that is designed to contain an explosive warhead, be fired from a Shoulder-Fired Rocket Launcher, and be used against Tanks."@en ; + cco:ont00001753 "RPG" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket-propelled_grenade&oldid=1063641548"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000338 +cco:ont00000338 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Fan"@en ; + skos:definition "A Fluid Control Artifact that consists of a rotating arrangement of vanes or blades that are designed to act on a portion of fluid to create flow within it."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Fan_(machine)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000339 +cco:ont00000339 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Agricultural Facility"@en ; + skos:definition "A Facility that is designed as a building or campus for agricultural processes with the aim of cultivating animals, plants, or fungi for food, fiber, biofuel, medicinal plants, or other products to sustain and enhance human life."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Agriculture&oldid=1063222666"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000340 +cco:ont00000340 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000268 ; + rdfs:label "Mortar"@en ; + skos:definition "A Cannon that is designed to fire projectiles at relatively low velocities over relatively short ranges."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Mortar_(weapon)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000341 +cco:ont00000341 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Prosthetic Arm"@en ; + skos:definition "A Prosthesis that is designed to replace a missing arm."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000342 +cco:ont00000342 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Brake"@en ; + skos:definition "A Material Artifact that is designed to inhibit the Vehicle's Motion by absorbing energy from a moving system."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Brake&oldid=1047693009"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000343 +cco:ont00000343 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000634 ; + rdfs:label "Reciprocating Steam Engine"@en ; + skos:definition "A Steam Engine that is designed to use one or more reciprocating pistons to convert pressure into a rotating motion."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reciprocating_engine&oldid=1057783145"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000344 +cco:ont00000344 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001281 ; + rdfs:label "Surfactant Artifact Function"@en ; + skos:definition "An Emulsifier Artifact Function that is realized in a process that lowers the surface tension between two liquids or between a liquid and a solid."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Surfactant&oldid=1063693411"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000345 +cco:ont00000345 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Measuring"@en ; + skos:definition "A Planned Act that involves determining the extent, dimensions, quanity, or quality of an Entity relative to some standard."@en ; + skos:example "putting an object on a scale to measure its weight in kilograms" , + "rating Hollywood movies on a 1 to 5 star scale" , + "using a tape measure to determine the height and width of a doorway in inches" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000346 +cco:ont00000346 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Communication Instrument"@en ; + skos:definition "A Material Artifact that is designed to facilitate communication between at least two entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000347 +cco:ont00000347 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001159 ; + rdfs:label "Electronic Bond"@en ; + skos:definition "A Bond that consists of Bytes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000348 +cco:ont00000348 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000995 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00001999 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Filter"@en ; + skos:definition "A Material Artifact that bears a Filter Function."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000349 +cco:ont00000349 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000479 ; + rdfs:label "Police Station"@en ; + skos:definition "A Public Safety Facility that is designed for the professional and clerical processes of a local police force."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Police_station&oldid=1056208781"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000350 +cco:ont00000350 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000453 ; + rdfs:label "Cooling System"@en ; + skos:definition "An Environment Control System that is designed to cool the air or objects in a Site."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000351 +cco:ont00000351 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000133 ; + rdfs:label "Act of Commanding"@en ; + skos:definition "An Act of Directive Communication that exercises authoritative control or power over another agent's actions."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=commanding (Edited 08-22-2016)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000352 +cco:ont00000352 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001139 ; + rdfs:label "Satellite Artifact"@en ; + skos:definition "A Spacecraft that is designed to Orbit a Space Object (typically Earth)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000353 +cco:ont00000353 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Research Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to perform research on a specified entity or class of entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000354 +cco:ont00000354 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000379 ; + rdfs:label "Act of Testifying"@en ; + skos:definition "An Act of Representative Communication performed by stating one's personal knowledge or belief."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/testify" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000355 +cco:ont00000355 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001009 ; + rdfs:label "Refracting Optical Telescope"@en ; + skos:altLabel "Refracting Telescope"@en , + "Refractor"@en ; + skos:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via refraction through the use of one or more Lenses to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Refracting_telescope&oldid=1059975066"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000356 +cco:ont00000356 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Publishing Mass Media Article"@en ; + skos:definition "An Act of Mass Media Communication involving the preparation and public issuance of a non-fictional essay, especially one included with others in a newspaper, magazine, journal, etc."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000357 +cco:ont00000357 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Motion"@en ; + skos:definition "A Planned Act by which an Agent causes the position or location of some Object to change."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/motion" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000358 +cco:ont00000358 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001130 ; + rdfs:label "Geospatial Region Bounding Box"@en ; + skos:definition "A Geospatial Polygon that has some Geospatial Region as a non-tangential proper part."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000359 +cco:ont00000359 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000223 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000132 ; + owl:someValuesFrom cco:ont00000498 + ] ; + rdfs:label "Julian Date"@en ; + skos:definition "A Time of Day as specified according to the Julian Calendar using the Julian Date epoch."@en ; + cco:ont00001753 "JD" ; + cco:ont00001754 "https://www.defit.org/julian-date/" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000360 +cco:ont00000360 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001289 ; + rdfs:label "Wounded Stasis"@en ; + skos:altLabel "Wounded"@en ; + skos:definition "A Damaged Stasis in which a Person or other organism is the bearer of a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to an injuring event."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000361 +cco:ont00000361 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001356 ; + rdfs:label "Increase of Function"@en ; + skos:definition "An Increase of Disposition in which some Independent Continuant has an increase of some Function that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000362 +cco:ont00000362 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000533 ; + rdfs:comment "Most rocket engines are also Internal Combustion Engines, however non-combusting forms also exist. For example, an untied balloon full of air that is released and allowed to zoom around the room may be both a Rocket Engine and a Physically Powered Engine."@en ; + rdfs:label "Rocket Engine"@en ; + skos:altLabel "Thruster"@en ; + skos:definition "A Jet Engine that is designed to use only stored Rocket Propellant to form a high speed propulsive jet in order to generate Thrust."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket_engine&oldid=1063879464"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000363 +cco:ont00000363 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000998 ; + rdfs:label "Wireless Telecommunication Network"@en ; + skos:altLabel "Wireless Network"@en ; + skos:definition "A Telecommunication Network that uses wireless connections to connect Telecommunication Network Nodes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wireless_network&oldid=1060257041"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000364 +cco:ont00000364 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001221 ; + rdfs:label "Pneumatic Motor"@en ; + skos:altLabel "Air Motor"@en , + "Compressed Air Engine"@en ; + skos:definition "A Physically Powered Engine that converts potential energy stored in a portion of compressed air into mechanical energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000365 +cco:ont00000365 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000161 ; + rdfs:label "x-Axis"@en ; + skos:definition "A Coordinate System Axis designated by the variable 'x'."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000366 +cco:ont00000366 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Information Processing"@en ; + skos:definition "A Planned Act in which one or more input Information Content Entities are received, manipulated, transferred, or stored by an Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000367 +cco:ont00000367 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001075 ; + rdfs:label "Act of Military Training Instruction"@en ; + skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Military Organization by imparting knowledge of the tactics, techniques, and/or strategies of Military Operations to an Agent either directly or indirectly through some communication medium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000368 +cco:ont00000368 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001133 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000296 + ] ; + rdfs:label "Rotational Motion"@en ; + skos:altLabel "Rotation"@en ; + skos:definition "A Motion Process in which an Object moves in a Circular or Elliptical Path around an Axis of Rotation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rotation&oldid=1055998344"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000369 +cco:ont00000369 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001010 ; + rdfs:label "Priority Measurement Information Content Entity"@en ; + skos:altLabel "Criticality Measurement"@en , + "Importance Measurement"@en , + "Priority Measurement"@en ; + skos:definition "An Ordinal Measurement Information Content Entity that is a measurement of the relative importance of an entity."@en ; + skos:example "low, normal, high, urgent, or immediate priority" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000370 +cco:ont00000370 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000123 ; + rdfs:label "Act of Condoling"@en ; + skos:definition "An Act of Expressive Communication performed by expressing sympathy or sorrow."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/condoling" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000371 +cco:ont00000371 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:comment "An Act of Prediction may involve the use of some or no relevant information. An Act of Prediction that utilizes relevant information may also be (or at least involve) an Act of Estimation. Hence, these two classes are not disjoint. Furthermore, neither class subsumes the other since estimates can be made about existing entities and not all predictions produce measurements (e.g. predicting that it will rain tomorrow)."@en ; + rdfs:label "Act of Prediction"@en ; + skos:definition "A Planned Act that involves the generation of a Predictive Information Content entity that is intended to describe an uncertain possible future event, value, entity, or attribute of an entity."@en ; + skos:example "a chess master predicting the next 8 moves his opponent will make" , + "predicting that a particular stock will double in value over the next fiscal quarter" , + "using sample exit polls data to predict the winners of an election" ; + skos:scopeNote "Predictions can only be made about things that are not yet the case (i.e. future things) and are further restricted to being about things that do not have a probability of either 1 (necessary) or 0 (impossible). For example, assuming that no organism is immortal, one cannot predict of a given organism that it will eventually die; however, one may predict uncertain things about the organism's eventual death, such as its precise cause or time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000372 +cco:ont00000372 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Power Transformer Rectifier Unit"@en ; + skos:altLabel "TRU"@en ; + skos:definition "A Material Artifact that is designed to perform the functions of both a Rectifier and a Transformer."@en ; + cco:ont00001754 "http://www.skybrary.aero/index.php/Transformer_Rectifier_Unit_(TRU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000373 +cco:ont00000373 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000147 ; + rdfs:label "Geospatial Position"@en ; + skos:definition "A Fiat Point that is at or near the surface of the Earth and fixed according to some Geospatial Coordinate Reference System."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000374 +cco:ont00000374 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000061 ; + rdfs:label "Measurement Unit of Volumetric Flow Rate"@en ; + skos:definition "A Measurement Unit of Flow that is used as a standard for measurement of the rate at which volumes of fluid pass per unit time."@en ; + skos:example "cubic metres per second, standard cubic centimeters per minute, cubic feet per second, gallons per minute" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000375 +cco:ont00000375 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Warehouse"@en ; + skos:definition "A Storage Facility that is designed to store commercial goods."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Warehouse&oldid=1063721454"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000376 +cco:ont00000376 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Gallium Arsenide"@en ; + skos:altLabel "Portion of GaAs"@en ; + skos:definition "A Portion of Material that is composed of a compound of the elements gallium and arsenic."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000377 +cco:ont00000377 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Disability"@en ; + skos:definition "A Quality inhering in an Agent by virtue a physical or mental condition that limits the Agent's movements, senses, or activities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000378 +cco:ont00000378 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000784 ; + rdfs:label "Color"@en ; + skos:definition "An Optical Property that inheres in a bearer in virtue of that bearer's Color Hue, Color Saturation and Color Brightness."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000379 +cco:ont00000379 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:comment "Examples: affirming, alleging, announcing, answering, attributing, claiming, classifying, concurring, confirming, conjecturing, denying, disagreeing, disclosing, disputing, identifying, informing, insisting, predicting, ranking, reporting, stating, stipulating"@en ; + rdfs:label "Act of Representative Communication"@en ; + skos:definition "An Act of Communication that commits a speaker to the truth of the expressed proposition."@en ; + cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000380 +cco:ont00000380 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000570 ; + rdfs:label "Pressure"@en ; + skos:definition "A Force that is applied perpendicular to the surface of an Object per unit area over which that Force is distributed."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000381 +cco:ont00000381 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Weapon Manufacturing Facility"@en ; + skos:definition "A Factory that is designed to produce or assemble weapons."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Arms_industry&oldid=1063811497"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000382 +cco:ont00000382 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Spreadsheet"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some Information Content Entity in an interactive, tabular form."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Spreadsheet&oldid=1064060503"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000383 +cco:ont00000383 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000837 ; + rdfs:label "Nuclear Family"@en ; + skos:definition "A Family composed of parents and their children."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000384 +cco:ont00000384 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000789 ; + rdfs:label "Rectilinear Motion"@en ; + skos:altLabel "Linear Motion"@en ; + skos:definition "A Translational Motion process in which an Object moves along a straight path."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000385 +cco:ont00000385 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Wide"@en ; + skos:altLabel "Broad"@en , + "Fat"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly larger in proportion to its length or height."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000386 +cco:ont00000386 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:comment "Essentially, webcasting is “broadcasting” over the Internet."@en ; + rdfs:label "Webcast"@en ; + skos:altLabel "Act of Webcasting"@en ; + skos:definition "An Act of Communciation by Media transmitted to an audience over the Internet using streaming media technology to distribute a single content source that may be distributed live or on demand."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Webcast&oldid=1062685084"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000387 +cco:ont00000387 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Axis of Rotation"@en ; + skos:altLabel "Rotational Axis"@en ; + skos:definition "A One-Dimensional Spatial Region defined by the line around which a spinning body rotates."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000388 +cco:ont00000388 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000987 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 ; + rdfs:label "Citizen"@en ; + skos:definition "A Person who is the bearer of some Citizen Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000389 +cco:ont00000389 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001334 ; + rdfs:label "Act of Buying"@en ; + skos:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Buyer) to acquire ownership of a good from another Agent (the Seller)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000390 +cco:ont00000390 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000686 ; + rdfs:label "Spatial Region Identifier"@en ; + skos:definition "A Designative Information Content Entity that designates some Spatial Region."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000391 +cco:ont00000391 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:comment "The corresponding Wavelength range is 1–0.1 mm"@en ; + rdfs:label "Tremendously High Frequency"@en ; + skos:altLabel "ITU Band Number 12"@en , + "Submillimeter Band Frequency"@en , + "Terahertz Radiation Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 300 GHz and 3 THz."@en ; + cco:ont00001753 "THF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000392 +cco:ont00000392 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Allegiance Role"@en ; + skos:definition "A Role that inheres in an Agent by virtue of the support it has committed to provide to another Agent when that Agent is involved in a conflict."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000393 +cco:ont00000393 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000387 ; + rdfs:label "Yaw Axis"@en ; + skos:altLabel "Vertical Axis"@en ; + skos:definition "An Axis of Rotation that passes through the center of an object's Mass from the top to the bottom and is perpendicular to the direction of the object's motion. For objects in Orbit, the Yaw Axis passes through the Barycenter of its Orbit."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000394 +cco:ont00000394 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000746 ; + rdfs:label "Internal Combustion Engine"@en ; + skos:definition "A Combustion Engine that is designed to have an internal Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy that is then converted into mechanical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Internal_combustion_engine&oldid=1063281505"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000395 +cco:ont00000395 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000554 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000020 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Specifically Dependent Continuant"@en ; + skos:definition "A Gain of Dependent Continuant in which some Independent Continuant becomes the bearer of some Specifically Dependent Continuant."@en ; + skos:example "A Person becomes pregnant (gain of quality), A person becomes forgetful (gain of disposition), A vehicle becomes amphibious (gain of function), A Person becomes a Database Administrator (gain of role)." ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000396 +cco:ont00000396 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 100,000–10,000 km"@en ; + rdfs:label "Extremely Low Frequency"@en ; + skos:altLabel "ITU Band Number 1"@en ; + skos:definition "A Radio Frequency that is between 3 and 30 Hz."@en ; + cco:ont00001753 "ELF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000397 +cco:ont00000397 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Combustion Chamber"@en ; + skos:altLabel "Burner"@en , + "Combustor"@en , + "Flame Holder"@en ; + skos:definition "A Material Artifact that is designed to wholly or partially bound an internal Site where a Combustion process is intended to occur."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000398 +cco:ont00000398 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000853 ; + rdfs:label "Reference System"@en ; + skos:definition "A Descriptive Information Content Entity that describes a set of standards for organizing and understanding data of the specified type or domain."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000399 +cco:ont00000399 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom obo:BFO_0000008 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000686 ; + rdfs:label "Temporal Region Identifier"@en ; + skos:definition "A Designative Information Content Entity that designates some Temporal Region."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000400 +cco:ont00000400 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001197 ; + rdfs:label "Park"@en ; + skos:definition "An Anthropogenic Feature that is a bounded area of land, or water, usually in its natural or semi-natural (landscaped) state and set aside for some purpose, usually to do with recreation or conservation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Park&oldid=1061073992"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000401 +cco:ont00000401 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000008 ; + rdfs:label "Fundamental Frequency"@en ; + skos:definition "A Sound Frequency that is the lowest Frequency of a Sound Wave."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000402 +cco:ont00000402 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Communication"@en ; + skos:definition "A Planned Act in which some Information Content Entity is transferred from some Agent to Another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Communication&oldid=1063752020"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000403 +cco:ont00000403 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Diffraction Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a diffraction event in which the Artifact forces a wave to bend around the corners of an obstacle or aperture into the region of geometrical shadow of the obstacle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000404 +cco:ont00000404 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000500 + ] ; + rdfs:label "Iris"@en ; + skos:definition "A Bodily Component that consists of the part of an Eye that is a pigmented, round, contractile membrane, suspended between the cornea and lens and perforated by the pupil, and which canonically regulates the amount of light entering the Eye."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/iris" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000405 +cco:ont00000405 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000126 + ] ; + rdfs:label "Second-Order Administrative Region"@en ; + skos:definition "A Government Domain that is a subdivision of a First-Order Administrative Region."@en ; + cco:ont00001754 "http://www.geonames.org/export/codes.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000406 +cco:ont00000406 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Geocoordinate"@en ; + skos:definition "A Measurement Unit specifying the geospatial coordinates of a location."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000407 +cco:ont00000407 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Electrical Resistance Artifact Function"@en ; + skos:definition "An Electrical Artifact Function that is realized in processes in which an Artifact opposes the flow of an electric current."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electrical_resistivity_and_conductivity&oldid=1063749049"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000408 +cco:ont00000408 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00001335 + ] ; + rdfs:label "Government Organization"@en ; + skos:definition "An Organization that is part of a Government and is responsible for the oversight or administration of specific governmental functions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000409 +cco:ont00000409 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000742 ; + rdfs:label "Spark Ignition System"@en ; + skos:definition "An Ignition System that is designed to produce a spark in order to initiate an Ignition process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000410 +cco:ont00000410 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Residential Facility"@en ; + skos:definition "A Facility that is designed to house one or more Persons."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000411 +cco:ont00000411 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001100 ; + rdfs:label "Speed Measurement Artifact Function"@en ; + skos:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Speed of a specified object's or class of objects' Motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000412 +cco:ont00000412 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Oxidizer Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which electrons are removed from a reactant in a redox reaction."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Redox&oldid=1063866348"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000413 +cco:ont00000413 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000304 ; + rdfs:label "Electron Microscope"@en ; + skos:definition "A Microscope that is designed to use a beam of accelerated electrons to illuminate the target and produce a significantly enlarged image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electron_microscope&oldid=1060512240"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000414 +cco:ont00000414 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001286 ; + rdfs:label "Square Waveform"@en ; + skos:definition "A Waveform that is characterized by a square shape due to the near-instantaneous transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000415 +cco:ont00000415 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000828 ; + rdfs:label "Anti-Microbial Artifact Function"@en ; + skos:definition "A Pesticide Artifact Function that is realized in a process which causes illness in, or the death of, a microorganism."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Antimicrobial&oldid=1064100151"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000416 +cco:ont00000416 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Publishing Mass Media Press Release"@en ; + skos:definition "An Act of Mass Media Communication involving the preparation and public issuance of an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000417 +cco:ont00000417 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Prosthetic Hand"@en ; + skos:definition "A Prosthesis that is designed to replace a missing hand."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000418 +cco:ont00000418 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000005 ; + rdfs:label "Biographical Life"@en ; + skos:definition "An Act composed of the Life Events that occur during the course of existence of an Agent (i.e. Person or Organization)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000419 +cco:ont00000419 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000077 ; + rdfs:label "Part Number"@en ; + skos:definition "A Code Identifier that designates a type of part whose instances are designed to be part of some Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000420 +cco:ont00000420 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000117 ; + rdfs:label "Computer"@en ; + skos:definition "An Information Processing Artifact that is designed to execute an arbitrary set of arithmetic or logical operations automatically."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Computer&oldid=1061553332"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000421 +cco:ont00000421 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000330 ; + rdfs:label "Nuclear Power Plant"@en ; + skos:definition "A Thermal Power Plant that is designed to produce heat by means of a nuclear reactor, which is then converted to electrical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nuclear_power_plant&oldid=1062752651"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000422 +cco:ont00000422 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Communication Reception Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to receive information that has been transmitted for the purpose of communiction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000423 +cco:ont00000423 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Motor Vehicle Manufacturing Facility"@en ; + skos:definition "A Factory that is designed to manufacture automobiles."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Automotive_industry&oldid=1061661751"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000424 +cco:ont00000424 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Sharp"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a fine point or thin edge."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000425 +cco:ont00000425 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000674 ; + rdfs:comment "A Gregorian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.2425 Gregorian Days. The Gregorian Year is based upon the vernal equinox year. Unless otherwise stated, instances of Calendar Year are assumed to be instances of Gregorian Year since the Gregorian Calendar is the most widely used civil Calendar System."@en ; + rdfs:label "Gregorian Year"@en ; + skos:definition "A Calendar Year in the Gregorian Calendar."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000426 +cco:ont00000426 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000274 ; + rdfs:label "Military Personnel Force"@en ; + skos:definition "An Armed Force authorized to use deadly force, and weapons, to support the interests of the Government and some or all of its Citizens."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000427 +cco:ont00000427 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000053 ; + rdfs:label "Armored Fighting Vehicle"@en ; + skos:definition "A Ground Motor Vehicle that is designed to be armored and used to transport and support military personal in combat missions."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Armoured_fighting_vehicle&oldid=1063212018"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000428 +cco:ont00000428 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Railway Junction"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable a Train to switch between the tracks of two routes."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Junction_(rail)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000429 +cco:ont00000429 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "Codabar Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of numbers 0-9 and the characters -$:/.+ and is used by logistics and healthcare professionals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000430 +cco:ont00000430 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000850 ; + rdfs:label "Stable Orientation"@en ; + skos:definition "A Stasis of Quality that holds during a Temporal Interval when an object maintains the same Spatial Orientation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000431 +cco:ont00000431 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000746 ; + rdfs:label "External Combustion Engine"@en ; + skos:definition "A Combustion Engine that is designed to have an external Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy to heat the working fluid, which transfers energy to the Engine where it is converted into mechanical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=External_combustion_engine&oldid=1063941809"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000432 +cco:ont00000432 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Missile Launch Site"@en ; + skos:definition "A Military Facility that is designed for storing and launching missiles."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Missile_launch_facility&oldid=1062709375"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000433 +cco:ont00000433 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001327 ; + rdfs:label "Act of Association"@en ; + skos:definition "A Social Act wherein an Agent unites with some other Agent in a Planned Act, enterprise or business."@en ; + cco:ont00001754 "http://en.wiktionary.org/wiki/associate" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000434 +cco:ont00000434 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001207 ; + rdfs:label "Simple Optical Lens"@en ; + skos:definition "An Optical Lens consisting of a single piece of transparent material."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000435 +cco:ont00000435 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000921 ; + rdfs:comment "A Gregorian Day is twenty-four Hours in duration."@en ; + rdfs:label "Gregorian Day"@en ; + skos:definition "A Calendar Day in the Gregorian Calendar."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000436 +cco:ont00000436 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000304 ; + rdfs:label "X-ray Microscope"@en ; + skos:definition "A Microscope that is designed to use Electromagnetic Radiation in the soft X-ray band to produce a significantly enlarged image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=X-ray_microscope&oldid=1046169107"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000437 +cco:ont00000437 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Enhancing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes of intensifying, increainsg, or further improving the quality, value, or extent of some entity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Enhancement&oldid=1003326590"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000438 +cco:ont00000438 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001374 ; + rdfs:label "Act of Official Documentation"@en ; + skos:definition "An Act of Declarative Communication in which an Agent records some information for official use by another Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000439 +cco:ont00000439 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Black"@en ; + skos:definition "A Color that lacks any hues as parts."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000440 +cco:ont00000440 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000713 ; + rdfs:label "Watercraft"@en ; + skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by water travel."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Watercraft&oldid=1054071067"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000441 +cco:ont00000441 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Temperature"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of its thermal energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000442 +cco:ont00000442 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Radioactive"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of that bearer exhibiting or being caused by radioactivity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000443 +cco:ont00000443 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001180 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000485 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Commercial Organization"@en ; + skos:definition "An Organization that is the bearer of a Commercial Role and whose primary objective is to make a profit from the provision of goods or services."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000444 +cco:ont00000444 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Energy"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the Amount of work that is available in an object."@en ; + skos:example "ft-lbs, calorie, horsepower, kilowatt" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000445 +cco:ont00000445 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Weapon"@en ; + skos:definition "A Material Artifact that is designed to destroy or inflict damage to structures or systems, or to kill or wound living things by creating specific lethal or nonlethal effects."@en ; + skos:scopeNote "Nonlethal effects include all outcomes short of death or destruction. This is captured by the fact that Damaged Stasis and Wounded Stasis are defined in terms of impairment of the Independent Continuant that participates in them."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Weapon&oldid=1143263715"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000446 +cco:ont00000446 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001293 ; + rdfs:label "Circumference"@en ; + skos:definition "A Perimeter that inheres in a circle or ellipse."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000447 +cco:ont00000447 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Triangular"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of it having exactly three angles and exactly three sides."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000448 +cco:ont00000448 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Motion Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which an entity changes its position with respect to time."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Motion_(physics)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000449 +cco:ont00000449 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001334 ; + rdfs:comment "Comment: Remuneration normally consists of salary or hourly wages, but also applies to commission, stock options, fringe benefits, etc."@en ; + rdfs:label "Act of Remuneration"@en ; + skos:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Employer) to compensate another Agent (the Employee) for the services they perform for the Employer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Remuneration&oldid=1033306001"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000450 +cco:ont00000450 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Silver Color"@en ; + skos:definition "A Color that resembles Grey with the added feature of having a metallic shine."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000451 +cco:ont00000451 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Collimation Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a collimation event in which the Artifact narrows a beam of particles or waves by either causing the spatial cross-section of the beam to become smaller or by causing the directions of motion of the beam's constituents to be aligned in a specifc direction of Motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000452 +cco:ont00000452 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Timekeeping Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to keep track of and report the current time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000453 +cco:ont00000453 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:comment "Controlling air quality typically involves temperature control, oxygen replenishment, and removal of moisture, odor, smoke, heat, dust, airborne bacteria, carbon dioxide, and other undesired gases or particulates."@en ; + rdfs:label "Environment Control System"@en ; + skos:definition "A Material Artifact that is designed to control the temperature, air quality, or other feature of a Site that is relevant to the comfort or operation of entities located within that Site."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000454 +cco:ont00000454 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000742 ; + rdfs:label "Compression Ignition System"@en ; + skos:definition "An Ignition System that is designed to generate heat by compressing a portion of fuel and oxidizer mixture in order to initiate an Ignition process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000455 +cco:ont00000455 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001327 ; + rdfs:label "Act of Ceremony"@en ; + skos:definition "A Social Act of ritual significance, performed on a special occasion."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ceremony&oldid=1064081855"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000456 +cco:ont00000456 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Railway"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable Trains to transport passengers and goods."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000457 +cco:ont00000457 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001084 ; + rdfs:label "Portion of Material"@en ; + skos:definition "A Portion of Processed Material that was produced to be used as the input for another Act of Artifact Processing."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000458 +cco:ont00000458 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Coupling"@en ; + skos:definition "A Material Artifact that is designed to connect two Shafts together at their ends for the purpose of transmitting power."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Coupling&oldid=1055718683"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000459 +cco:ont00000459 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001126 ; + rdfs:label "Fluorescence"@en ; + skos:definition "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light while absorbing shorter wavelength radiation, but not after."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fluorescence&oldid=1061358510"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000460 +cco:ont00000460 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 ; + rdfs:label "Local Administrative Region"@en ; + skos:altLabel "Locality"@en ; + skos:definition "A Government Domain that delimits a local Government."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000461 +cco:ont00000461 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000966 ; + rdfs:label "ISSN Barcode"@en ; + skos:definition "An EAN Barcode that is used to designate periodicals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000462 +cco:ont00000462 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000609 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000034 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the BFO 'occupies temporal region' property) that the Entity bears the Function."@en ; + rdfs:label "Gain of Function"@en ; + skos:definition "A Gain of Disposition in which some Independent Continuant becomes the bearer of some Function."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000463 +cco:ont00000463 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001075 ; + rdfs:label "Act of Educational Training Instruction"@en ; + skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Educational Organization by imparting knowledge of a curriculum to an Agent either directly or indirectly through some communication medium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000464 +cco:ont00000464 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Oblong"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having an long thin shape with approximately parallel sides."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000465 +cco:ont00000465 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000223 ; + rdfs:comment """A Day begins at midnight GMT within the Modified Julian Date reference system. The Modified Julian Date (MJD) is related to the Julian Date (JD) by the formula: +MJD = JD - 2400000.5"""@en ; + rdfs:label "Modified Julian Date"@en ; + skos:definition "A Time of Day as specified according to the Julian Calendar using the Modified Julian Date epoch."@en ; + cco:ont00001753 "MJD" ; + cco:ont00001754 "http://aa.usno.navy.mil/data/docs/JulianDate.php" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000466 +cco:ont00000466 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Orientation Control Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact is used to control the Orientation of some object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000467 +cco:ont00000467 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000427 ; + rdfs:label "Armored Personnel Carrier"@en ; + skos:definition "An Armored Fighting Vehicle that is designed to transport infantry to the battlefield but which are not usually designed to take part in a direct-fire battle."@en ; + cco:ont00001753 "APC" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Armoured_personnel_carrier&oldid=1061608326"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000468 +cco:ont00000468 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001102 ; + rdfs:label "Office Building"@en ; + skos:definition "A Commercial Facility that is designed as an environment for conducting commercial, professional, or bureaucratic work."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Office&oldid=1063508719"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000469 +cco:ont00000469 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000275 ; + rdfs:label "Geospatial Coordinate Reference System"@en ; + skos:altLabel "Geographic Coordinate System"@en ; + skos:definition "A Spatial Reference System that is used to determine and identify the location of a point or object at or near the surface of the Earth."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000470 +cco:ont00000470 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000189 ; + rdfs:label "Academic Degree"@en ; + skos:definition "A Certificate issued by an Educational Organization to a Person to indicate that the Person has satisfactorily completed a course of study, or as an honorary recognition of the Person's achievement."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/degree" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000471 +cco:ont00000471 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001046 ; + rdfs:label "Warning Message"@en ; + skos:definition "A Notification Message that is designed to bear an Information Content Entity that describes a possible or impending threat."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000472 +cco:ont00000472 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000029 ; + rdfs:label "Geospatial Region"@en ; + skos:definition "A Site that is at or near the surface of the Earth."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000473 +cco:ont00000473 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000134 + ] ; + rdfs:label "Fourth-Order Administrative Region"@en ; + skos:definition "A Government Domain that is a subdivision of a Third-Order Administrative Region."@en ; + cco:ont00001754 "http://www.geonames.org/export/codes.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000474 +cco:ont00000474 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Curved"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having borders which are smoothly rounded."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000475 +cco:ont00000475 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000537 ; + rdfs:label "Portion of Cash"@en ; + skos:definition "A Financial Instrument that is designed to be a ready medium of exchange."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000476 +cco:ont00000476 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Objective"@en ; + skos:definition "A Directive Information Content Entity that prescribes some projected state that some Agent intends to achieve."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Objective_(goal)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000477 +cco:ont00000477 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Fuel Cell"@en ; + skos:definition "An Electrical Power Source that consists in part of an anode, a cathode, and an electrolyte; converts chemical energy from a fuel into electricity through a chemical reaction of positively charged hydrogen ions with an oxidizing agent (typically oxygen); and, if given a continuous source of fuel and oxidizing agent, can continuously produce electricity."@en ; + skos:scopeNote "A Fuel Cell differs from a Battery in that it requires a continuous source of fuel and oxygen to sustain the chemical reaction, whereas a Battery only uses chemicals already stored inside it."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fuel_cell&oldid=1063586731"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000478 +cco:ont00000478 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001360 ; + rdfs:label "Cuboidal"@en ; + skos:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having six Rectangular faces."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000479 +cco:ont00000479 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Public Safety Facility"@en ; + skos:definition "A Facility that is designed for the prevention of and protection from events that could endanger, injure, or damage the general public."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000480 +cco:ont00000480 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Life Support Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact materially affects an organism, where this causes that organism to continue living in a situation where death would otherwise occur."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000481 +cco:ont00000481 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Research and Development Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of producing new knowledge or of devising new applications of existing knowledge."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Research_and_development&oldid=1062181110"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000482 +cco:ont00000482 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000289 ; + rdfs:label "Synthetic Aperture Radar Imaging Artifact Function"@en ; + skos:definition "A Radar Imaging Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities using the motion of a radar antenna over a targeted region to create a synthetic aperture."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000483 +cco:ont00000483 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Military Base"@en ; + skos:definition "A Military Facility that is designed to shelter military equipment and personnel and to facilitate training and operations."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military_base&oldid=1047077734"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000484 +cco:ont00000484 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Concave Shape"@en ; + skos:definition "A Shape Quality that inheres in a bearer in virtue of the bearer having one or more cavities, such that at least one line connecting a pair of points on the surface of the bearer will lie outside."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000485 +cco:ont00000485 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Commercial Role"@en ; + skos:definition "A Role that inheres in an Organization by virtue of its establishment as a for-profit business."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000486 +cco:ont00000486 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000392 ; + rdfs:label "Neutral Role"@en ; + skos:definition "An Allegiance Role that inheres in an Agent by virtue of that Agent not performing or being committed to performing Acts that have as their Objective to either support or undermine the Objectives of an Agent or Group of Agents involved in some conflict."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000487 +cco:ont00000487 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000472 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000124 ; + owl:someValuesFrom obo:BFO_0000001 + ] ; + rdfs:label "Geospatial Location"@en ; + skos:definition "A Geospatial Region that is at which an Entity or Event is located."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000488 +cco:ont00000488 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Tripod"@en ; + skos:definition "A Material Artifact that consists of three legs and a platform that joins them and which is designed to support the weight and maintain the stability of objects that are attached to or rested on the platform."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tripod&oldid=1063988190"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000489 +cco:ont00000489 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000224 ; + rdfs:label "High Density Residential Area"@en ; + skos:definition "A Populated Place which is characterized by densely contained multiple-unit living structures."@en ; + cco:ont00001754 "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000490 +cco:ont00000490 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:label "X-ray Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 30 petahertz and 30 exahertz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000491 +cco:ont00000491 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Detonating Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes of combustion involving a supersonic exothermic front accelerating through a medium that eventually drives a shock front propagating directly in front of it."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Detonation&oldid=1061553336"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000492 +cco:ont00000492 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Email Messaging"@en ; + skos:altLabel "Act of Emailing"@en ; + skos:definition "An Act of Communication by Media in which text-based communication occurs between two or more people using personal computers or other devices using some Email Client Software conveyed over the Internet."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000493 +cco:ont00000493 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000799 ; + rdfs:label "Code List"@en ; + skos:definition "A List that contains an ordered sequence of Information Bearing Entities that carry Code Identifiers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000494 +cco:ont00000494 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Serrated"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having multiple sharp points along a edge."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000495 +cco:ont00000495 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000273 ; + rdfs:label "Radio Communication Interference Artifact Function"@en ; + skos:definition "A Communication Interference Artifact Function that is realized during events in which an Artifact is used to interfere with the transmission of information via radio waves."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000496 +cco:ont00000496 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001175 ; + rdfs:label "Natural Language"@en ; + skos:definition "A Language that is developed and evolves through use and repetition, rather than through conscious planning or premeditation."@en ; + skos:example "English" , + "Mandarin (Chinese)" , + "Spanish" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Natural_language&oldid=1060890461"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000497 +cco:ont00000497 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Force"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of interactions in which the Motion or Velocity of an object is changed, unless the interaction is opposed."@en ; + skos:example "newton, dyne, pound force " ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000498 +cco:ont00000498 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000921 ; + rdfs:comment "A Julian Day begins at noon Universal Time and is twenty-four Hours in duration."@en ; + rdfs:label "Julian Day"@en ; + skos:definition "A Calendar Day in the Julian Calendar."@en ; + cco:ont00001754 "https://www.defit.org/julian-date/" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000499 +cco:ont00000499 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001192 ; + rdfs:label "Wire Antenna"@en ; + skos:definition "A Radio Antenna that consists primarily of a length of wire."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000500 +cco:ont00000500 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Eye"@en ; + skos:definition "A Bodily Component that consists of an organ that canonically affords the Agent it is part of with the ability to receive visual stimuli necessary for sight."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000501 +cco:ont00000501 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Financial Withdrawal"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent to another Agent (the Depositor) from an account created by an earlier Act of Financial Deposit performed by the Depositor."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Deposit_(bank)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000502 +cco:ont00000502 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Area Moment of Inertia"@en ; + skos:altLabel "Measurement Unit of Second Area Moment"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the distribution of Mass of an object with respect to an axis."@en ; + skos:scopeNote "A measure of an object’s resistance to bending or deflection."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000503 +cco:ont00000503 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Power"@en ; + skos:definition "A Process Profile that is characterized by the rate of Work, or Energy consumed, done in a given time period."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000504 +cco:ont00000504 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Optical Processing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a visible light processing event."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000505 +cco:ont00000505 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000018 ; + rdfs:label "Center of Mass"@en ; + skos:definition "A Zero-Dimensional Spatial Region that is the point where the weighted position vectors of the distributed Mass of a Material Entity relative to this point sum to zero."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Center_of_mass&oldid=1059976491"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000506 +cco:ont00000506 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Contractor Role"@en ; + skos:definition "A Role that inheres in an Agent or Group of Agents by virtue of that Agent or Group of Agents entering into a Contract to provide materials or labor to perform a service or complete a task."@en ; + skos:scopeNote "A Contractor Role differs from an Occupation Role in at least two ways. First, the Contract that binds the two parties together is not one of employment. Second, a Contractor Role is occupationally neutral in that an Agent can be contracted to perform any number of Occupational Roles."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000507 +cco:ont00000507 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000914 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001907 ; + owl:someValuesFrom cco:ont00000780 + ] ; + rdfs:label "Ethnic Group"@en ; + skos:definition "A Group of Persons who identify with one another based on one or more shared inherited characteristics such as language, ancestry, nationality, culture, customs, religion, or social experiences."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000508 +cco:ont00000508 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000610 ; + rdfs:label "Near Ultraviolet Light Frequency"@en ; + skos:definition "An Ultraviolet Light Frequency that is between 750 terahertz and 3 petahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000509 +cco:ont00000509 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Service Provider"@en ; + skos:definition "An Organization whose purpose is to provide a service to other Agents."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Service_provider&oldid=1059415018"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000510 +cco:ont00000510 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000052 ; + rdfs:label "Mosque"@en ; + skos:definition "A Religious Facility that is designed for Islamic worship and prayer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mosque&oldid=1062609892"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000511 +cco:ont00000511 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Planning"@en ; + skos:definition "A Planned Act that involves making a Plan to achieve some specified Objective."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000512 +cco:ont00000512 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000628 ; + rdfs:label "Radiation Emissivity"@en ; + skos:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to emit electromagnetic radiation of a given frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000513 +cco:ont00000513 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Tool Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Tool."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000514 +cco:ont00000514 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000752 ; + rdfs:label "Transverse Wave Profile"@en ; + skos:altLabel "Transverse Wave"@en ; + skos:definition "A Wave Process Profile in which the displacement of participating particles is perpendicular to the direction of the Wave Process' propogation."@en ; + cco:ont00001754 "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000515 +cco:ont00000515 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Vehicle Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Vehicle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000516 +cco:ont00000516 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000288 ; + rdfs:label "Pneumatic Power Source"@en ; + skos:definition "A Power Source that is designed to generate, control, or transmit power by means of compressed air or compressed inert gases."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000517 +cco:ont00000517 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:label "Act of Communication by Media"@en ; + skos:definition "An Act of Communication in which some Artifact is used to transfer an Information Bearing Entity from sender(s) to receiver(s)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000518 +cco:ont00000518 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Currency"@en ; + skos:definition "A Measurement Unit used in measurements of financial values."@en ; + skos:example "U.S. Dollar, Euro, Yuan, South African Rand" ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000519 +cco:ont00000519 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000732 ; + rdfs:comment "The corresponding Wavelength range is 10–1 mm"@en ; + rdfs:label "Extremely High Frequency"@en ; + skos:altLabel "ITU Band Number 11"@en , + "Millimeter Band Frequency"@en ; + skos:definition "A Microwave Frequency that is between 30 and 300 GHz."@en ; + cco:ont00001753 "EHF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000520 +cco:ont00000520 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Departure"@en ; + skos:definition "An Act of Location Change that consists of the participating entity leaving its starting location such that the larger Act of Location Change is initiated."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000521 +cco:ont00000521 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001272 ; + rdfs:label "Act of Assassination"@en ; + skos:definition "An Act of Murder of a prominent person."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000522 +cco:ont00000522 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000294 ; + rdfs:label "Pulsejet Engine"@en ; + skos:altLabel "Pulse Jet"@en , + "Pulsejet"@en ; + skos:definition "An Air-Breathing Jet Engine that is capable of operating statically and uses intermittent (pulsing) Combustion of the fuel-oxidizer mixture before expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pulsejet&oldid=1050473545"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000523 +cco:ont00000523 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000862 ; + rdfs:label "Loudness"@en ; + skos:definition "A Sound Process Profile that is characterized by the amplitude and total energy of translated sound waves, typically on a continuum from soft to loud."@en ; + cco:ont00001754 "https://byjus.com/physics/loudness-of-sound/"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000524 +cco:ont00000524 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000350 ; + rdfs:label "Air Conditioning Unit"@en ; + skos:altLabel "AC Unit"@en ; + skos:definition "A Cooling System that is designed to remove excess heat and humidity from the air in an enclosed space."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Air_conditioning&oldid=1063494896"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000525 +cco:ont00000525 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001384 ; + rdfs:label "Transparent"@en ; + skos:definition "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit all or nearly all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs little or no electromagnetic radiation of that frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000526 +cco:ont00000526 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:label "Gamma-ray Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Gamma-rays to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000527 +cco:ont00000527 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Rotational Inertia"@en ; + skos:altLabel "Measurement Unit of Moment of Inertia"@en , + "Measurement Unit of Rotational Mass"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the distribution of Mass of an object with respect to its axis of rotation."@en ; + skos:scopeNote "A measure of an object’s resistance to change in its state of rotation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000528 +cco:ont00000528 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "White"@en ; + skos:definition "A Color of maximum brightness, the color of objects that reflect nearly all wavelengths of the visible light spectrum, thus considered achromatic."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000529 +cco:ont00000529 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000073 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00000800 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000073 ; + rdfs:label "Date Identifier"@en ; + skos:altLabel "Day Identifier"@en ; + skos:definition "A Temporal Interval Identifier that designates some Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000530 +cco:ont00000530 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000008 ; + rdfs:comment "Sound waves with frequencies in this range are typically audible to humans."@en ; + rdfs:label "Sonic Frequency"@en ; + skos:altLabel "Audible Frequency"@en ; + skos:definition "A Sound Frequency that is between 20 Hz and 20 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000531 +cco:ont00000531 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Communications Facility"@en ; + skos:definition "A Facility that is designed to support processes of receiving or transmitting information."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000532 +cco:ont00000532 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001335 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001859 ; + owl:someValuesFrom cco:ont00000139 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001335 ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + dcterms:created "2023-02-08T19:54:46-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Government of a Country"@en ; + skos:definition "A Government that has legitimate authority within and is delimited by a Domain of a Country."@en ; + skos:prefLabel "Government of a Country"@en ; + cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000533 +cco:ont00000533 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000056 ; + rdfs:comment "Some (most) jet engines utilize turbines, but some do not. Most rocket engines do not utilize turbines, but some do."@en ; + rdfs:label "Jet Engine"@en ; + skos:definition "A Reaction Engine that discharges a fast moving jet that generates Thrust by jet propulsion."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Jet_engine&oldid=1060157063"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000534 +cco:ont00000534 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001153 ; + rdfs:label "Cutting Artifact Function"@en ; + skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired by being opened or divided."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/cutting" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000535 +cco:ont00000535 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000290 ; + rdfs:label "Decrease of Quality"@en ; + skos:definition "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Quality that it bears."@en ; + skos:example "Weight Loss, Decreasing Temperature, decreasing color intensity, loss of structural integrity" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000536 +cco:ont00000536 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001159 ; + rdfs:label "Bond Certificate"@en ; + skos:definition "A Bond that consists of a Certificate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000537 +cco:ont00000537 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Financial Instrument"@en ; + skos:definition "A Material Artifact that is designed to be a tradeable asset and that is legally sanctioned."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000538 +cco:ont00000538 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000831 ; + rdfs:label "Defoliant Artifact Function"@en ; + skos:definition "An Herbicide Artifact Function that is realized in a process that causes a plant to lose its leaves."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Defoliant&oldid=1059494225"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000539 +cco:ont00000539 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001022 ; + rdfs:label "Count Measurement Information Content Entity"@en ; + skos:definition "A Ratio Measurement Information Content Entity that is a measurement of the number of members of some aggregate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000540 +cco:ont00000540 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000399 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom obo:BFO_0000203 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000399 ; + rdfs:label "Temporal Instant Identifier"@en ; + skos:altLabel "Zero-Dimensional Temporal Region Identifier"@en ; + skos:definition "A Temporal Region Identifier that designates some Temporal Instant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000541 +cco:ont00000541 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Diameter"@en ; + skos:definition "A One Dimensional Extent that inheres in a circle in virtue of the extent of a straight line that passes through the center of the circle and starts and ends on the circle's boundary."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000542 +cco:ont00000542 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000876 ; + rdfs:label "Loss of Generically Dependent Continuant"@en ; + skos:definition "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the carrier of some Generically Dependent Continuant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000543 +cco:ont00000543 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000854 ; + rdfs:label "Decrease of Disposition"@en ; + skos:definition "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Disposition it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000544 +cco:ont00000544 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001936 ; + owl:someValuesFrom cco:ont00000741 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:comment "Although people speak of targeting a process, say, a parade, what in fact are being targeted are the material participants of that process. The disruption or ceasing of the process is the objective of some plan, but not technically a target. Only material things can be targeted for action. Even if some dependent entity is described as being the target, the material thing for which that dependent entity depends is the object of a targeting process."@en ; + rdfs:label "Target"@en ; + skos:definition "A Material Entity that is the object of an Act of Targeting."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000545 +cco:ont00000545 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000946 ; + rdfs:label "Seat of Local Government"@en ; + skos:altLabel "City Hall"@en , + "Town Hall"@en ; + skos:definition "A Government Building that is designed for the administration of a local community."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000546 +cco:ont00000546 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000005 ; + rdfs:label "Unplanned Act"@en ; + skos:altLabel "Unintentional Act"@en ; + skos:definition "An Act in which at least one Agent plays a causative role and which is not prescribed by some Objective held by any of the Agents."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000547 +cco:ont00000547 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000771 ; + rdfs:label "Telescope"@en ; + skos:definition "An Imaging Instrument that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Electromagnetic Radiation to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000548 +cco:ont00000548 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000997 ; + dcterms:bibliographicCitation "Vulnerability | Definition of Vulnerability by Oxford Dictionary on Lexico.Com Also Meaning of Vulnerability. https://web.archive.org/web/20210118111731/https://www.lexico.com/en/definition/vulnerability. Accessed 19 Dec. 2022. " ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Vulnerability"@en ; + skos:definition "A Disrupting Disposition the realization of which would disrupt a process that the bearer of the Disrupting Disposition has an interest in."@en ; + skos:editorialNote "This is defined class. A Vulnerability is indexed by the interest_in object property. A disposition can be a Vulnerability according to one index and not a Vulnerability according to another index." ; + skos:prefLabel "Vulnerability"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000549 +cco:ont00000549 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000254 ; + rdfs:label "Water Transportation Artifact"@en ; + skos:definition "A Transportation Artifact that is fixed in place and designed to bear a Function, the realization of which is sometimes part of a process of moving Vehicles and Agents from one location to another via water."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000550 +cco:ont00000550 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Morning"@en ; + skos:definition "A Temporal Interval that consists of the temporal regions between when the sun dawns (approximately 6:00am) and reaches its apex (approximately 12:00pm)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000551 +cco:ont00000551 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000030 ; + rdfs:label "Organism"@en ; + skos:definition "An Object that is an Animal or Plant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000552 +cco:ont00000552 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Explosive Weapon"@en ; + skos:altLabel "Bomb"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of a violent release of energy caused by the exothermic reaction of an explosive material."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Explosive_weapon&oldid=1062481268"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000553 +cco:ont00000553 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001324 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001800 ; + owl:someValuesFrom obo:BFO_0000015 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001324 ; + rdfs:label "Process Prohibition"@en ; + skos:definition "A Process Regulation that prohibits some Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000554 +cco:ont00000554 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000004 ; + rdfs:label "Gain of Dependent Continuant"@en ; + skos:definition "A Change in which an Independent Continuant becomes the bearer or carrier of some Dependent Continuant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000555 +cco:ont00000555 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000135 ; + rdfs:label "Enhanced Stasis"@en ; + skos:altLabel "Enhanced"@en ; + skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has undergone improvement (i.e., an increase or gain) due to a previous action or event such that the Independent Continuant is now of greater value, usefulness, or functionality."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/enhance" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000556 +cco:ont00000556 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:comment "Depending on the nature of the Flight or Mission, the Payload of a Vehicle may include cargo, passengers, flight crew, munitions, scientific instruments or experiments, or other equipment. Extra fuel, when optionally carried, is also considered part of the payload."@en ; + rdfs:label "Payload"@en ; + skos:definition "A Material Entity that is transported by a Vehicle during an Act of Location Change for the purpose of being delivered to or performing one or more functions at a predefined location."@en ; + skos:scopeNote "In each case, the Payload is what provides the immediate reason for performing the Act of Location Change (e.g. transporting the passengers of a commercial airline flight to their destination; transporting food, fuel, oxygen, research equipment, and spare parts to the International Space Station; or conveying an array of sensors, cameras, and communications systems so they can operate during a Sun-Synchronous Earth Orbit)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000557 +cco:ont00000557 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001132 ; + rdfs:label "Stasis of Non-Mission Capable"@en ; + skos:definition "A Stasis of Mission Capability during which the participating Continuant is not capable of performing any of its primary functions for the specified Mission."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000558 +cco:ont00000558 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000099 ; + rdfs:label "Visible Light Reflection Process"@en ; + skos:definition "A Wave Process in which an Electromagnetic Wave with a Visible Light Frequency is reflected off a portion of matter."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000559 +cco:ont00000559 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000241 ; + rdfs:label "QR Code"@en ; + skos:definition "A Two-Dimensional Barcode that consists of numeric, alphanumeric, binary, or kanji information and is used primarily for tracking and marketing."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000560 +cco:ont00000560 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001360 ; + rdfs:label "Cone Shape"@en ; + skos:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having a Round base that tapers smoothly to an apex."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cone&oldid=1058362269"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000561 +cco:ont00000561 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Dam"@en ; + skos:definition "A Material Artifact that is designed to impound surface water or underground streams."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Dam&oldid=1053601756" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000562 +cco:ont00000562 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000551 ; + rdfs:label "Animal"@en ; + skos:definition "An Organism that is multicellular, eukaryotic, heterotrophic, and capable of motility for part of its life."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Animal&oldid=1063873549"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000563 +cco:ont00000563 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001081 ; + rdfs:label "Hydrographic Feature"@en ; + skos:definition "A Geographic Feature associated with water."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000564 +cco:ont00000564 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Educational Organization"@en ; + skos:definition "An Organization whose primary purpose is to provide training or otherwise facilitate learning or the acquisition of knowledge, Skills, values, beliefs, or habits."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000565 +cco:ont00000565 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000478 ; + rdfs:label "Cube Shape"@en ; + skos:definition "A Cuboidal shape inhering in a bearer in virtue of it having six Square faces."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000566 +cco:ont00000566 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Artifact Employment"@en ; + skos:definition "A Planned Act of using an Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000567 +cco:ont00000567 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000487 ; + rdfs:comment "This is a general term that applies to both military and civilian activities, such as the Geospatial Region within which a company conducts its business."@en ; + rdfs:label "Operational Area"@en ; + skos:definition "A Geospatial Location in which an Agent conducts some activity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000568 +cco:ont00000568 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001379 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001889 ; + owl:someValuesFrom cco:ont00001180 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001379 ; + rdfs:label "Organization Capability"@en ; + skos:definition "An Agent Capability that inheres in an Organization to the extent of that Organization's capacity to realize it in Intentional Acts of a certain type."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000569 +cco:ont00000569 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000736 ; + rdfs:label "Sensor"@en ; + skos:definition "A Transducer that is designed to convert incoming energy into a output signal which reliably corresponds to changes in that energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000570 +cco:ont00000570 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Force"@en ; + skos:definition "A Process Profile that is the rate of change of an object's Momentum, is the product of an object's Mass and Acceleration with respect to an inertial frame of reference, and is measured in units of Newtons (N)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000571 +cco:ont00000571 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000980 ; + rdfs:label "Article of Solid Waste"@en ; + skos:definition "A Portion of Waste Material that has a low liquid content."@en ; + cco:ont00001754 "https://stats.oecd.org/glossary/detail.asp?ID=2508" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000572 +cco:ont00000572 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000765 ; + rdfs:label "Sound Production"@en ; + skos:altLabel "Sound Production Process"@en ; + skos:definition "A Wave Production Process that produces a Sound Wave."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000573 +cco:ont00000573 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000687 ; + rdfs:label "Act of Religious Training Acquisition"@en ; + skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tenets and/or practices of a religion from an Agent or communication medium that realizes a capacity derived from its affiliation with a Religious Organization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000574 +cco:ont00000574 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Environmental Feature"@en ; + skos:definition "A Material Entity that is either a natural or man-made feature of the environment."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000575 +cco:ont00000575 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000965 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001942 ; + owl:someValuesFrom obo:BFO_0000019 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Quality Specification"@en ; + skos:definition "A Directive Information Content Entity that prescribes some Quality."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000576 +cco:ont00000576 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Scalp"@en ; + skos:definition "A Bodily Component that consists of the skin covering the top of the head of a human or other animal."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000577 +cco:ont00000577 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Power Rectifier"@en ; + skos:definition "A Material Artifact that is designed to convert alternating current (AC) to direct current (DC)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rectifier&oldid=1049943028"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000578 +cco:ont00000578 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Sloped"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border which is not level."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000579 +cco:ont00000579 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Thin"@en ; + skos:altLabel "Narrow"@en , + "Slender"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly smaller in proportion to its length or height."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000580 +cco:ont00000580 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001286 ; + rdfs:label "Sine Waveform"@en ; + skos:altLabel "Sinusoidal Waveform"@en ; + skos:definition "A Waveform that is characterized by a smooth curved shape due to the continuous non-linear transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000581 +cco:ont00000581 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Tool"@en ; + skos:definition "A Material Artifact that is designed to assist in the performance of manual or mechanical work and not to be consumed in that process."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tool&oldid=1061967184"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000582 +cco:ont00000582 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "Code 93 Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of up to 93 ASCII characters and is used in logistics to identify packages in retail inventory, lable electornic components, and provide supplementary delivery information."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000583 +cco:ont00000583 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000180 ; + rdfs:label "Motel"@en ; + skos:definition "A Hotel that is designed to accommodate motor vehicles along with their occupants."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Motel&oldid=1063898961"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000584 +cco:ont00000584 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000357 ; + rdfs:comment "An Act of Position Change does not entail a change of location."@en ; + rdfs:label "Act of Position Change"@en ; + skos:definition "An Act of Motion in which the position (i.e. the orientation, alignment, or arrangement) of some Object or of one or more of an Object's parts is changed by some Agent."@en ; + skos:example "a top spinning in place" , + "adjusting your posture" , + "raising your left arm" , + "swivelling your office chair to face the window" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000585 +cco:ont00000585 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001286 ; + rdfs:label "Sawtooth Waveform"@en ; + skos:definition "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from minimum to maximum Amplitudes followed by a near-instantaneous transition from the maximum to minimum Amplitudes of the Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000586 +cco:ont00000586 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000238 ; + rdfs:label "Controllable Pitch Propeller"@en ; + skos:altLabel "Variable-Pitch Propeller"@en ; + skos:definition "A Propeller whose blades are designed to be alterable by rotating the blades about their vertical axis by means of mechanical or hydraulic arrangement."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Variable-pitch_propeller&oldid=1041375492"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000587 +cco:ont00000587 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000392 ; + rdfs:label "Ally Role"@en ; + skos:definition "An Allegiance Role that inheres in an Agent in virtue of that Agent's commitment to perform Acts that support the Objectives of a particular Agent or Group of Agents."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000588 +cco:ont00000588 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:label "Act of Mass Media Communication"@en ; + skos:definition "An Act of Communication intended to reach a large audience using a medium such as the internet, television, radio, newspaper, and magazine."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Media&oldid=1062799283"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000589 +cco:ont00000589 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000973 ; + rdfs:label "Julian Date Fraction"@en ; + skos:altLabel "Julian Date Time Identifier"@en , + "Julian Day Fraction"@en ; + skos:definition "A Decimal Time of Day Identifier that designates an approximate Temporal Instant that is part of some Julian Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000590 +cco:ont00000590 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Convex Shape"@en ; + skos:definition "A Shape Quality that inheres in a bearer in virtue of the bearer not having a cavity, such that no line connecting a pair of points on the surface of the bearer will lie outside."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000591 +cco:ont00000591 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000029 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000124 ; + owl:someValuesFrom cco:ont00000995 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000029 ; + rdfs:label "Artifact Location"@en ; + skos:definition "A Site that is the location of some Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000592 +cco:ont00000592 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en , + "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information ('Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."@en ; + rdfs:label "Veracity Measurement Information Content Entity"@en ; + skos:altLabel "Accuracy of Information"@en , + "Trueness Measurement"@en , + "Veracity Measurement"@en ; + skos:definition "A Measurement Information Content Entity that is a measurement of the extent to which a description conforms to the reality it describes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000593 +cco:ont00000593 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Propellant"@en ; + skos:definition "A Portion of Material that is designed to be used as an input in a Propulsion Process to produce Thrust."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000594 +cco:ont00000594 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Ignition Process"@en ; + skos:altLabel "Ignition"@en ; + skos:definition "A Natural Process that initiates a Combustion process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000595 +cco:ont00000595 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Cargo Transportation"@en ; + skos:definition "An Act of Location Change involving the movement of manufactured goods through some Transportation Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000596 +cco:ont00000596 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000966 ; + rdfs:label "JAN-13 Barcode"@en ; + skos:definition "An EAN Barcode that consists of 13 numerical digits and is used primarily in Japan to designate products at the point of sale."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000597 +cco:ont00000597 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Instrument Display Panel"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear information about some Artifact that is derived by the instrumentation Sensors of that Artifact."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flight_instruments&oldid=1062972990"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000598 +cco:ont00000598 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Valve"@en ; + skos:definition "A Fluid Control Artifact that is designed to regulate, direct, or control the flow of fluid by opening, closing, or partially obstructing the fluid from moving along a passageway."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Valve&oldid=1048906126"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000599 +cco:ont00000599 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Interpersonal Relationship Role"@en ; + skos:definition "A Role that inheres in a Person in virtue of the obligations, expectations, or social norms that govern that Person's Intentional Acts within the context of a relationship with another Person."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000600 +cco:ont00000600 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Legal Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of giving legal advice to clients drafting legal documents for clients and representing clients in legal negotiations and court proceedings such as lawsuits."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Law&oldid=1060821734"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000601 +cco:ont00000601 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Imaging Artifact Function"@en ; + skos:definition "An Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000602 +cco:ont00000602 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "ITF Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of an even number of numerical characters and is used primarily in packaging and distribution."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000603 +cco:ont00000603 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Navigation Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to determine the precise location of itself or another object and plan a route to a specified destination."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000604 +cco:ont00000604 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001010 ; + rdfs:label "Maximum Ordinal Measurement Information Content Entity"@en ; + skos:definition "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the largest or having the greatest amount relative to a nominally described set of like entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000605 +cco:ont00000605 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000003 ; + rdfs:label "Abbreviated Name"@en ; + skos:definition "A Designative Name that is a shortened form of a Proper Name."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000606 +cco:ont00000606 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000053 ; + rdfs:comment "Trucks vary greatly in their size and power -- ranging from small ultra-light trucks to enormous heavy trucks. Trucks also vary greatly in their configurations -- ranging from very basic flatbeds or box trucks to highly specialized cargo carriers. Trucks may also be configured to mount specialized equipment, such as in the case of fire trucks, concrete mixers, and suction excavators."@en ; + rdfs:label "Truck"@en ; + skos:definition "A Ground Motor Vehicle that is designed to be used to transport cargo."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Truck&oldid=1060924486"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000607 +cco:ont00000607 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000892 ; + rdfs:label "Thickness"@en ; + skos:definition "A Depth that inheres in a bearer in virtue of it extending inward through an object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000608 +cco:ont00000608 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Financial Value"@en ; + skos:definition "A quality that inheres in an independent continuant to the degree that that independent continuant can serve as a medium of exchange in an economic system at a particular time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000609 +cco:ont00000609 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000642 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000016 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the BFO 'occupies temporal region' property) that the Entity bears the Disposition."@en ; + rdfs:label "Gain of Disposition"@en ; + skos:definition "A Gain of Realizable Entity in which some Independent Continuant becomes the bearer of some Disposition."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000610 +cco:ont00000610 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:label "Ultraviolet Light Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 750 terahertz and 30 petahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000611 +cco:ont00000611 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001214 ; + rdfs:label "Increase of Realizable Entity"@en ; + skos:definition "An Increase of Specifically Dependent Continuant in which some Independent Continuant has an increase of some Realizable Entity that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000612 +cco:ont00000612 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Weapon Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Weapon."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000613 +cco:ont00000613 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000250 ; + rdfs:label "Loss of Role"@en ; + skos:definition "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000614 +cco:ont00000614 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:comment "'Matter' here can also refer to the inertial energy of an object."@en , + "Typical unit of measure is the kilogram or pound."@en ; + rdfs:label "Mass"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the amount of matter in that bearer."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000615 +cco:ont00000615 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Encounter"@en ; + skos:definition "An Act of Association wherein two or more Persons meet in a casual or unplanned manner."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=encounter (Sense Key: Encounter%2:38:00)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000616 +cco:ont00000616 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000958 ; + rdfs:label "Religion"@en ; + skos:definition "An Information Content Entity that consists of a collection of claims about the meaning or origin of existence or about the existence or nature of one or more deities, an afterlife, or spiritual or sacred entities, and which is accepted as true by an Agent or Group of Agents."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/religion" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000617 +cco:ont00000617 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000199 ; + rdfs:label "Infrared Camera"@en ; + skos:altLabel "Thermal Imaging Camera"@en , + "Thermographic Camera"@en ; + skos:definition "A Camera that is designed to form and record an image generated from infrared radiation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Thermographic_camera&oldid=1063916009"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000618 +cco:ont00000618 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000713 ; + rdfs:label "Ground Vehicle"@en ; + skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by some form of ground travel."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Category:Land_vehicles&oldid=546083623"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000619 +cco:ont00000619 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00000225 + ] ; + rdfs:label "Week"@en ; + skos:definition "A Temporal Interval that is equal to seven consecutive Days."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=week" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000620 +cco:ont00000620 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001384 ; + rdfs:label "Radiopacity"@en ; + skos:altLabel "Radiodensity"@en ; + skos:definition "An Opacity that inheres in a bearer in virtue of its capacity to allow or prevent X-rays to pass through it."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radiodensity&oldid=1048274724"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000621 +cco:ont00000621 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001286 ; + rdfs:label "Inverse Sawtooth Waveform"@en ; + skos:definition "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from maximum to minimum Amplitudes followed by a near-instantaneous transition from the minimum to maximum Amplitudes of the Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000622 +cco:ont00000622 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001132 ; + rdfs:label "Stasis of Fully Mission Capable"@en ; + skos:definition "A Stasis of Mission Capability during which the participating Continuant is capable of performing all of its primary functions for the specified Mission."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000623 +cco:ont00000623 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Impact Shielding Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact reduces the damage caused to the shielded object by an impact with another object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000624 +cco:ont00000624 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001298 ; + rdfs:label "Report"@en ; + skos:definition "A Document that is designed to bear some specific Information Content Entity that conveys an account of some event, situation, or the result of some observation or inquiry."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Report&oldid=1063765657"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000625 +cco:ont00000625 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Nozzle Throat"@en ; + skos:definition "A Fluid Control Artifact that consists of the narrowest portion of a Nozzle that is designed to converge the flow of fluid in order to increase the Velocity of the flow."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000626 +cco:ont00000626 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000853 ; + rdfs:comment "Since predictions are inherently about not-yet-existant things, the Modal Relation Ontology term 'describes' (i.e. mro:describes) should be used (instead of the standard cco:describes) to relate instances of Predictive Information Content Entity to the entities they are about."@en ; + rdfs:label "Predictive Information Content Entity"@en ; + skos:altLabel "Prediction"@en , + "Prediction Information Content Entity"@en ; + skos:definition "A Descriptive Information Content Entity that describes an uncertain future event."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000627 +cco:ont00000627 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00001141 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Infrastructure Element"@en ; + skos:definition "A Material Entity that bears an Infrastructure Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000628 +cco:ont00000628 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + rdfs:label "Electromagnetic Radiation Property"@en ; + skos:definition "A Disposition that inheres in an bearer in virtue of how that bearer interacts with electromagnetic radiation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000629 +cco:ont00000629 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Deception Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes which misinform or mislead some other entity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Deception&oldid=1061346984"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000630 +cco:ont00000630 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000124 ; + rdfs:label "Universal Time Reference System"@en ; + skos:definition "A Solar Time Reference System that is based on the average speed of the Earth's rotation and which uses the prime meridian at 0° longitude as a reference point."@en ; + cco:ont00001753 "UT" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000631 +cco:ont00000631 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000662 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000171 ; + owl:someValuesFrom cco:ont00000139 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000662 ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + dcterms:created "2023-02-06T10:14:09-05:00"@en ; + rdfs:label "Material Territory of a Country"@en ; + skos:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a The Domain of a Country."@en ; + skos:prefLabel "Material Territory of a Country"@en ; + cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000632 +cco:ont00000632 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + rdfs:label "Magnetism"@en ; + skos:definition "A Disposition that is realized when its bearer exerts a magnetic force on another entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000633 +cco:ont00000633 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:comment "When an object is \"weighed\", in the typical case, it is done so by taking into account the local force of gravity to determine the object's mass, whose standard of measure is the kilogram. The actual unit of measure of weight is the newton."@en ; + rdfs:label "Weight"@en ; + skos:definition "A Quality that inheres in some material entity with a mass in virtue of its location in some gravitational field."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000634 +cco:ont00000634 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000431 ; + rdfs:label "Steam Engine"@en ; + skos:definition "An External Combustion Engine that is designed to use steam as its working fluid."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Steam_engine&oldid=1064097686"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000635 +cco:ont00000635 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Refraction Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a refraction event in which the Artifact causes a change in direction of wave propagation due to a change in its transmission medium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000636 +cco:ont00000636 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000345 ; + rdfs:comment "Note that, while most if not all Acts of Appraisal involve some estimating and many Acts of Estimation involve some appraising (i.e. these classes are not disjoint), neither class subsumes the other. For example, some Acts of Appraisal (e.g. a tax assessor appraising the value of a building) impart a normative element to the measured value while others (e.g. a gustatory appraisal that fresh green beans taste better than canned green beans) involve complete information. Furthermore, many Acts of Estimation (e.g. estimating the height of a tree) are concerned solely with determining a numerical value (as opposed to the nature, value, importance, condition, or quality)."@en ; + rdfs:label "Act of Appraisal"@en ; + skos:definition "An Act of Measuring that involves evaluating, assessing, estimating, or judging the nature, value, importance, condition, or quality of something or someone."@en ; + skos:example "a food critic rating the quality of a restaurant's ambiance, service, and food" , + "a mechanic assessing whether a damaged vehicle is repairable" , + "an insurance agent appraising the financial value of a building" ; + skos:scopeNote "In the context of an Act of Appraisal, the terms 'value', 'condition', and 'quality' do not have the same meanings as their counterparts that are defined in the Common Core Ontologies. For example, a knife may be appraised to be of high quality if it is sharp and sturdy or to be of inferior quality if it is dull or fragile."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000637 +cco:ont00000637 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000593 ; + rdfs:label "Portion of Gaseous Propellant"@en ; + skos:definition "A Portion of Propellant that is stored in a gaseous state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000638 +cco:ont00000638 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000210 ; + rdfs:label "Heat Engine"@en ; + skos:definition "An Engine that is designed to convert thermal energy into mechanical energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000639 +cco:ont00000639 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Mine"@en ; + skos:definition "A Facility that is designed to support the extraction of minerals or other geological materials from an orebody, lode, vein, seam, reef, or placer deposit within the earth."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mining&oldid=1062844924"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000640 +cco:ont00000640 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001002 ; + rdfs:label "Email Message"@en ; + skos:definition "A Message that is transmitted to the recipient's Email Box."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000641 +cco:ont00000641 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Entertainment Facility"@en ; + skos:definition "A Facility that is designed to host activities that are intended to hold the interest of, or give pleasure or delight to, an audience."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000642 +cco:ont00000642 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000395 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000017 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Realizable Entity"@en ; + skos:definition "A Gain of Specifically Dependent Continuant in which some Independent Continuant becomes the bearer of some Realizable Entity."@en ; + skos:example "An informant becomes unreliable (disposition), A person begins to speak French (function), a person becomes a welder (role)." ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000643 +cco:ont00000643 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 10–1 km"@en ; + rdfs:label "Low Frequency"@en ; + skos:altLabel "ITU Band Number 5"@en ; + skos:definition "A Radio Frequency that is between 30 and 300 kHz."@en ; + cco:ont00001753 "LF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000644 +cco:ont00000644 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000004 ; + rdfs:comment "Oscillation is often thought of in the sense of motion, e.g., a swinging clock pendulum. However, the repetitive variation in location around a central point is technically a process of vibration, sometimes referred to as mechanical oscillation. Use the term Vibration Motion for those cases."@en ; + rdfs:label "Oscillation Process"@en ; + skos:altLabel "Oscillation"@en ; + skos:definition "A Change in which the dependent entity alternates between two or more stases."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Oscillation&oldid=1002978272"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000645 +cco:ont00000645 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000917 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 ; + dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Permanent Resident"@en ; + skos:definition "A person with a Permanent Resident Role."@en ; + skos:prefLabel "Permanent Resident"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000646 +cco:ont00000646 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000247 ; + rdfs:label "Highway"@en ; + skos:definition "A Road that is designed to enable Ground Vehicles to travel between relatively major destinations."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Highway&oldid=1063985949"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000647 +cco:ont00000647 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000175 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001939 ; + owl:someValuesFrom cco:ont00001180 + ] ; + rdfs:label "Organization Member"@en ; + skos:definition "A Person who is affiliated with some Organization by being a member of that Organization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000648 +cco:ont00000648 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000784 ; + rdfs:label "Color Brightness"@en ; + skos:altLabel "Color Intensity"@en ; + skos:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect or radiate light."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000649 +cco:ont00000649 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000686 ; + rdfs:label "Non-Name Identifier"@en ; + skos:altLabel "ID"@en , + "Identifier"@en ; + skos:definition "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified namespace or context, is not a Designative Name, may be automatically or randomly generated, and typically has no preexisting cultural or social significance."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000650 +cco:ont00000650 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000214 ; + rdfs:label "Ground Moving Target Indication Artifact Function"@en ; + skos:definition "A Moving Target Indication Artifact Function that inheres in Artifacts that are designed to identify and track entities moving on or near the ground."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000651 +cco:ont00000651 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Containing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which one entity contains another."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/containing" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000652 +cco:ont00000652 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Decoy"@en ; + skos:definition "A Material Artifact that is designed to distract or conceal what an individual or group might be looking for."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Decoy&oldid=1058455081"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000653 +cco:ont00000653 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Algorithm"@en ; + skos:definition "A Directive Information Content Entity that prescribes some Process and contains a finite sequence of unambiguous instructions in order to achieve some Objective."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000064"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000654 +cco:ont00000654 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001147 ; + rdfs:label "Act of Terrorism"@en ; + skos:definition "An Act of Violence which creates fear and which is prescribed by religious, political or ideological objectives, and which deliberately target or disregard the safety of civilians and are committed by members of non-government organizations."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Terrorism&oldid=1063471352"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000655 +cco:ont00000655 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Mailing Facility"@en ; + skos:definition "A Facility that is designed for the systematic physical transportation of documents and packages."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000656 +cco:ont00000656 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Radiological Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing radioactive material."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radiological_warfare&oldid=1060817328"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000657 +cco:ont00000657 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001100 ; + rdfs:label "Distance Measurement Artifact Function"@en ; + skos:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the spatial Distance to a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000658 +cco:ont00000658 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Missile Launcher"@en ; + skos:definition "A Projectile Launcher that is designed to launch one or more Precision-Guided Missiles."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000659 +cco:ont00000659 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Torque"@en ; + skos:altLabel "Measurement Unit of Moment of Force"@en , + "Measurement Unit of Rotational Force"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the rate of change of angular momentum of an object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000660 +cco:ont00000660 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000015 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001819 ; + owl:someValuesFrom obo:BFO_0000015 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Effect"@en ; + skos:altLabel "Consequence"@en ; + skos:definition "A Process that follows and is caused by some previous Process."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=effect" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000661 +cco:ont00000661 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Government Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes in which public policy is administered and the actions of its members are directed."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000662 +cco:ont00000662 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001341 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000171 ; + owl:someValuesFrom cco:ont00001152 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001341 ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + dcterms:created "2023-02-06T10:14:09-05:00"@en ; + rdfs:label "Material Territory of a Government Domain"@en ; + skos:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a Government Domain"@en ; + skos:prefLabel "Material Territory of a Government Domain"@en ; + cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000663 +cco:ont00000663 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Power Transmission Artifact"@en ; + skos:definition "A Material Artifact that is designed to transfer and regulate Power flow from a Power Source to an application point."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000664 +cco:ont00000664 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000531 ; + rdfs:label "Radio Relay Station"@en ; + skos:definition "A Communications Facility that is designed to support the receiving and re-transmitting of radio signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000665 +cco:ont00000665 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Cleaning Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes in which some Artifact is used to remove foreign objects from another object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000666 +cco:ont00000666 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000486 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 ; + rdfs:label "Neutral Person"@en ; + skos:altLabel "Unallied Person" ; + skos:definition "A Person who is the bearer of some Neutral Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000667 +cco:ont00000667 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Combat Outpost"@en ; + skos:definition "A Military Facility that is designed to support the conduction of combat operations of limited scope or size."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Outpost_(military)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000668 +cco:ont00000668 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Battery Terminal"@en ; + skos:definition "A Material Artifact that is designed to connect a load or charger to a single or multiple-cell Battery."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Battery_terminal&oldid=1059455659"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000669 +cco:ont00000669 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001022 ; + rdfs:label "Distance Measurement Information Content Entity"@en ; + skos:definition "A Ratio Measurement Information Content Entity that is a measurement of a One-Dimensional Extent inhering in some Site that is externally connected to two Independent Continuants."@en ; + skos:scopeNote "Displacement (vector) is the shortest possible distance (scalar) between two points. Further thought is needed to adequately handle measurements of distance traveled along a path, e.g., a circuitous path or an arc (such as the surface of a planet), versus the simple case of a direct, straight line between two points."@en , + "Distance is a measure between two reference points, which are located on or in, or in some manner part of, the two obejcts for which the length of the extent between is sought. For exmple, the center point of the indentation of a ball in the sand and the edge of the foul line, the forwardmost point on a car's bumper and the closest point on the 2-dimensional plane that serves as the fiat boundary of a crosswalk, the center of an antenna array and closest point on ground."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000670 +cco:ont00000670 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001258 ; + rdfs:label "Distribution Port"@en ; + skos:definition "A Port that is designed with the cargo handling equipment necessary for the loading and unloading of Watercraft"@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000671 +cco:ont00000671 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000415 ; + rdfs:label "Anti-Bacterial Artifact Function"@en ; + skos:definition "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some bacterium."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Antibiotic&oldid=1063633090"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000672 +cco:ont00000672 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 10,000–1,000 km"@en ; + rdfs:label "Super Low Frequency"@en ; + skos:altLabel "ITU Band Number 2"@en ; + skos:definition "A Radio Frequency that is between 30 and 300 Hz."@en ; + cco:ont00001753 "SLF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000673 +cco:ont00000673 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Prosthetic Foot"@en ; + skos:definition "A Prosthesis that is designed to replace a missing foot."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000674 +cco:ont00000674 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000832 ; + rdfs:label "Calendar Year"@en ; + skos:definition "A Year that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Year."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000675 +cco:ont00000675 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001028 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00001227 + ] ; + rdfs:label "Sound Wave Process"@en ; + skos:definition "A Mechanical Wave Process of Pressure and displacement that is parallel to the propogation direction of the Wave Process through a medium."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000676 +cco:ont00000676 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Inhabitancy"@en ; + skos:definition "A Planned Act in which a Person lives at a Site for a period of time that may be as short as 1 day/night or as long as the Person's entire life."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/inhabit" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000677 +cco:ont00000677 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Product Transport Facility"@en ; + skos:definition "A Facility that is designed to transport some product."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000678 +cco:ont00000678 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Voltage Regulating Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact is used to cause a change in the voltage magnitude between the sending and receiving end of an electrical component."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Voltage_regulation&oldid=1045628774"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000679 +cco:ont00000679 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Attitude Control Artifact Function"@en ; + skos:altLabel "Orientation Control Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in an attitude control process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000680 +cco:ont00000680 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Medical Depot"@en ; + skos:definition "A Storage Facility that is designed to store medical supplies."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000681 +cco:ont00000681 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000236 ; + rdfs:label "External Navigation Lighting System"@en ; + skos:definition "A Lighting System that is designed to be attached to some Vehicle and to emit colored light in order to signal that Vehicle's position, heading, and status."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Navigation_light&oldid=1034200601"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000682 +cco:ont00000682 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000136 ; + rdfs:label "Mirror"@en ; + skos:definition "An Optical Instrument that is designed to reflect light that has a wavelength within a given range and is incident on its relflecting surface such that the reflected light maintains most of the characteristics of the original light."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mirror&oldid=1063296474"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000683 +cco:ont00000683 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000605 ; + rdfs:label "Diminutive Name"@en ; + skos:definition "An Abbreviated Name that is a familiar form of a Proper Name."@en ; + skos:example "Alex, Bob, Cathy" ; + skos:scopeNote "\"Familiar form of a Proper Name\" means: that the name is (originally) a short, affectionate version of the fuller name, used (originally) by family or friends."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000684 +cco:ont00000684 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000821 ; + rdfs:label "Act of Contract Formation"@en ; + skos:definition "An Act of Promising having a lawful object entered into voluntarily by two or more agents with legal capacity, each of whom intends to create one or more legal obligations between them."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Contract&oldid=1061365227"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000685 +cco:ont00000685 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000207 ; + rdfs:label "Government Domain Border"@en ; + skos:definition "A Geospatial Boundary that is a boundary of some Government Domain."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Border&oldid=1061275162"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000686 +cco:ont00000686 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000958 ; + owl:disjointWith cco:ont00000853 , + cco:ont00000965 ; + rdfs:label "Designative Information Content Entity"@en ; + skos:altLabel "Designative ICE"@en ; + skos:definition "An Information Content Entity that consists of a set of symbols that denote some Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000687 +cco:ont00000687 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000234 ; + rdfs:label "Act of Training Acquisition"@en ; + skos:definition "An Act of Training performed by an Agent by acquiring knowledge from another Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000688 +cco:ont00000688 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000294 ; + rdfs:label "Turbofan Air-Breathing Jet Engine"@en ; + skos:definition "An Air-Breathing Jet Engine that uses a Turbofan, which consists of a Turbine and a Fan."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Turbofan&oldid=1063724215"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000689 +cco:ont00000689 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Switch Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process of breaking an electric circuit by interrupting the current or diverting it from one conductor to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Switch&oldid=1059685800"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000690 +cco:ont00000690 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000346 ; + rdfs:label "Telecommunication Instrument"@en ; + skos:definition "A Communication Instrument that is designed for use by some Agent in some Act of Communication where the recipient of that communication is potentially a significant distance away from the Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000691 +cco:ont00000691 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000020 ; + rdfs:label "Fuel Tank"@en ; + skos:definition "A Container that is designed to store a Portion of Fuel."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000692 +cco:ont00000692 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:comment "Every probability measurement is made within a particular context given certain background assumptions."@en ; + rdfs:label "Probability Measurement Information Content Entity"@en ; + skos:altLabel "Likelihood Measurement"@en , + "Probability Measurement"@en ; + skos:definition "A Measurement Information Content Entity that is a measurement of the likelihood that a Process or Process Aggregate occurs."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Probability&oldid=1059657543"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000693 +cco:ont00000693 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000575 ; + rdfs:label "Mass Specification"@en ; + skos:definition "A Quality Specification that prescribes the Amount of Mass that a Material Entity should have."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000694 +cco:ont00000694 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Nozzle Mouth"@en ; + skos:definition "A Fluid Control Artifact that consists of the portion of a Nozzle at the end that is designed to be where the flow of fluid exits the Nozzle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000695 +cco:ont00000695 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000620 ; + rdfs:label "Radiolucent"@en ; + skos:altLabel "Hypodense"@en , + "Transradiance"@en ; + skos:definition "A Radiopacity that inheres in a bearer in virtue of its capacity to permit most X-rays to pass through it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000696 +cco:ont00000696 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000958 ; + rdfs:label "Ideology"@en ; + skos:definition "An Information Content Entity that consists of a collection of claims about how some part of the world is or should be and which is accepted as true by an Agent or Group of Agents such that it forms the basis of their beliefs, goals, expectations, and motivations."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000697 +cco:ont00000697 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000279 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 ; + rdfs:label "Enemy Person"@en ; + skos:definition "A Person who is the bearer of some Enemy Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000698 +cco:ont00000698 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000252 ; + rdfs:comment "By increasing the Exhaust Velocity of the gas, the Nozzle increases the Thrust generated."@en ; + rdfs:label "Convergent-Divergent Nozzle"@en ; + skos:altLabel "CD Nozzle"@en , + "de Laval Nozzle"@en ; + skos:definition "A Nozzle that consists of a tube with an asymmetric hourglass shape that is designed to accelerate hot pressurized gas by converting the heat energy of the gas flow into kinetic energy as it passes through the Nozzle Throat to generate increased Exhaust Velocity of the gas as it exits the Nozzle."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=De_Laval_nozzle&oldid=1062746288"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000699 +cco:ont00000699 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Afternoon"@en ; + skos:definition "A Temporal Interval that consists of the temporal regions between when the sun is at its apex (approximately 12:00pm) and when it sets (approximately 6:00pm)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000700 +cco:ont00000700 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000998 ; + rdfs:label "Computer Network"@en ; + skos:altLabel "Data Network"@en ; + skos:definition "A Telecommunication Network that is designed to allow the exchange of data between two or more computers connected to the network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Computer_network&oldid=1061571662"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000701 +cco:ont00000701 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001145 ; + rdfs:label "Wire Receiver"@en ; + skos:definition "A Radio Receiver that uses a Wire Antenna to intercept radio signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000702 +cco:ont00000702 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Image"@en ; + skos:definition "An Information Bearing Artifact that is designed to carry an Information Content Entity that represents some entity owing to a visual isomorphism between the carrying artifact and the entity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Image&oldid=1062709732"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000703 +cco:ont00000703 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000159 ; + rdfs:label "System Clock"@en ; + skos:definition "A Timekeeping Instrument that is part of a computer an is designed to issue a steady high-frequency signal that is used to synchronize all of the computer's internal components."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/system+clock" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000704 +cco:ont00000704 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Tunnel"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable Ground Vehicles to travel underneath a surrounding soil, earth, or rock formation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tunnel&oldid=1062456881"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000705 +cco:ont00000705 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000677 ; + rdfs:label "Power Transmission Line"@en ; + skos:definition "A Product Transport Facility that is designed to transmit electricity over distance via a system of above ground wires including their supports."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electric_power_transmission&oldid=1062551058"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000706 +cco:ont00000706 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Terminal Board"@en ; + skos:definition "A Material Artifact that is designed to join electrical terminations and create an electrical circuit by means of a block which connects individual wires without a splice or physically joining the ends."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electrical_connector&oldid=1061247409"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000707 +cco:ont00000707 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Angle"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the angle between two lines or planes in relation to a vertex."@en ; + skos:example "degrees, radians" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000708 +cco:ont00000708 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Water Tower"@en ; + skos:definition "A Facility that is the bearer of functions realized in processes of storing water in an elevated container."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Water_tower&oldid=1059754959"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000709 +cco:ont00000709 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001248 ; + rdfs:label "Visual Prosthesis"@en ; + skos:altLabel "Bionic Eye"@en ; + skos:definition "An Artificial Eye that is designed to replace a missing eye, which performs the function of an eye."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Visual_prosthesis&oldid=1059269261"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000710 +cco:ont00000710 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Command Post Facility"@en ; + skos:definition "A Military Facility that is designed to support the command and control of Military Operations or Forces."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/command-post" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000711 +cco:ont00000711 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000156 ; + rdfs:label "Semi-automatic Pistol"@en ; + skos:definition "A Hand Gun that has a single fixed firing chamber machined into the rear of the barrel and an ammunition magazine capable of holding multiple Cartridges such that the Hand Gun is designed to automatically reload each time it is fired and to fire a Bullet with each successive pull of the trigger until the stored ammunition is depleted."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Semi-automatic_pistol&oldid=1058568715"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000712 +cco:ont00000712 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000763 + ] ; + rdfs:label "Acceleration"@en ; + skos:definition "A Process Profile that is the rate of change of the Velocity of an object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Acceleration&oldid=1062249960"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000713 +cco:ont00000713 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Vehicle"@en ; + skos:definition "A Material Artifact that is designed to facilitate the movement of material entities from one location to another by conveying them there."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000714 +cco:ont00000714 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001192 ; + rdfs:label "Horn Antenna"@en ; + skos:altLabel "Microwave Horn"@en ; + skos:definition "A Radio Antenna that consists of a flaring metal waveguide shaped like a horn to direct radio waves in a beam and can be used on its own or as a feeder for larger antenna structures, such as Parabolic Antennas."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Horn_antenna&oldid=1050375403"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000715 +cco:ont00000715 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001381 ; + rdfs:label "Prosthesis"@en ; + skos:definition "A Medical Artifact that is designed to replace a missing body part."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000716 +cco:ont00000716 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Electric Battery"@en ; + skos:altLabel "Battery"@en ; + skos:definition "An Electrical Power Source that is designed to produce electric power by converting chemical energy to electrical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Battery_(electricity)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000717 +cco:ont00000717 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001076 ; + rdfs:label "Fossil Fuel Power Plant"@en ; + skos:definition "An Electric Power Station that is designed to convert fossil fuels (e.g. coal, natural gas, or petroleum) into electrical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fossil_fuel&oldid=1062298144"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000718 +cco:ont00000718 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000460 ; + rdfs:label "Village"@en ; + skos:definition "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a hamlet but smaller than that of a Town."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/village" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000719 +cco:ont00000719 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Counterfeit Instrument"@en ; + skos:definition "A Material Artifact that is designed to be a fake replica of some genuine Artifact."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000720 +cco:ont00000720 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000020 ; + rdfs:label "Cryogenic Storage Dewar"@en ; + skos:definition "A Container that is designed to store a Portion of Cryogenic Material (such as liquid helium or liquid oxygen) and which consists of, minimally, walls that are constructed from two or more layers that are separated by a high vacuum to provide thermal insulation between the interior and exterior of the dewar."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cryogenic_storage_dewar&oldid=1021282649"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000721 +cco:ont00000721 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000804 ; + rdfs:label "Polarizing Prism"@en ; + skos:definition "A Prism designed to split a beam of light entering the Prism into components of varying polarization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000722 +cco:ont00000722 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000146 ; + rdfs:label "Sea Level"@en ; + skos:definition "A Fiat Surface that divides the spheroid composed of Earth and its atmosphere at some point that corresponds to the mean level of calm water in the Earth’s oceans."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000723 +cco:ont00000723 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000781 ; + rdfs:label "Vehicle Control System"@en ; + skos:definition "A Control System that is designed to enable some Agent to control some Vehicle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000724 +cco:ont00000724 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001192 ; + rdfs:label "Parabolic Antenna"@en ; + skos:altLabel "Dish Antenna"@en , + "Parabolic Dish"@en ; + skos:definition "A Radio Antenna that uses a parabolic reflector to direct or receive radio waves and has a very high gain."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Parabolic_antenna&oldid=1057213241"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000725 +cco:ont00000725 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000455 ; + rdfs:label "Wedding"@en ; + skos:altLabel "Act of Wedding Ceremony"@en ; + skos:definition "An Act of Ceremony in which two Persons are united in Marriage or a similar institution."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wedding&oldid=1063857279"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000726 +cco:ont00000726 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000004 ; + rdfs:label "Decrease of Dependent Continuant"@en ; + skos:definition "A Change in which some Independent Continuant has a decrease in the level of some Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000727 +cco:ont00000727 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Communication Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which meaningful signs are conveyed from one entity to another."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000728 +cco:ont00000728 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000215 ; + rdfs:comment "The submillimeter waveband is between the far-infrared and microwave wavebands and is typically taken to have a wavelength of between a few hundred micrometers and a millimeter."@en ; + rdfs:label "Submillimeter Wavelength Radio Telescope"@en ; + skos:altLabel "Microwave Telescope"@en ; + skos:definition "A Radio Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves from the submillimeter waveband (i.e. microwaves) to form an enhanced image of the Object."@en ; + cco:ont00001754 "http://kp12m.as.arizona.edu/docs/what_is_submillimeter.htm, https://en.wikipedia.org/wiki/Submillimetre_astronomy" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000729 +cco:ont00000729 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000275 ; + rdfs:label "Spherical Coordinate System"@en ; + skos:definition "A Spatial Reference System for three-dimensional spatial regions that identifies each point using an ordered triple of numerical coordinates that consist of the radial distance of the point of interest from a fixed origin, its polar angle measured from a fixed zenith direction, and the azimuth angle of its orthogonal projection measured from a fixed direction on a reference plane that passes through the origin and is orthogonal to the zenith."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Spherical_coordinate_system&oldid=1061029174"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000730 +cco:ont00000730 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Hydraulic Power Transfer Unit"@en ; + skos:definition "A Material Artifact that is designed to transfer hydraulic power from one of an Aircraft's hydraulic systems to another in the event that a system has failed or been turned off."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000731 +cco:ont00000731 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en , + "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations ('Deviation Measurement Information Content Entity')."@en ; + rdfs:label "Deviation Measurement Information Content Entity"@en ; + skos:altLabel "Conformance Measurement"@en , + "Degree of Conformance"@en , + "Degree of Deviation"@en , + "Deviation Measurement"@en ; + skos:definition "A Measurement Information Content Entity that is a measurement of the extent to which an entity conforms to how it is expected or supposed to be."@en ; + skos:example "a missile impact deviates from its target location by 100 feet" , + "a satellite deviaties from its predicted orbital path by 5 kilometers" , + "an overweight piece of luggage deviates from an airline's maximum allowed weight by +10 pounds" ; + skos:scopeNote "In order for a Deviation to exist, an entity must first be expected, represented, prescribed, or predicted as being a certain way. Then, at a future time, this value can be compared to its actual, reported, or measured value to determine the Deviation between these values."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000732 +cco:ont00000732 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 1,000–1 mm"@en ; + rdfs:label "Microwave Frequency"@en ; + skos:definition "A Radio Frequency that is between 300 MHz and 300 GHz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Microwave&oldid=1062124842"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000733 +cco:ont00000733 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001360 ; + rdfs:label "Spherical"@en ; + skos:definition "A Three Dimensional Shape inhering in a bearer in virtue of all of its cross sections being round."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000734 +cco:ont00000734 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000552 ; + rdfs:label "Land Mine"@en ; + skos:definition "An Explosive Weapon that is designed to be concealed under or on the ground and to detonate as its target passes over or near it."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Land_mine&oldid=1060289159"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000735 +cco:ont00000735 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000406 ; + rdfs:label "Geospatial Region Bounding Box Identifier List"@en ; + skos:definition "A Measurement Unit of Geocoordinate that is comprised of 4 pairs of coordinates, one for each of the 4 defining points (North, West, South, East) of a Geospatial Region Bounding Box."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000736 +cco:ont00000736 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Transducer"@en ; + skos:definition "A Material Artifact that is designed to convert one form of energy to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000737 +cco:ont00000737 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000483 ; + rdfs:label "Forward Operations Base"@en ; + skos:altLabel "Forward Operating Base"@en ; + skos:definition "A Military Base that is located relatively close to an offensive Area of Operations, is supported by the Base of Operations, and is designed to support local strategic objectives and tactical operations."@en ; + cco:ont00001753 "FOB" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Forward_operating_base&oldid=1059263624"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000738 +cco:ont00000738 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Length"@en ; + skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's greatest extent in one direction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000739 +cco:ont00000739 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000676 ; + rdfs:label "Act of Sojourn"@en ; + skos:definition "An Act of Inhabitancy in which a Person lives in a dwelling temporarily, often during stages of an Act of Travel."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000740 +cco:ont00000740 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000002 ; + rdfs:comment "This class is designed to group continuants according to a very broad criterion and is not intended to be used as a parent class for entities that can be more specifically represented under another class. Hence, Natural Resource may be an appropriate subtype but Money, Oil, and Gold Mine are not."@en ; + rdfs:label "Resource"@en ; + skos:definition "A Continuant that is owned by, in the possession of, or is otherwise controlled by an Agent such that it could be used by that Agent."@en ; + skos:example "a group of interns" , + "a knowledge base" , + "a plot of land" , + "a software program" , + "a sum of money" , + "a vehicle" ; + skos:scopeNote "Resources are Resources for some Agent. If no instance of Agent existed, no instance of Resource would exist either. It is not a requirement that something be valuable in order for it to be a Resource. Thus the value of something can drastically change without altering whether that thing is a Resource."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000741 +cco:ont00000741 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Targeting"@en ; + skos:definition "A Planned Act wherein some Agent maintains one or more entities as the objects of potential action given some operational requirement."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000742 +cco:ont00000742 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Ignition System"@en ; + skos:definition "A Material Artifact that is designed to produce an Ignition process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000743 +cco:ont00000743 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000702 ; + rdfs:label "Chart"@en ; + skos:definition "An Image that is designed to carry some Representational Information Content Entity that is prescribed by some canonical visual format."@en ; + cco:ont00001754 "Adapted from “Chart.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/chart. Accessed 4 Aug. 2024." ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000744 +cco:ont00000744 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Social Group Membership"@en ; + skos:definition "An Act of Association wherein a Person belongs to some Social Group."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000745 +cco:ont00000745 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001176 ; + rdfs:label "Point Estimate Information Content Entity"@en ; + skos:altLabel "Best Estimate"@en , + "Point Estimate"@en , + "Point Estimate Measurement Information Content Entity"@en ; + skos:definition "An Estimate Information Content Entity that consists of a single value for the measured entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000746 +cco:ont00000746 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000638 ; + rdfs:label "Combustion Engine"@en ; + skos:definition "A Heat Engine that is designed to convert thermal energy that is generated through a local Combustion process into mechanical energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000747 +cco:ont00000747 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000549 ; + rdfs:label "Canal"@en ; + skos:definition "A Water Transportation Artifact that is an artificial Hydrographic Feature designed to convey water or enable Watercraft to travel inland."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Canal&oldid=1059514223" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000748 +cco:ont00000748 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Bullet"@en ; + skos:definition "A Portion of Ammunition that is designed to be projected by a Firearm, Sling, Slingshot, or Air Gun, but which does not (typically) contain explosives."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bullet&oldid=1062391591"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000749 +cco:ont00000749 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000894 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00000498 + ] ; + rdfs:label "Julian Day Number"@en ; + skos:definition "A Decimal Date Identifier that designates some Julian Day by using a number to indicate the sequential ordering of the Day since the Julian Date epoch."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000750 +cco:ont00000750 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Text Messaging"@en ; + skos:altLabel "Act of Text Messaging"@en , + "Act of Texting"@en ; + skos:definition "An Act of Communication by Media involving the exchange of brief written messages between fixed-line phone or mobile phone and fixed or portable devices over a network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Text_messaging&oldid=1062261405"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000751 +cco:ont00000751 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001324 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001910 ; + owl:someValuesFrom obo:BFO_0000015 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001324 ; + rdfs:label "Action Permission"@en ; + skos:altLabel "Authorization"@en , + "License"@en ; + skos:definition "A Process Regulation that permits some Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000752 +cco:ont00000752 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000144 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001857 ; + owl:someValuesFrom cco:ont00000099 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:comment "This is a defined class used to group process profiles of Wave Processes. Note that not every relevant process profile can be asserted as a subtype, however, because they (e.g. Frequency and Amplitude) are applicable to other processes as well (e.g. Oscillation Process)."@en ; + rdfs:label "Wave Process Profile"@en ; + skos:definition "A Process Profile of a Wave Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000753 +cco:ont00000753 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 1,000–100 km"@en ; + rdfs:label "Ultra Low Frequency"@en ; + skos:altLabel "ITU Band Number 3"@en ; + skos:definition "A Radio Frequency that is between 300 Hz and 3 kHz."@en ; + cco:ont00001753 "ULF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000754 +cco:ont00000754 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001047 ; + rdfs:comment "Divisions between EM radiation frequencies are fiat and sources vary on where to draw boundaries."@en ; + rdfs:label "Electromagnetic Radiation Frequency"@en ; + skos:definition "A Frequency that is characterized by the rate of Oscillations per second of an Electromagnetic Wave."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000755 +cco:ont00000755 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Zenith"@en ; + skos:definition "A One-Dimensional Spatial Region that extends from a given location upward along the local vertical direction pointing in the direction opposite the apparent Gravitational Force at that location."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Zenith&oldid=1052625030"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000756 +cco:ont00000756 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Database"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some set of specific Information Content Entities and to be rapidly searchable and retrievable."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Database&oldid=1057024641"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000757 +cco:ont00000757 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000052 ; + rdfs:label "Synagogue"@en ; + skos:definition "A Religious Facility that is designed for Judaic worship and prayer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Synagogue&oldid=1063773298"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000758 +cco:ont00000758 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Component Role"@en ; + skos:definition "A Role that inheres in an entity having a discrete structure in virtue of that entity being part of a system considered at a particular level of analysis."@en ; + cco:ont00001754 "ISO/IEC. 1998. Information Technology ― System and Software Integrity Levels Geneva, Switzerland: International Organization for Standardization (ISO)/International Electrotechnical Commission (IEC). ISO/IEC. 15026:1998. : 3.1"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000759 +cco:ont00000759 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000784 ; + rdfs:label "Color Saturation"@en ; + skos:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect high intensity light distributed across fewer wavelengths, typically considered on a continuum of purity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000760 +cco:ont00000760 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000752 ; + rdfs:label "Surface Wave Profile"@en ; + skos:altLabel "Surface Wave"@en ; + skos:definition "A Wave Process Profile in which the Wave Process propogates along the surface of a medium and which involves both transverse and longitudinal wave profiles such that the motion of the displacement of participating particles is circular or elliptical."@en ; + skos:example "the motion of an ocean wave" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000761 +cco:ont00000761 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000226 ; + rdfs:label "Pier"@en ; + skos:definition "A Transportation Facility that is designed to partially enclose a harbor and form a landing place for Watercraft."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pier&oldid=1057802753"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000762 +cco:ont00000762 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000415 ; + rdfs:label "Fungicide Artifact Function"@en ; + skos:definition "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some fungus or fungal spore."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fungicide&oldid=1056769271"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000763 +cco:ont00000763 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Velocity"@en ; + skos:definition "A Process Profile of an object's Motion that is characterized by its Speed and direction with respect to a frame of reference."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Velocity&oldid=1063300750"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000764 +cco:ont00000764 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000504 ; + rdfs:label "Optical Focusing Artifact Function"@en ; + skos:definition "An Optical Processing Artifact Function that is realized by an Artifact participating in a light focusing event in which the Artifact causes the light beam to converge on a target spatial point."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000765 +cco:ont00000765 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Wave Production"@en ; + skos:altLabel "Wave Production Process"@en ; + skos:definition "A Natural Process in which a Wave Process is generated."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000766 +cco:ont00000766 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Hardness"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the degree to which it can be turned, bowed, or twisted without breaking."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000767 +cco:ont00000767 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:comment "A Lubrication System typical consists of a reservoir, pump, heat exchanger, filter, regulator, valves, sensors, pipes, and hoses. In some cases it also includes the passageways and openings within the artifact it is designed to lubricate. For example, the oil holes in a bearing and crankshaft."@en ; + rdfs:label "Lubrication System"@en ; + skos:definition "A Material Artifact that is designed to contain, transfer, and regulate the flow of lubricant to multiple locations in an Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000768 +cco:ont00000768 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Amount"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the total, aggregate or sum of a number of discrete items or material the entity contains as parts."@en ; + cco:ont00001754 "http://en.wiktionary.org/wiki/amount" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000769 +cco:ont00000769 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000133 ; + rdfs:label "Act of Requesting"@en ; + skos:definition "An Act of Directive Communication performed by asking for something."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/request" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000770 +cco:ont00000770 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Density"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the mass of an object per unit of its total volume."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000771 +cco:ont00000771 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Imaging Instrument"@en ; + skos:definition "A Material Artifact that is designed to produce images (visual representations) of an entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000772 +cco:ont00000772 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:comment "An Impulse changes the Momentum (and potentially also the direction of Motion) of the object it is applied to and is typically measured in Newton meters."@en ; + rdfs:label "Impulsive Force"@en ; + skos:altLabel "Imp"@en , + "Impulse"@en , + "J"@en ; + skos:definition "A Process Profile that is the integral of a Force that is applied to a portion of matter over a period of time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000773 +cco:ont00000773 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000789 ; + rdfs:label "Curvilinear Motion"@en ; + skos:altLabel "Curved Motion"@en ; + skos:definition "A Translational Motion process in which an Object moves along a curved path."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000774 +cco:ont00000774 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000199 ; + rdfs:label "Video Camera"@en ; + skos:definition "A Camera that is designed to form and digitally or physically record a continuous stream of subsequent images of an entity or scene such that the images can be played back in succession as a video."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000775 +cco:ont00000775 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000796 ; + rdfs:label "Locomotive"@en ; + skos:definition "A Rail Transport Vehicle that is designed to provide the motive power for a Train."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Locomotive&oldid=1062802629"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000776 +cco:ont00000776 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Signal Detection Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in the process of discerning between information-bearing patterns and random patterns, or noise, that distract from the information."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Detection_theory&oldid=1049765804"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000777 +cco:ont00000777 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001221 ; + rdfs:label "Hydraulic Motor"@en ; + skos:definition "A Physically Powered Engine that converts hydraulic pressure and flow into torque and angular displacement."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hydraulic_motor&oldid=1027427666"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000778 +cco:ont00000778 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Chemical Depot"@en ; + skos:definition "A Storage Facility that is designed to store chemicals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000779 +cco:ont00000779 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Portion of Cryosphere"@en ; + skos:definition "A fiat object part of the frozen part of a natural satellite's hydosphere"@en ; + cco:ont00001754 "https://oceanservice.noaa.gov/facts/cryosphere.html (accessed 03/06/2023)"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000780 +cco:ont00000780 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Ethnicity"@en ; + skos:definition "A Quality that inheres in its bearers by virtue of a common heritage, often consisting of a common language, a common culture (often including a shared religion) and an ideology that stresses common ancestry or endogamy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000781 +cco:ont00000781 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Control System"@en ; + skos:definition "A Material Artifact that is designed to manage, command, direct, or regulate the behavior of at least one other Artifact."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Control_system&oldid=1061817176"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000782 +cco:ont00000782 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Factory"@en ; + skos:definition "A Facility that is designed for manufacturing or refining material products."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Factory&oldid=1064125324"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000783 +cco:ont00000783 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000557 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001819 ; + owl:someValuesFrom cco:ont00000950 + ] ; + rdfs:label "Stasis of Non-Mission Capable Maintenance"@en ; + skos:definition "A Stasis of Non-Mission Capable during which the participating Continuant is not capable of performing its primary functions for the specified Mission due to participating in an Act Of Maintenance."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000784 +cco:ont00000784 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000628 ; + rdfs:label "Optical Property"@en ; + skos:definition "An Electromagnetic Radiation Property that is realized when its bearer interacts with electromagnetic waves within the visible light spectrum."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000785 +cco:ont00000785 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001320 ; + rdfs:label "Radio Repeater"@en ; + skos:definition "A Radio Transceiver that is designed to receive a radio signal, amplify it, and retransmit it (often on another frequency)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Repeater&oldid=1040047439"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000786 +cco:ont00000786 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000611 ; + rdfs:label "Increase of Role"@en ; + skos:definition "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Role that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000787 +cco:ont00000787 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000967 ; + rdfs:label "Altitude"@en ; + skos:definition "A Height that inheres in a Site that externally connects an Independent Continuant to either the surface of the Earth or the Earth's mean Sea Level."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000788 +cco:ont00000788 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000634 ; + rdfs:label "Turbine Steam Engine"@en ; + skos:altLabel "Steam Turbine"@en ; + skos:definition "A Steam Engine that is designed to extract thermal energy from pressurized steam and use it to do mechanical work on a rotating output shaft."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Steam_turbine&oldid=1060224962"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000789 +cco:ont00000789 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001133 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000763 + ] ; + rdfs:label "Translational Motion"@en ; + skos:definition "A Motion Process in which the participating Object changes its position from one portion of space to another."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000790 +cco:ont00000790 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Direct Current Power Source"@en ; + skos:definition "An Electrical Power Source that is designed to transfer electrical power in the form of direct current."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000791 +cco:ont00000791 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Chemical Reaction Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process that leads to the transformation of one set of chemical substances to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Chemical_reaction&oldid=1063262412"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000792 +cco:ont00000792 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001009 ; + rdfs:label "Catadioptric Optical Telescope"@en ; + skos:altLabel "Catadioptric Telescope"@en ; + skos:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light through the use of a combination of Lenses and Mirrors to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Catadioptric_system&oldid=1017210114"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000793 +cco:ont00000793 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Fuel Ventilation System"@en ; + skos:definition "A Fluid Control Artifact that is designed to allow air into the Fuel Tank to take the place of burned fuel."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000794 +cco:ont00000794 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000207 ; + rdfs:label "Geospatial Ellipse"@en ; + skos:definition "A One-Dimensional Geospatial Boundary that is formed by following a symmetric arc between four vertices which are connected to the center point of the ellipse via a straight line."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000795 +cco:ont00000795 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Electrical Conduction Artifact Function"@en ; + skos:definition "An Electrical Artifact Function that is realized by an Artifact being used to conduct an electric current."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000796 +cco:ont00000796 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000618 ; + rdfs:label "Rail Transport Vehicle"@en ; + skos:definition "A Ground Vehicle that is designed to convey cargo, passengers, or equipment by Railway."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000797 +cco:ont00000797 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Hazel"@en ; + skos:definition "A Color that is a combination of Brown and Green, typically associated with eye color."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000798 +cco:ont00000798 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000101 ; + owl:someValuesFrom cco:ont00000958 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000893 + ] ; + rdfs:label "Information Bearing Artifact"@en ; + skos:definition "A Material Artifact that carries an Information Content Entity and is designed to do so using a particular format or structure."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000799 +cco:ont00000799 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "List"@en ; + skos:definition "An Information Bearing Artifact that consists of one or more Information Bearing Artifacts that carry Information Content Entities and are the subjects of some Sequence Position Ordinality."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=List_(abstract_data_type)&oldid=1041588680"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000800 +cco:ont00000800 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00000619 + ] ; + rdfs:label "Day"@en ; + skos:definition "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one rotation around its Rotational Axis as specified relative to a particular Temporal Reference System."@en ; + skos:scopeNote "Unless otherwise specified, a Day is assumed to be relative to the rotational motion of the Earth and is approximately equal to a twenty-four hour temporal region for which the start and end times are specified by the Temporal Reference System used."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=day" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000801 +cco:ont00000801 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000161 ; + rdfs:label "y-Axis"@en ; + skos:definition "A Coordinate System Axis designated by the variable 'y'."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000802 +cco:ont00000802 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000641 ; + rdfs:label "Stage"@en ; + skos:definition "An Entertainment Facility that is designed to provide a space upon which entertaining performances or productions can occur."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Stage_(theatre)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000803 +cco:ont00000803 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Round"@en ; + skos:altLabel "Circular"@en ; + skos:definition "A Shape Quality that inheres in a bearer in virtue of every point along its circumference being equidistant from the center."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/round" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000804 +cco:ont00000804 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000136 ; + rdfs:label "Prism"@en ; + skos:definition "An Optical Instrument that is designed to refract light and which consists of a transparent material with flat polished surfaces where at least two of these surfaces have an angle between them."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prism&oldid=1060221124"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000805 +cco:ont00000805 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Coiled"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer being wound in concentric rings or spirals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000806 +cco:ont00000806 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000581 ; + rdfs:label "Power Tool"@en ; + skos:definition "A Tool that is designed to be actuated by a Power Source and mechanism other than or in addition to manual labor."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_tool&oldid=1057147715"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000807 +cco:ont00000807 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000394 ; + rdfs:label "Compression Ignition Engine"@en ; + skos:definition "An Internal Combustion Engine that is designed to operate by igniting a portion of Fuel and Oxidizer mixture using heat generated via compression of the mixture."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000808 +cco:ont00000808 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Reactant Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which a substance or compound is added to a system in order to bring about a chemical reaction and is consumed in the course of the reaction."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reagent&oldid=1017651471"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000809 +cco:ont00000809 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Submersible Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes of operating while submerged in water."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Submersible&oldid=1062994844"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000810 +cco:ont00000810 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000619 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Week Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Weeks and spans at least one Week."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000811 +cco:ont00000811 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Radio Wave Conversion Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact being used to convert electric power into radio waves or radio waves into electric power."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000812 +cco:ont00000812 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000951 ; + rdfs:label "Electromagnetic Pulse"@en ; + skos:altLabel "EMP"@en , + "Transient Electromagnetic Disturbance"@en ; + skos:definition "An Electromagnetic Wave Process that consists of a short high-energy burst of electromagnetic energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_pulse&oldid=1060859738"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000813 +cco:ont00000813 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Nuclear Fuel"@en ; + skos:definition "A Portion of Material that is designed to be used in a nuclear fission process to produce energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000814 +cco:ont00000814 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Water Treatment Facility"@en ; + skos:definition "A Facility that is designed for making water more acceptable for a specific end-use."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Water_treatment&oldid=1061706931"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000815 +cco:ont00000815 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Folded"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of one part of the bearer being layered over another connected part."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000816 +cco:ont00000816 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000255 ; + rdfs:label "Portion of Liquid Nitrogen"@en ; + skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid nitrogen."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000817 +cco:ont00000817 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000207 ; + rdfs:label "Geospatial Line String"@en ; + skos:definition "A One-Dimensional Geospatial Boundary that has two or more Geospatial Positions as vertices, where each vertex is connected to only one other vertex by a straight line."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000818 +cco:ont00000818 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Orange"@en ; + skos:definition "A Color that is between Red and Yellow with a wavelength in the visible spectrum typically between 590 to 635 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000819 +cco:ont00000819 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Stasis"@en ; + skos:definition "A Process in which one or more Independent Continuants endure in an unchanging condition."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000820 +cco:ont00000820 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000246 ; + rdfs:label "Stasis of Function"@en ; + skos:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Function that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000821 +cco:ont00000821 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001162 ; + rdfs:label "Act of Promising"@en ; + skos:definition "An Act of Commissive Communication performed by declaring that the promising agent will do, or refrain from doing, the specified action."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/promise" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000822 +cco:ont00000822 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 100–10 km"@en ; + rdfs:label "Very Low Frequency"@en ; + skos:altLabel "ITU Band Number 4"@en ; + skos:definition "A Radio Frequency that is between 3 and 30 kHz."@en ; + cco:ont00001753 "VLF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000823 +cco:ont00000823 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001148 ; + rdfs:label "Optical Communication Artifact Function"@en ; + skos:definition "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of visible light."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000824 +cco:ont00000824 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000246 ; + rdfs:label "Stasis of Role"@en ; + skos:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Role that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000825 +cco:ont00000825 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000346 ; + rdfs:label "Telecommunication Network Line"@en ; + skos:definition "A Communication Artifact that is designed to be the physical transmission medium that connects two or more Telecommunication Network Nodes within a Telecommunication Network to facilitate communication between the Nodes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications_link&oldid=1062252217"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000826 +cco:ont00000826 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001137 ; + rdfs:label "Refractivity"@en ; + skos:definition "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of that bearer to change the direction of a propagating wave when passing through it."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Refractive_index&oldid=1062519140"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000827 +cco:ont00000827 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000540 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00000223 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000540 ; + rdfs:label "Time of Day Identifier"@en ; + skos:definition "A Temporal Instant Identifier that designates some Time of Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000828 +cco:ont00000828 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001123 ; + rdfs:label "Pesticide Artifact Function"@en ; + skos:definition "A Poison Artifact Function that is realized in a process which causes illness in, or the death of, a living thing that is detrimental to humans or human concerns."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/pesticide" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000829 +cco:ont00000829 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000390 ; + rdfs:comment """Standards of date, time, and time zone data formats: +ISO/WD 8601-2 (http://www.loc.gov/standards/datetime/iso-tc154-wg5_n0039_iso_wd_8601-2_2016-02-16.pdf) +W3C (https://www.w3.org/TR/NOTE-datetime)"""@en , + "There is no class 'Time Zone' (the region), only 'Time Zone Identifier' (the designator for some region). Instances of 'Time Zone Identifier' should be related to instances of 'Information Bearing Entity' by means of the object properites 'uses time zone identifier' and 'time zone identifier used by' as appropriate. This is supposed to be analogous to the way we represent the relationship between measurement values and measurement units, where the relevant instance of Information Bearing Entity 'uses measurement unit' some instance of Measurement Unit (i.e., an instance of Information Content Entity)."@en ; + rdfs:label "Time Zone Identifier"@en ; + skos:definition "A Spatial Region Identifier that designates the region associated with some uniform standard time for legal, commercial, or social purposes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000830 +cco:ont00000830 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:comment "An object's speed is the scalar absolute value of it's Velocity."@en ; + rdfs:label "Speed"@en ; + skos:definition "A Process Profile that is characterized by the magnitude of an object's motion with respect to a frame of reference during some time period."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Speed&oldid=1058949945"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000831 +cco:ont00000831 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000828 ; + rdfs:label "Herbicide Artifact Function"@en ; + skos:definition "A Pesticide Artifact Function that is realized in a process which causes harm to, or the death to, unwanted plants."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Herbicide&oldid=1061228045"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000832 +cco:ont00000832 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00001088 + ] ; + rdfs:label "Year"@en ; + skos:definition "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one Orbital Revolution around its Primary Body as specified relative to a particular Temporal Reference System."@en ; + skos:scopeNote "Unless otherwise specified, a Year is assumed to be relative to the Orbiting of the Earth around the Sun and is approximately equal to 12 Months or 365 Days."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=year" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000833 +cco:ont00000833 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000973 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00000589 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00000749 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00000359 + ] ; + rdfs:label "Julian Date Identifier"@en ; + skos:definition "A Decimal Time of Day Identifier that designates a Julian Date and is composed of both a Julian Day Number and a Julian Date Fraction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000834 +cco:ont00000834 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001337 ; + rdfs:label "Mid Infrared Light Frequency"@en ; + skos:definition "An Infrared Light Frequency that is between 20 and 214 terahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000835 +cco:ont00000835 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Body Shape"@en ; + skos:definition "A Shape Quality inhering in a Person's body by virtue of the body's general outline or figure."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000836 +cco:ont00000836 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Financial Instrument Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Financial Instrument."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000837 +cco:ont00000837 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000914 ; + rdfs:label "Family"@en ; + skos:definition "A Group of Persons related to one another by ancestry or marriage."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000838 +cco:ont00000838 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:label "Portion of Fuel"@en ; + skos:definition "A Portion of Material that is designed to release thermal energy when reacted with other substances."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000839 +cco:ont00000839 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Donating"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is tranfered by an Agent (the Donor) to another Agent (the Recipient) without return consideration."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Donation&oldid=1059373518"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000840 +cco:ont00000840 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000618 ; + rdfs:label "Bicycle"@en ; + skos:definition "A Ground Vehicle that consists of two wheels, one in front of the other, attached to a frame along with handlebars and pedals such that it is designed to receive its motive power from pedaling."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bicycle&oldid=1063761124"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000841 +cco:ont00000841 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001153 ; + rdfs:label "Explosive Artifact Function"@en ; + skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired beucase of the rapid increase in volume and release of energy in an extreme manner."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/explosive" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000842 +cco:ont00000842 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Sub-Bass Frequency"@en ; + skos:definition "A Sonic Frequency that is between 20 and 60 Hz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000843 +cco:ont00000843 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Solar Panel"@en ; + skos:definition "An Electrical Power Source that consists in part of one or more photovoltaic (i.e. solar) cells that convert light energy (photons) directly into electricity by means of the photovoltaic effect."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Solar_cell&oldid=1063439932"^^xsd:anyURI , + "https://en.wikipedia.org/w/index.php?title=Solar_panel&oldid=1064397496"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000844 +cco:ont00000844 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Temperature"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the thermal energy in an object."@en ; + skos:example "celsius, fahrenheit, kelvin" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000845 +cco:ont00000845 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001022 ; + rdfs:comment "A percentage is one way to express a proportional measure where the decimal expression of the proportion is multiplied by 100, thus giving the proportional value with respect to a whole of 100. E.g., the ratio of pigs to cows on a farm is 44 to 79 (44:79 or 44/79). The proportion of pigs to total animals is 44 to 123 or 44/123. The percentage of pigs is the decimal equivalent of the proportion (0.36) multiplied by a 100 (36%). The percentage can be expressed as a proportion where the numerator value is transformed for a denominator of 100, i.e., 36 of a 100 animals are pigs (36/100)."@en , + "We may want to add either a subclass for Percentage or a data property (has percentage value) that links the percentage expression for a proportion to the relevant IBE."@en ; + rdfs:label "Proportional Ratio Measurement Information Content Entity"@en ; + skos:definition "A Ratio Measurement Information Content Entity that is a measurement of a portion of a whole (described by the numerator) compared against that whole (described by the denominator) where the whole is a nominally described set of like entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000846 +cco:ont00000846 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001076 ; + rdfs:label "Hydroelectric Power Plant"@en ; + skos:definition "An Electric Power Station that is designed to convert hydropower into electrical power."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hydroelectricity&oldid=1062438236"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000847 +cco:ont00000847 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001213 ; + owl:disjointWith cco:ont00000936 ; + rdfs:label "Active Stasis"@en ; + skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact is realizing one or more of its designed Artifact Functions (especially one of its primary functions)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000848 +cco:ont00000848 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000088 ; + rdfs:label "Mounted Gun"@en ; + skos:definition "A Firearm that is designed to be fired while mounted."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000849 +cco:ont00000849 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000453 ; + rdfs:label "Heating System"@en ; + skos:definition "An Environment Control System that is designed to heat the air or objects in a Site."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000850 +cco:ont00000850 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000135 ; + rdfs:label "Stasis of Quality"@en ; + skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Quality that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000851 +cco:ont00000851 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001104 ; + rdfs:label "Light Machine Gun"@en ; + skos:definition "A Long Gun that is designed to fire bullets in quick succession from an ammunition belt or magazine and to be employed by an individual soldier, with or without assistance, and typically weighing 9-22 lbs."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Light_machine_gun&oldid=1063598801"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000852 +cco:ont00000852 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Work"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of displacements of points to which Forces have been applied."@en ; + skos:example "joule, erg, kilowatt hour" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000853 +cco:ont00000853 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000958 ; + owl:disjointWith cco:ont00000965 ; + rdfs:label "Descriptive Information Content Entity"@en ; + skos:altLabel "Descriptive ICE"@en ; + skos:definition "An Information Content Entity that consists of a set of propositions that describe some Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000854 +cco:ont00000854 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000290 ; + rdfs:label "Decrease of Realizable Entity"@en ; + skos:definition "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Realizable Entity that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000855 +cco:ont00000855 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000660 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000132 ; + owl:someValuesFrom cco:ont00000065 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001819 ; + owl:someValuesFrom cco:ont00000065 + ] ; + rdfs:label "Effect of Location Change"@en ; + skos:definition "An Effect caused by some Act of Location Change and which results in an Object being located in a different place."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000856 +cco:ont00000856 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000182 ; + rdfs:label "Artifact History"@en ; + skos:definition "A History of an Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000857 +cco:ont00000857 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Ultra High Frequency Communication Instrument"@en ; + skos:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some Ultra High Frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000858 +cco:ont00000858 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000552 ; + rdfs:label "Improvised Explosive Device"@en ; + skos:definition "An Explosive Weapon that is designed to be used in non-conventional military action."@en ; + cco:ont00001753 "IED" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Improvised_explosive_device&oldid=1063432318"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000859 +cco:ont00000859 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Television Broadcast"@en ; + skos:altLabel "Act of Television Broadcasting"@en ; + skos:definition "An Act of Communciation by Media that is transmitted to an audience through a television network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Television_broadcasting&oldid=1063890047"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000860 +cco:ont00000860 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000587 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001262 ; + rdfs:label "Allied Person"@en ; + skos:definition "A Person who is the bearer of some Ally Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000861 +cco:ont00000861 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Split"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a linear opening, or having been divided into parts."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000862 +cco:ont00000862 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000144 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001857 ; + owl:someValuesFrom cco:ont00000675 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Sound Process Profile"@en ; + skos:altLabel "Sound Quality"@en ; + skos:definition "A Process Profile that is part of a sound reception process and is characterized by properties of incoming sound waves as they are translated by some sensory system."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI , + "http://www.animations.physics.unsw.edu.au/waves-sound/quantifying/index.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000863 +cco:ont00000863 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000379 ; + rdfs:label "Act of Confessing"@en ; + skos:definition "An Act of Representative Communication in which a person makes an admission of misdeeds or faults."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000864 +cco:ont00000864 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Public Safety Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of preventing and responding to events that could endanger the safety of the general public from significant danger, injury/harm, or damage, such as crimes or disasters (natural or man-made)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000865 +cco:ont00000865 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000876 ; + rdfs:label "Loss of Specifically Dependent Continuant"@en ; + skos:definition "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Specifically Dependent Continuant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000866 +cco:ont00000866 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Radio Broadcast"@en ; + skos:altLabel "Act of Radio Broadcasting"@en ; + skos:definition "An Act of Communciation by Media that is transmitted to an audience through a radio network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_network&oldid=1037183126"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000867 +cco:ont00000867 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000677 ; + rdfs:label "Pipeline"@en ; + skos:definition "A Product Transport Facility that is designed to transport goods or materials through a pipe."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pipeline&oldid=1024308788"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000868 +cco:ont00000868 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001173 ; + rdfs:label "Rocket Pod"@en ; + skos:definition "A Rocket Launcher that is designed to contain several Unguided Rockets held in individual tubes and to be used by Aircraft or Helicopters for close air support."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000869 +cco:ont00000869 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000199 ; + rdfs:label "Optical Camera"@en ; + skos:definition "A Camera that is designed to form and record an image generated from visible light."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Camera&oldid=1063931551"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000870 +cco:ont00000870 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Infrastructure System"@en ; + skos:altLabel "Infrastructure"@en ; + skos:definition "A Material Entity that is composed of elements bearing Infrastructure Roles and is by itself sufficient to provide a planned service or benefit to some organization that maintains its elements."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000871 +cco:ont00000871 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000551 ; + rdfs:label "Plant"@en ; + skos:definition "An Organism that is multicellular, eukaryotic, autotrophic, and has cells that contain chloroplasts and walls made of cellulose."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Plant&oldid=1060821100"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000872 +cco:ont00000872 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Brown"@en ; + skos:definition "A Color that consists of dark orange and red, and of very low intensity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000873 +cco:ont00000873 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001081 ; + rdfs:label "Physiographic Feature"@en ; + skos:definition "A Geographic Feature that is a geomorphological unit characterized by its surface form and location in the landscape."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Landform&oldid=1060439172"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000874 +cco:ont00000874 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Video"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity in the form of a sequence of representations that are presented sufficiently rapidly to create the appearance of motion and continuity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Video&oldid=1049376249"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000875 +cco:ont00000875 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:label "Act of Personal Communication"@en ; + skos:definition "An Act of Communication having a small audience."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000876 +cco:ont00000876 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000004 ; + rdfs:label "Loss of Dependent Continuant"@en ; + skos:definition "A Change in which some Independent Continuant ceases to be the bearer or carrier of some Dependent Continuant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000877 +cco:ont00000877 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000723 ; + rdfs:label "Brake Control System"@en ; + skos:definition "A Vehicle Control System that is designed to control the process of braking with the aim of preventing rolling, skidding, and hydroplaning."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000878 +cco:ont00000878 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000325 ; + rdfs:label "Identification Friend or Foe Transponder"@en ; + skos:altLabel "IFF"@en ; + skos:definition "A Radio Transponder that is designed to automatically transmit a predefined signal in response to receiving an appropriate interrogation signal such that the entity it is located on can be positively identified as friendly."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Identification_friend_or_foe&oldid=1055168718"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000879 +cco:ont00000879 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Religious Group Affiliation"@en ; + skos:definition "An Act of Association wherein some Person belongs to some Religious Demonination or sub-Denomination."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000880 +cco:ont00000880 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Religious Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes related to worship and prayer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000881 +cco:ont00000881 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Storage Facility"@en ; + skos:definition "A Facility that is designed to store materials or goods."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Storage&oldid=1048222564"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000882 +cco:ont00000882 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001076 ; + rdfs:label "Wind Farm"@en ; + skos:definition "An Electric Power Station that is designed to convert the wind's kinetic energy into electrical power by means of wind turbines."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wind_farm&oldid=1062817899"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000883 +cco:ont00000883 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001162 ; + rdfs:label "Act of Inviting"@en ; + skos:definition "An Act of Commissive Communication performed by requesting the presence or participation of the audience, and which may include offering an incentive or inducement."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/invite" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000884 +cco:ont00000884 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Loaning"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is given by an Agent (the Creditor) to another Agent (the Debtor) in order to receive Repayments from the Debtor which are of greater Financial Value."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000885 +cco:ont00000885 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Wavy"@en ; + skos:altLabel "Undulate"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of it having a sinuous or rippled border."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000886 +cco:ont00000886 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000422 ; + rdfs:label "Wired Communication Reception Artifact Function"@en ; + skos:definition "A Communication Reception Artifact Function that is realized during events in which an Artifact receives information transmitted from another Artifact, where the transmission of information occurs via a direct connection using an electrical conductor."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000887 +cco:ont00000887 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000460 ; + rdfs:label "City"@en ; + skos:definition "A Local Administrative Region in which a relatively large human population permanently resides; is designated as a city based on a particular administrative, legal, or historical status; and which delimits a local Government that typically oversees the provision of systems for sanitation, utilities, land usage, housing, and transportation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=City&oldid=1062635325"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000888 +cco:ont00000888 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "High Frequency Communication Instrument"@en ; + skos:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some High Frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000889 +cco:ont00000889 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000037 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000558 + ] ; + rdfs:label "Visible Observation"@en ; + skos:definition "An Act of Observation that involves visual perception."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000890 +cco:ont00000890 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Travel"@en ; + skos:definition "An Act of Location Change wherein one or more Persons move between relatively distant geographical locations for any purpose and any duration, with or without any means of transport."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Travel&oldid=1037229469"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000891 +cco:ont00000891 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001328 ; + rdfs:label "Calendar System"@en ; + skos:definition "A Temporal Reference System that is designed to organize and identify dates."@en ; + skos:scopeNote "Calendars typically organize dates through the use of naming and temporal conventions based on Days, Weeks, Months, and Years."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000892 +cco:ont00000892 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Depth"@en ; + skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a downward, backward, or inward direction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000893 +cco:ont00000893 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:comment "An empty notebook, when manufactured, is a medium but not yet a carrier of information content. However, a book, in the sense of a novel or collection of philosophical essays or poems, depends necessarily on it carrying some information content. Thus, there are no empty books. Likewise, there are no empty databases, only portions of digital storage that have not yet been configured to carry some information content according to a database software application."@en ; + rdfs:label "Information Medium Artifact"@en ; + skos:definition "A Material Artifact that is designed to have some Information Bearing Artifact as part."@en ; + skos:example "A magnetic hard drive" , + "A notebook" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000894 +cco:ont00000894 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000529 ; + rdfs:label "Decimal Date Identifier"@en ; + skos:definition "A Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since a specified Reference Time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000895 +cco:ont00000895 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000335 ; + rdfs:label "Married"@en ; + skos:altLabel "Married Stasis"@en ; + skos:definition "A Stasis of Generically Dependent Continuant that consists of a socially, culturally, or ritually recognized union or legal contract between spouses that establishes rights and obligations between them, between them and their children, and between them and their in-laws."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Marriage&oldid=1064076951"^^xsd:anyURI , + "Haviland, William A.; Prins, Harald E. L.; McBride, Bunny; Walrath, Dana (2011). Cultural Anthropology: The Human Challenge (13th ed.). Cengage Learning. ISBN 978-0-495-81178-7" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000896 +cco:ont00000896 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000745 ; + rdfs:label "Mean Point Estimate Information Content Entity"@en ; + skos:altLabel "Arithmetic Mean"@en , + "Average"@en , + "Mean"@en ; + skos:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the sum of all the values in the set divided by the total number of values in the set."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000897 +cco:ont00000897 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000457 ; + rdfs:comment "Oxidizers are essential participants in many processes including combustion and rusting. Hence, a portion of oxidizer must always be present along with a portion of fuel in order for combustion to occur."@en ; + rdfs:label "Portion of Oxidizer"@en ; + skos:altLabel "Portion of Oxidant"@en , + "Portion of Oxidizing Agent"@en ; + skos:definition "A Portion of Material that is disposed to steal electrons from other substances (i.e. to oxidize other substances) as a participant in a reduction-oxidation process."@en ; + skos:example "oxygen, hydrogen peroxide, chlorine, sulfiric acid, potassium nitrate" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000898 +cco:ont00000898 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00001180 + ] ; + dcterms:bibliographicCitation "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Geopolitical Power Role"@en ; + skos:definition "A Role had by an Organization, that is perceived by an International Community as capable of performing influential acts in that community, and which would be realized in performing such acts."@en ; + skos:prefLabel "Geopolitical Power Role"@en ; + cco:ont00001754 "https://chass.usu.edu/international-studies/aggies-go/power" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000899 +cco:ont00000899 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "MSI Plessey Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of an indefinite number of numerical characters and is used for inventory control and marking storage containers and shelves in warehouse environments."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000900 +cco:ont00000900 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001169 ; + rdfs:label "Radio Communication Relay Artifact Function"@en ; + skos:definition "A Communication Relay Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information without the use of wires from one Artifact to another for the purpose of communiction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000901 +cco:ont00000901 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001375 ; + rdfs:label "Decontamination Facility"@en ; + skos:definition "A Washing Facility that is designed to wash personnel or equipment after (potential) contamination by radioactive, biological, or chemical material."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Decontamination&oldid=1049850150"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000902 +cco:ont00000902 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Facility Use"@en ; + skos:definition "An Act of Artifact Employment in which an Agent makes use of some Facility."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000903 +cco:ont00000903 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000346 ; + rdfs:label "Radio Communication Instrument"@en ; + skos:definition "A Communication Instrument that is designed to enable communication between two or more entities via the use of radio waves."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000904 +cco:ont00000904 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000205 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001855 ; + owl:someValuesFrom cco:ont00000122 + ] ; + rdfs:label "Vehicle Track"@en ; + skos:definition "An Object Track for a Vehicle during some motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000905 +cco:ont00000905 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000655 ; + rdfs:label "Post Office"@en ; + skos:definition "A Mailing Facility that is designed for serving customers of the national postal system."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Post_office&oldid=1063684373"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000906 +cco:ont00000906 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000690 ; + rdfs:label "Email Box"@en ; + skos:definition "A Telecommunication Instrument that is designed to be the delivery destination of Email Messages that are addressed to the corresponding Email Address."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Email_box&oldid=1061295368"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000907 +cco:ont00000907 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000690 ; + rdfs:label "Telephone"@en ; + skos:altLabel "Phone"@en ; + skos:definition "A Telecommunication Instrument that is designed to provide point-to-point communication between agents by means of audio messages."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000908 +cco:ont00000908 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Artifact Processing"@en ; + skos:definition "A Planned Act of performing a series of mechanical or chemical operations on something in order to change or preserve it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000909 +cco:ont00000909 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Emergency AC/DC Power Source"@en ; + skos:definition "An Electrical Power Source that is designed to provide electrical power in an emergency situation by means of both alternating current and direct current."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000910 +cco:ont00000910 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Amplitude"@en ; + skos:definition "A Process Profile of an Oscillation Process that is the absolute value of the maximum displacement from a zero, equilibrium, or mean value during one cycle of the Oscillation Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000911 +cco:ont00000911 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Semi-Major Axis"@en ; + skos:definition "A One-Dimensional Spatial Region that is equal to half the length of the Major Axis of an Ellipse."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000912 +cco:ont00000912 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001360 ; + rdfs:label "Pyramidal"@en ; + skos:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having a polygonal base with vertices that all connect to the same apex to form triangular faces."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Pyramid_(geometry)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000913 +cco:ont00000913 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Maroon"@en ; + skos:definition "A Color consisting of purple and brown hue."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000914 +cco:ont00000914 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000300 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00001262 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom cco:ont00001262 + ] ; + rdfs:label "Group of Persons"@en ; + skos:definition "A Group of Agents that has only Persons as parts."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000915 +cco:ont00000915 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000605 ; + rdfs:label "Acronym"@en ; + skos:definition "An Abbreviated Name that combines the initial letters of a Designative Name and which is pronounced as a word."@en ; + skos:example "Wi-Fi, ASCII, OPSEC" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000916 +cco:ont00000916 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000891 ; + rdfs:label "Lunar Calendar System"@en ; + skos:definition "A Calendar System that is designed to organize and identify dates based on the cycles of the Moon's phases."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lunar_calendar&oldid=1055396837"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000917 +cco:ont00000917 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + dcterms:bibliographicCitation "Permanent Residency - Wikipedia. https://en.wikipedia.org/wiki/Permanent_residency. Accessed 10 Feb. 2023." ; + dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Permanent Resident Role"@en ; + skos:definition "A role inhering in a Person by virtue of that Person being recognized as having legal resident status in a Government Domain in which that person is not a citizen but where they have the right to reside on a permanent basis."@en ; + skos:prefLabel "Permanent Resident Role"@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Permanent_residency" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000918 +cco:ont00000918 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000346 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000998 + ] ; + rdfs:label "Telecommunication Network Node"@en ; + skos:definition "A Communication Artifact that consists of a connection point, redistribution point, or endpoint that is designed to be part of a Telecommunication Network and can be either active or passive."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Node_(networking)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000919 +cco:ont00000919 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000575 ; + rdfs:label "Parts List"@en ; + skos:definition "A Quality Specification that prescribes the Amount of some type of Artifact that are part of or located on another Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000920 +cco:ont00000920 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Death"@en ; + skos:definition "A Natural Process in which all biological functions that sustain a living organism cease."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Death&oldid=1064114499"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000921 +cco:ont00000921 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000800 ; + rdfs:label "Calendar Day"@en ; + skos:definition "A Day that begins and ends concurrently with the Seconds specified by a Calendar System to be the first and last Seconds of the Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000922 +cco:ont00000922 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Arrival"@en ; + skos:definition "An Act of Location Change that consists of the participating entity reaching its destination such that the larger Act of Location Change is completed."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000923 +cco:ont00000923 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000649 ; + rdfs:label "Arbitrary Identifier"@en ; + skos:altLabel "Arbitrary ID"@en ; + skos:definition "A Non-Name Identifier that consists of a string of characters that does not follow an encoding system."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000924 +cco:ont00000924 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001191 ; + rdfs:comment "A Beginning of Life Stasis (BoL) is a relatively brief Operational Stasis that is primarily of interest for the purpose of establishing a baseline for operational parameters to be compared to the designed specifications as well as the Artifact's performance throughout its operational life."@en ; + rdfs:label "Beginning of Life Stasis"@en ; + skos:definition "A Operational Stasis that holds during a Temporal Interval when an Artifact is first put into operational use such that its designed set of Artifact Functions is capable of operating at or near their designed peak performance levels."@en ; + cco:ont00001753 "BOL" , + "BoL" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000925 +cco:ont00000925 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000687 ; + rdfs:label "Act of Military Training Acquisition"@en ; + skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of Military Operations from an Agent or communication medium that realizes a capacity derived from its affiliation with a Military Organization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000926 +cco:ont00000926 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000123 ; + rdfs:label "Act of Apologizing"@en ; + skos:definition "An Act of Expressive Communication performed by acknowledging and expressing regret for a fault, shortcoming, or failure."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=apologizing" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000927 +cco:ont00000927 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Bass Frequency"@en ; + skos:definition "A Sonic Frequency that is between 60 and 250 Hz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000928 +cco:ont00000928 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000796 ; + rdfs:label "Train Car"@en ; + skos:altLabel "Railroad Car"@en ; + skos:definition "A Rail Transport Vehicle that consists of a single Vehicle that is not a Train but is designed to be connected to other Train Cars along with at least one Locomotive to form a Train."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Railroad_car&oldid=1063802472"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000929 +cco:ont00000929 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Part Role"@en ; + skos:definition "A Role that inheres in an entity in virtue of it being part of some other entity without being subject to further subdivision or disassembly without destruction of its designated use."@en ; + cco:ont00001754 "http://origins.sese.asu.edu/ses405/Class%20Notes/Sys-Hier-WBS_Module_V1.0_PAS.pdf"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000930 +cco:ont00000930 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001105 ; + rdfs:label "Nickel-metal Hydride Electric Battery"@en ; + skos:altLabel "NiMH Battery"@en ; + skos:definition "A Secondary Cell Electric Battery that has a metal-hydride anode and nickel oxide hydroxide cathode."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93metal_hydride_battery&oldid=1061626676"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000931 +cco:ont00000931 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000326 ; + rdfs:label "UPC-A Barcode"@en ; + skos:definition "A UPC Barcode that consists of 12 numerical digits."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000932 +cco:ont00000932 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Computing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a computation process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000933 +cco:ont00000933 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000907 ; + rdfs:label "Landline Telephone"@en ; + skos:definition "A Telephone that is connected to a Telephone Network through a pair of wires."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000934 +cco:ont00000934 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000126 ; + rdfs:label "Constituent State"@en ; + skos:altLabel "State"@en ; + skos:definition "A First-Order Administrative Region that is part of a Country and delimits a centralized regional Government that holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the State."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Constituent_state&oldid=1063662102"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000935 +cco:ont00000935 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Legal Instrument Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Legal Instrument."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000936 +cco:ont00000936 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001213 ; + rdfs:label "Deactivated Stasis"@en ; + skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact is not realizing any of its designed Artifact Functions (or at least not realizing any of its primary functions)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000937 +cco:ont00000937 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Inhibiting Motion Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact is used to inhibit the motion of some object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000938 +cco:ont00000938 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Financial Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of managing money."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000939 +cco:ont00000939 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000817 ; + rdfs:label "Geospatial Line"@en ; + skos:definition "A Geospatial Line String that has only two vertices."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000940 +cco:ont00000940 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Momentum"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the Momentum of a portion of matter that is in Motion."@en ; + skos:example "kg m/s, slug ft/s, g m/s" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000941 +cco:ont00000941 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001126 ; + rdfs:label "Phosphorescence"@en ; + skos:definition "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light after absorbing shorter wavelength radiation, and to continue emitting after the absorbing process has ceased."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Phosphorescence&oldid=1060815719"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000942 +cco:ont00000942 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000204 ; + rdfs:label "Sniper Rifle"@en ; + skos:definition "A Rifle that is designed to be highly accurate for long-range precision tactical shooting."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sniper_rifle&oldid=1061592308"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000943 +cco:ont00000943 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001248 ; + rdfs:label "Ocular Prosthesis"@en ; + skos:definition "An Artificial Eye that is designed to replace a missing eye, but which does not function as an eye."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ocular_prosthesis&oldid=1061336760"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000944 +cco:ont00000944 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000601 ; + rdfs:label "Thermal Imaging Artifact Function"@en ; + skos:definition "An Imaging Artifact Function that is realized during events in which an Artifact is used to create a visual representation of an entity using radiation from the far infrared region of the electromagnetic spectrum that the entity emits"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000945 +cco:ont00000945 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:label "X-ray Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing X-rays to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=X-ray_telescope&oldid=1035025593"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000946 +cco:ont00000946 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Government Building"@en ; + skos:definition "A Facility that is designed for the administration of a community."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Administration_(government)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000947 +cco:ont00000947 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001100 ; + rdfs:label "Temperature Measurement Artifact Function"@en ; + skos:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Temperature of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000948 +cco:ont00000948 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000455 ; + rdfs:label "Act of Religious Worship"@en ; + skos:definition "An Act of Ceremony wherein there occurs acts of religious devotion usually directed towards a deity."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Worship (Sense Key: Worship%2:42:00 or Worship%1:04:00::)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000949 +cco:ont00000949 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Consumption"@en ; + skos:definition "A Planned Act in which a resource is ingested or used up."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000950 +cco:ont00000950 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000970 ; + rdfs:label "Act of Maintenance"@en ; + skos:definition "An Act of Artifact Modification in which an Artifact is modified in order to preserve or restore one or more of its designed Qualities or Functions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000951 +cco:ont00000951 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000099 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000514 + ] ; + rdfs:label "Electromagnetic Wave Process"@en ; + skos:altLabel "Electromagnetic Radiation"@en ; + skos:definition "A Wave Process that is produced by charged particles, involves the periodic Oscillation of electric and magnetic fields at right angles to each other and the direction of wave propogation such that it has a Transverse Wave Profile, and which transfers electromagnetic radiant energy through a portion of space or matter."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000952 +cco:ont00000952 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000210 ; + rdfs:label "Electric Motor"@en ; + skos:altLabel "Electric Engine"@en ; + skos:definition "An Engine that is designed to convert electrical energy into mechanical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electric_motor&oldid=1063829856"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000953 +cco:ont00000953 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000862 ; + rdfs:label "Pitch"@en ; + skos:definition "A Sound Process Profile that is characterized by the frequency of translated sound waves, typically on a continuum from low to high."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000954 +cco:ont00000954 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000870 ; + rdfs:label "Telecommunication Infrastructure"@en ; + skos:definition "An Infrastructure System that is designed to support the use of Telecommunication Instruments to communicate."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Category:Telecommunications_infrastructure&oldid=989151314"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000955 +cco:ont00000955 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000278 ; + rdfs:label "Angular Momentum"@en ; + skos:definition "A Momentum that is the product of an object's moment of inertia and its Angular Velocity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Angular_momentum&oldid=1063992505"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000956 +cco:ont00000956 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001086 ; + rdfs:label "Highway Interchange"@en ; + skos:definition "A Road Junction that is designed to enable Ground Vehicles to exit one or more Highways and enter another Highway without directly crossing any other traffic stream."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Interchange_(road)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000957 +cco:ont00000957 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Reservoir"@en ; + skos:definition "A Storage Facility that is designed to store water in a man-made open enclosure or area."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reservoir&oldid=1055068000"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000958 +cco:ont00000958 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000031 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001808 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000031 ; + rdfs:label "Information Content Entity"@en ; + skos:altLabel "ICE"@en ; + skos:definition "A Generically Dependent Continuant that generically depends on some Information Bearing Entity and stands in relation of aboutness to some Entity."@en ; + skos:scopeNote "Information Content Entity is here intended to be a class of Entities whose instances are the informational content of Information Bearing Entities. For example, three instances of information bearers -- such as a bar chart, color-coded map, and a written report -- each of which lists the GDP of Countries for the year 2010 are each different carriers of the same information content. It is this content that is generically dependent upon its carrier. This treatment of Informational Content Entity (cf. the Information Artifact Ontology) leads to a principle of subtyping based upon the relationship that ICE's have with the Entity they are about rather than characteristics such as format, language, measurement scale, or media. The latter are treated here as being Qualities of bearers."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000030" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000959 +cco:ont00000959 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Frequency"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the number of times an event repeats per unit of time."@en ; + skos:example "hertz, revolutions per minute" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000960 +cco:ont00000960 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001190 ; + rdfs:label "Fixed Line Network Telephone Call"@en ; + skos:definition "A Telephone Call transmitted over a telephone network where the telephones are wired into a single telephone exchange."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000961 +cco:ont00000961 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Current Conversion Artifact Function"@en ; + skos:definition "An Electrical Artifact Function that is realized by processes in which some Artifact is used to convert some electrical current."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000962 +cco:ont00000962 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000593 ; + rdfs:label "Portion of Liquid Propellant"@en ; + skos:definition "A Portion of Propellant that is stored in a liquid state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000963 +cco:ont00000963 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000256 ; + rdfs:label "Fuel Transfer System"@en ; + skos:definition "A Fluid Control Artifact that is designed to facilitate the transfer of some Portion of Fuel from the Fuel Tank for use in some Engine."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000964 +cco:ont00000964 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 1,000–100 m"@en ; + rdfs:label "Medium Frequency"@en ; + skos:altLabel "ITU Band Number 6"@en ; + skos:definition "A Radio Frequency that is between 300 kHz and 3 MHz."@en ; + cco:ont00001753 "MF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000965 +cco:ont00000965 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001942 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000958 ; + rdfs:label "Directive Information Content Entity"@en ; + skos:altLabel "Directive ICE"@en ; + skos:definition "An Information Content Entity that consists of a set of propositions or images (as in the case of a blueprint) that prescribe some Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000966 +cco:ont00000966 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "EAN Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of 8 or 13 numerical digits and is used to scan consumer goods."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000967 +cco:ont00000967 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Height"@en ; + skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a vertical direction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000968 +cco:ont00000968 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000204 ; + rdfs:label "Assault Rifle"@en ; + skos:definition "A Rifle that is designed to have selective-fire functionality and use an intermediate Cartridge and a detachable magazine."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Assault_rifle&oldid=1063774380"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000969 +cco:ont00000969 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Speed"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the rates at which objects traverse distance."@en ; + skos:example "miles per hour, kilometers per hour, knot, mach" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000970 +cco:ont00000970 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000908 ; + rdfs:comment "Excluded from this class are instances of role change or role creation such as the introduction of an artifact as a piece of evidence in a trial or the loading of artifacts onto a ship for transport."@en ; + rdfs:label "Act of Artifact Modification"@en ; + skos:definition "An Act of Artifact Processing in which an existing Artifact is acted upon in a manner that changes, adds, or removes one or more of its Qualities, Dispositions, or Functions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000971 +cco:ont00000971 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:label "Act of Deceptive Communication"@en ; + skos:definition "Ac Act of Communication intended to mislead the audience by distortion or falsification of evidence and induce a reaction that is prejudicial to the interests of the audience."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000972 +cco:ont00000972 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000966 ; + rdfs:label "EAN-13 Barcode"@en ; + skos:definition "An EAN Barcode that consists of 13 numerical digits and is used to designate products at the point of sale."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000973 +cco:ont00000973 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000827 ; + rdfs:label "Decimal Time of Day Identifier"@en ; + skos:altLabel "Fractional Time of Day Identifier"@en ; + skos:definition "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using a decimal value for the portion of the Day that preceded the Temporal Instant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000974 +cco:ont00000974 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00000476 + ] ; + rdfs:label "Plan"@en ; + skos:definition "A Directive Information Content Entity that prescribes some set of intended Intentional Acts through which some Agent expects to achieve some Objective."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Plan&oldid=1047320560"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000975 +cco:ont00000975 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Cyan"@en ; + skos:definition "A Color that is between Green and Blue with a wavelength in the visible spectrum typically between 490 and 520 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000976 +cco:ont00000976 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000696 ; + rdfs:label "Political Orientation"@en ; + skos:definition "An Ideology that characterizes the political thinking of an Agent or Group of Agents, usually with respect to the political environment within a particular nation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000977 +cco:ont00000977 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Publishing Mass Media Documentary"@en ; + skos:definition "An Act of Mass Media Communication involving the preparation and public issuance of information that provides a factual record or report."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000978 +cco:ont00000978 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000015 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001803 ; + owl:someValuesFrom obo:BFO_0000015 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Cause"@en ; + skos:definition "A Process that is the cause of or one of the causes of some other Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000979 +cco:ont00000979 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Closure"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the degree to which that bearer affords passage or sightline through it via an opening, aperture, orifice, or vent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000980 +cco:ont00000980 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001084 ; + rdfs:label "Portion of Waste Material"@en ; + skos:definition "A Portion of Processed Material that serves no further use in terms of the initial user's own purposes of production, transformation, or consumption such that the Agent wants to dispose of it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000981 +cco:ont00000981 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Portion of Material Consumption"@en ; + skos:definition "An Act of Artifact Employment in which a Portion of Material is expended."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000982 +cco:ont00000982 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000543 ; + rdfs:label "Decrease of Function"@en ; + skos:definition "A Decrease of Disposition in which some Independent Continuant has a decrease of some Function that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000983 +cco:ont00000983 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001028 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000514 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001028 ; + rdfs:label "Shear Wave Process"@en ; + skos:definition "A Mechanical Wave that has a Transverse Wave Profile."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000984 +cco:ont00000984 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Occupation Role"@en ; + skos:definition "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill within the context of some Act of Employment."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000985 +cco:ont00000985 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001350 ; + rdfs:label "Thermal Insulation Artifact Function"@en ; + skos:definition "A Thermal Control Artifact Function that is realized during events in which an Artifact prevents or reduces the transfer of heat between objects that are in thermal contact or in range of radiative influence."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Thermal_insulation&oldid=1059273300"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000986 +cco:ont00000986 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 ; + rdfs:label "Scar"@en ; + skos:definition "A Bodily Component that consists of a portion of fibrous connective tissue on skin or within body tissue and which was formed due to an injury that has not healed completely."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Scar&oldid=1057179533"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000987 +cco:ont00000987 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Citizen Role"@en ; + skos:definition "A Role that inheres in a Person by virtue of that Person being legally recognized as a member of a particular state, with associated rights and obligations."@en ; + cco:ont00001754 "http://en.wikitionary.org/wiki/citizen" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000988 +cco:ont00000988 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000804 ; + rdfs:label "Reflective Prism"@en ; + skos:definition "A Prism designed to reflect light in order to flip, invert, rotate, deviate, or displace a beam of light entering the Prism."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000989 +cco:ont00000989 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000732 ; + rdfs:comment "The corresponding Wavelength range is 100–10 mm"@en ; + rdfs:label "Super High Frequency"@en ; + skos:altLabel "ITU Band Number 10"@en ; + skos:definition "A Microwave Frequency that is between 3 and 30 GHz."@en ; + cco:ont00001753 "SHF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000990 +cco:ont00000990 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000003 ; + rdfs:label "Nickname"@en ; + skos:definition "A Designative Name that is a familiar or humorous substitute for an entity's Proper Name."@en ; + skos:example "Ike, Chief, P-Fox" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000991 +cco:ont00000991 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Bent"@en ; + skos:altLabel "Angular"@en , + "Kinked"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having one or more angles along its border."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000992 +cco:ont00000992 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00000085 + ] ; + rdfs:comment "The Second is used as the basic SI unit of time."@en ; + rdfs:label "Second"@en ; + skos:definition "A Temporal Interval that is equal to the duration of 9,192,631,770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom."@en ; + cco:ont00001754 "https://physics.nist.gov/cuu/Units/second.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000993 +cco:ont00000993 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000961 ; + rdfs:label "Power Rectifying Artifact Function"@en ; + skos:definition "A Current Conversion Artifact Function that is realized by processes in which some Artifact is used to convert alternating current (AC) to direct current (DC)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000994 +cco:ont00000994 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Electrical Power Production Artifact Function"@en ; + skos:definition "An Electrical Artifact Function that is realized during events in which an Artifact is used to generate electrical power."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 +cco:ont00000995 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Material Artifact"@en ; + skos:definition "A Material Entity that was designed by some Agent to realize a certain Function."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000996 +cco:ont00000996 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000294 ; + rdfs:label "Ramjet Engine"@en ; + skos:altLabel "Ramjet"@en ; + skos:definition "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air (without the use of an axial compressor) and decelerate it to subsonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ramjet&oldid=1062836331"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000997 +cco:ont00000997 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Disrupting Disposition"@en ; + skos:definition "A disposition the realization of which would disrupt a process some entity has an interest in."@en ; + skos:editorialNote "This is a defined class. A Disrupting Disposition is indexed by the interest_in object property. A disposition can be a Disrupting Disposition according to one index and not a Disrupting Disposition according to another index." ; + skos:prefLabel "Threat"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000998 +cco:ont00000998 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001036 ; + rdfs:label "Telecommunication Network"@en ; + skos:definition "A Communication System that is designed to enable the transmission of information over significant distances between Telecommunication Endpoints via Telecommunication Network Nodes and Lines."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000999 +cco:ont00000999 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001213 ; + owl:disjointWith cco:ont00001191 ; + rdfs:label "Defunct Stasis"@en ; + skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact no longer maintains its designed set of Artifact Functions (or at least no longer maintains its primary functions)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001000 +cco:ont00001000 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000252 ; + rdfs:label "Spray Nozzle"@en ; + skos:definition "A Nozzle that is designed to facilitate a conversion of the flow of a portion of liquid into a dynamic collection of drops dispersed in a portion of gas."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001001 +cco:ont00001001 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Drooping"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a border that hangs downwards."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001002 +cco:ont00001002 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Message"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity that is relatively brief and to be transmitted from a sender to a recipient."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Message&oldid=1060098631"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001003 +cco:ont00001003 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Cartridge"@en ; + skos:definition "A Portion of Ammunition that is designed to package a Bullet, a propellant substance, and a primer within a case that is designed to fit within the firing chamber of a Firearm."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Cartridge_(firearms)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001004 +cco:ont00001004 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Electromagnetic Force"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the electromagnetic force between electrically charged entities."@en ; + skos:example "volt, ampere, coulomb" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001005 +cco:ont00001005 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000294 ; + rdfs:label "Turbojet Air-Breathing Jet Engine"@en ; + skos:definition "An Air-Breathing Jet Engine that uses a Turbojet, which consists of a Turbine with a Propelling Nozzle."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Turbojet&oldid=1060948529"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001006 +cco:ont00001006 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:label "Operator Role"@en ; + skos:definition "A Role that inheres in an Agent by virtue of that Agent's responsibilities to operate or control some Artifact."@en ; + skos:example "the role of driving a car" , + "the role of flying an airplane" , + "the role of operating a crane" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001007 +cco:ont00001007 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000928 ; + rdfs:label "Passenger Train Car"@en ; + skos:definition "A Train Car that is designed to transport passengers."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Passenger_car_(rail)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001008 +cco:ont00001008 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Biological Weapon"@en ; + skos:definition "A Weapon that is designed to inflict harm, incapacity, or death by means of releasing disease-producing agents—such as bacteria, viruses, or fungi."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Biological_warfare&oldid=1062972883"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001009 +cco:ont00001009 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000547 ; + rdfs:label "Optical Telescope"@en ; + skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light to form an enhanced image of the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Optical_telescope&oldid=1062201329"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001010 +cco:ont00001010 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001811 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001163 ; + owl:disjointWith cco:ont00001022 , + cco:ont00001364 ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Ordinal Measurement Information Content Entity"@en ; + skos:definition "A Measurement Information Content Entity that consists of a symbol that places an Entity into some rank order."@en ; + skos:example "The sentence \"The coldest day in history in Chicago, IL. is January 20, 1985.\" is the carrier of an ordinal measurment."@en , + "a measurement that places Geospatial Regions into a rank order of small, medium, large" , + "a measurement that places military units onto a readiness rank order of red, yellow, green" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001011 +cco:ont00001011 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000053 ; + rdfs:label "Automobile"@en ; + skos:definition "A Ground Motor Vehicle that is designed to transport a small number of passengers while traveling on four tired wheels."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Car&oldid=1064116950"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001012 +cco:ont00001012 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:comment "Further variants of GS1 DataBar have not been defined here."@en ; + rdfs:label "GS1 DataBar Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of 12-14 numerical digits and is used in retail and healthcare."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001013 +cco:ont00001013 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Heating Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which the thermal energy of a system increases."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001014 +cco:ont00001014 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000003 ; + rdfs:label "Proper Name"@en ; + skos:definition "A Designative Name that is an official name for a particular entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001015 +cco:ont00001015 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000646 ; + rdfs:label "Controlled-Access Highway"@en ; + skos:altLabel "Expressway"@en , + "Freeway"@en , + "Motorway"@en ; + skos:definition "A Highway that is designed for high-speed vehicular traffic, with all traffic flow and ingress/egress regulated."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Controlled-access_highway&oldid=1063655601"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001016 +cco:ont00001016 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Portion of Lithosphere"@en ; + skos:definition "A fiat object part of the rigid, outermost rocky shell of a natural satellite."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lithosphere&oldid=1143215085"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001017 +cco:ont00001017 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00001379 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Agent"@en ; + skos:definition "A Material Entity that bears an Agent Capability."@en ; + cco:ont00001754 "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001018 +cco:ont00001018 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000350 ; + rdfs:label "Equipment Cooling System"@en ; + skos:definition "A Cooling System that is designed to cool some piece of equipment."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001019 +cco:ont00001019 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000723 ; + rdfs:label "Steering Control System"@en ; + skos:definition "A Vehicle Control System that is designed to control the direction some Vehicle is traveling."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001020 +cco:ont00001020 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000838 ; + rdfs:label "Portion of Gaseous Fuel"@en ; + skos:definition "A Portion of Fuel that is stored in a gaseous state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001021 +cco:ont00001021 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000379 ; + rdfs:label "Act of Denying"@en ; + skos:definition "An Act of Representative Communication performed by either asserting that something is not true or real or refusing to satisfy a request or desire."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/denial" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001022 +cco:ont00001022 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001983 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001163 ; + owl:disjointWith cco:ont00001364 ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Ratio Measurement Information Content Entity"@en ; + skos:definition "A Measurement Information Content Entity that consists of a symbol that places a Quality of an Entity onto an interval scale having a true zero value."@en ; + skos:example "The sentence \"The temperature reached 240.372 degrees Kelvin on January 20, 1985 in Chicago, IL.\" is the carrier of a ratio measurement as 0 degrees on the Kelvin scale does describe absolute zero."@en , + "a measurement of the barometric pressure at 1,000 feet above sea level" , + "a measurement of the measure of air temperature on the Kelvin scale" , + "a measurement of the number of members in an Organization" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001023 +cco:ont00001023 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000619 ; + rdfs:label "Calendar Week"@en ; + skos:definition "A Week that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Week."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=calendar+week" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001024 +cco:ont00001024 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000394 ; + rdfs:label "Spark Ignition Engine"@en ; + skos:definition "An Internal Combustion Engine that is designed to operate by generating a spark to ignite a portion of Fuel and Oxidizer mixture."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001025 +cco:ont00001025 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Electric Generator"@en ; + skos:definition "An Electrical Power Source that is designed to convert mechanical energy to electrical energy for use in an external circuit."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electric_generator&oldid=1057805035"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001026 +cco:ont00001026 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000119 ; + rdfs:label "Pointing Orientation"@en ; + skos:altLabel "Facing Orientation"@en ; + skos:definition "A Spatial Orientation of a Material Entity in which one or more of its designated components are oriented toward a specified direction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001027 +cco:ont00001027 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000095 ; + rdfs:label "Trim Tab"@en ; + skos:definition "A Control Surface that is designed to counteract hydro-, aerodynamic, or other forces in order to stabilize the Vehicle it is part of in the desired Attitude."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Trim_tab&oldid=1054550485"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001028 +cco:ont00001028 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000099 ; + rdfs:label "Mechanical Wave Process"@en ; + skos:definition "A Wave Process that involves Oscillation of a portion of matter such that energy is transferred through the material medium."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mechanical_wave&oldid=1057233679"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001029 +cco:ont00001029 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Unguided Rocket"@en ; + skos:altLabel "Rocket"@en ; + skos:definition "A Portion of Ammunition that is designed to be a self-propelled, but unguided, projectile that delivers some payload (explosive or other) over relatively long distances through the use of a Rocket Engine."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Rocket_(weapon)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001030 +cco:ont00001030 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000796 ; + rdfs:label "Train"@en ; + skos:altLabel "Railroad Train"@en , + "Railway Train"@en ; + skos:definition "A Rail Transport Vehicle that consists of a series of connected Train Cars or Railcars."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Train&oldid=1064071492"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001031 +cco:ont00001031 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001162 ; + rdfs:label "Act of Volunteering"@en ; + skos:definition "An Act of Commissive Communication performed by voluntarily undertaking or expressing a willingness to undertake a service."@en ; + skos:example "entering into military service voluntarily" , + "rendering a service voluntarily" ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/volunteer" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001032 +cco:ont00001032 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001374 ; + rdfs:label "Act of Assignment"@en ; + skos:definition "An Act of Declarative Communication in which rights held by one party (the assignor) are transferred to another party (the assignee) with regard to a particular entity as specified by the details of the assignment, which is often prescribed by a contract."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Assignment_(law)&oldid=1056101591"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001033 +cco:ont00001033 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Biological Sex"@en ; + skos:definition "A Quality inhering in a bearer by virtue of the bearer's ability to undergo sexual reproduction in order to differentiate the individuals or types involved."@en ; + cco:ont00001754 "http://purl.org/obo/owl/PATO#PATO_0000047" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001034 +cco:ont00001034 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000774 ; + rdfs:label "Full Motion Video Camera"@en ; + skos:definition "A Video Camera that is designed to capture and record images of sufficiently high quality and in rapid enough succession that the resulting video supports smooth playback."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001035 +cco:ont00001035 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000387 ; + rdfs:label "Pitch Axis"@en ; + skos:altLabel "Lateral Axis"@en ; + skos:definition "An Axis of Rotation that passes through the center of an object's Mass and is perpendicular both to the direction of the object's motion and to the object's Yaw Axis."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001036 +cco:ont00001036 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Communication System"@en ; + skos:definition "A Material Artifact that is designed to enable some Act of Communication by means of transmission systems, relay stations, tributary stations, and data terminal equipment, usually capable of interconnection and interoperation to form an integrated whole."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Communications_system&oldid=1058600948"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001037 +cco:ont00001037 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001197 ; + rdfs:label "Constructed Feature"@en ; + skos:definition "An Anthropogenic Feature that has been constructed by deliberate human effort."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001038 +cco:ont00001038 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001105 ; + rdfs:label "Nickel Cadmium Electric Battery"@en ; + skos:altLabel "NiCad Battery"@en ; + skos:definition "A Secondary Cell Electric Battery that has a cadmium anode and nickel oxide hydroxide cathode."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93cadmium_battery&oldid=1061809659"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001039 +cco:ont00001039 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Repayment"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Debtor) to another Agent (the Creditor) to decrease the amount the Debtor owes to the Creditor from an earlier Act of Loaning."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001040 +cco:ont00001040 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Nadir"@en ; + skos:definition "A One-Dimensional Spatial Region that extends from a given location downward along the local vertical direction pointing in the direction of the apparent Gravitational Force at that location."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nadir&oldid=1057007248"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001041 +cco:ont00001041 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001010 ; + rdfs:label "Sequence Position Ordinality"@en ; + skos:definition "An Ordinal Measurement Information Content Entity that is about the position of some entity in some ordered sequence."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001042 +cco:ont00001042 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Equipment Mount"@en ; + skos:definition "A Material Artifact that is designed to support an Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001043 +cco:ont00001043 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000713 ; + rdfs:label "Aircraft"@en ; + skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by air travel."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aircraft&oldid=1063924562"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001044 +cco:ont00001044 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Nuclear Radiation Detection Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to detect the presence of nuclear radiation particles."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001045 +cco:ont00001045 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000319 ; + rdfs:label "Artifact Model"@en ; + skos:definition "A Directive Information Content Entity that prescribes a common set of Functions and Qualities to inhere in a set of artifact instances."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001046 +cco:ont00001046 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001002 ; + rdfs:label "Notification Message"@en ; + skos:definition "A Message that is designed to bear an Information Content Entity that describes a scenario that has been determined to merit attention by the recipient."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001047 +cco:ont00001047 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Frequency"@en ; + skos:altLabel "Temporal Frequency"@en ; + skos:definition "A Process Profile that is characterized by the number of repetitive processes during a particular time period."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Frequency&oldid=1062800545"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001048 +cco:ont00001048 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000004 ; + rdfs:label "Increase of Dependent Continuant"@en ; + skos:definition "A Change in which some Independent Continuant has an increase in the level of some Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001049 +cco:ont00001049 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000288 ; + rdfs:label "Electrical Power Source"@en ; + skos:definition "A Power Source that is designed to generate, control, and transfer power in the form of electrical energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001050 +cco:ont00001050 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000716 ; + rdfs:label "Primary Cell Electric Battery"@en ; + skos:altLabel "Primary Cell Battery"@en ; + skos:definition "A Electric Battery that is designed for one-time use and not to be recharged."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Primary_cell&oldid=1047226932"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001051 +cco:ont00001051 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Projectile Launcher"@en ; + skos:definition "A Weapon that is designed to inflict damage or harm by means of launching a high-velocity projectile at a target."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Projectile&oldid=1062048285"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001052 +cco:ont00001052 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Military Facility"@en ; + skos:definition "A Facility that is designed to support a Military Force."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001053 +cco:ont00001053 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Collision"@en ; + skos:definition "An Act of Location Change involving the movement of one object such that it collides with another object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001054 +cco:ont00001054 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000499 ; + rdfs:label "Helical Antenna"@en ; + skos:definition "A Wire Antenna that consists of a conducting wire wound in the form of a helix that is typically mounted over a ground plane with a feed line connected between the bottom of the helix and the ground plane."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Helical_antenna&oldid=1062343033"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001055 +cco:ont00001055 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Branched"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having subdivisions or offshoots."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001056 +cco:ont00001056 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:comment "Visible light overlaps with near infrared and near ultraviolet."@en ; + rdfs:label "Visible Light Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 400 and 800 terahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Light&oldid=1062630851"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001057 +cco:ont00001057 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Issuing Mass Media Press Release"@en ; + skos:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001058 +cco:ont00001058 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00000800 + ] ; + rdfs:label "Hour"@en ; + skos:definition "A Temporal Interval that is equal to sixty consecutive Minutes."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=hour" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 +cco:ont00001059 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Shape Quality"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the ratios between dimensions of external features of that bearer."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001060 +cco:ont00001060 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Fuel System"@en ; + skos:definition "A Material Artifact that is designed to pump, manage, and deliver some Portion of Fuel to the Propulsion System and Auxiliary Power Unit of some Vehicle."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001061 +cco:ont00001061 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000053 ; + rdfs:label "Motorcycle"@en ; + skos:altLabel "Motorbike"@en ; + skos:definition "A Ground Motor Vehicle that is designed to transport a very small number of passengers (usually 1 or 2) while traveling on two or three tired wheels."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Motorcycle&oldid=1063743553"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001062 +cco:ont00001062 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000300 ; + dcterms:bibliographicCitation "The International Community. 5 Apr. 2023, https://dictionary.cambridge.org/us/dictionary/english/international-community." ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "International Community"@en ; + skos:definition "A maximal Group of Geopolitical Organizations engaged in geopolitics with one another."@en ; + skos:prefLabel "International Community"@en ; + cco:ont00001754 "https://dictionary.cambridge.org/us/dictionary/english/international-community" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001063 +cco:ont00001063 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Straight"@en ; + skos:altLabel "Linear"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer not having curves, bends, or angles along its borders."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001064 +cco:ont00001064 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:comment "For information on types of barcodes, see: https://www.scandit.com/types-barcodes-choosing-right-barcode/"@en ; + rdfs:label "Barcode"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear one or more geometric shapes that concretize some Directive Information Content Entity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Barcode&oldid=1059844765"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001065 +cco:ont00001065 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001202 ; + rdfs:label "Two Dimensional Extent"@en ; + skos:altLabel "Area"@en ; + skos:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in two dimensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001066 +cco:ont00001066 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000250 ; + rdfs:label "Loss of Disposition"@en ; + skos:definition "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Disposition."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001067 +cco:ont00001067 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Laser"@en ; + skos:definition "A Material Artifact that is designed to emit light coherently through a process of optical amplification based on the stimulated emission of electromagnetic radiation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Laser&oldid=1059215159"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001068 +cco:ont00001068 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000395 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000019 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Quality"@en ; + skos:definition "A Gain of Specifically Dependent Continuant in which an Independent Continuant becomes the bearer of some Quality."@en ; + skos:example "A person becoming pregnant." ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001069 +cco:ont00001069 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001938 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000958 ; + owl:disjointWith cco:ont00001163 ; + rdfs:label "Representational Information Content Entity"@en ; + skos:definition "An Information Content Entity that represents some Entity."@en ; + skos:example "the content of a court transcript represents a courtroom proceeding" , + "the content of a photograph of the Statue of Liberty represents the Statue of Liberty" , + "the content of a video of a sporting event represents that sporting event" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001070 +cco:ont00001070 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Fluid Control Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes in which some Artifact is used to control the direction or flow of some fluid."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001071 +cco:ont00001071 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00000713 + ] ; + rdfs:label "Payload Capacity"@en ; + skos:definition "An Artifact Function that inheres in a Vehicle that is designed to transport Payload, and which is typically characterized by the maximum Weight, Mass, or Volume of Payload that the Vehicle can transport."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001072 +cco:ont00001072 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000169 ; + rdfs:label "FM Radio Broadcast Frequency"@en ; + skos:altLabel "Frequency Modulation Radio Broadcast Frequency"@en ; + skos:definition "A Very High Frequency that is between 88 and 108 MHz."@en ; + cco:ont00001754 "International Telecommunication Union (ITU) Region 2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001073 +cco:ont00001073 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000608 ; + rdfs:label "Financial Value of Property"@en ; + skos:altLabel "Property Value"@en ; + skos:definition "Financial Value that inheres in an material entity that is the object of an Act of Ownership."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001074 +cco:ont00001074 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000687 ; + rdfs:label "Act of Educational Training Acquisition"@en ; + skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of a curriculum from an Agent or communication medium that realizes a capacity derived from its affiliation with some Educational Organization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001075 +cco:ont00001075 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000234 ; + rdfs:label "Act of Training Instruction"@en ; + skos:definition "An Act of Training performed by an Agent by imparting knowledge to another Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001076 +cco:ont00001076 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Electric Power Station"@en ; + skos:altLabel "Power Plant"@en ; + skos:definition "A Facility that is designed to generate electrical power."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_station&oldid=1052973815"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001077 +cco:ont00001077 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000848 ; + rdfs:label "Heavy Machine Gun"@en ; + skos:definition "A Mounted Gun that is designed to fire ammunition greater than .50 caliber or 12.7mm ammunition in quick succession from an ammunition belt, and which typically weighs more than 30lbs."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Heavy_machine_gun&oldid=1047303735"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001078 +cco:ont00001078 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000226 ; + rdfs:label "Airport"@en ; + skos:definition "A Transportation Facility that is designed for launching, receiving, and housing Aircraft."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Airport&oldid=1063243963"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001079 +cco:ont00001079 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Blond"@en ; + skos:definition "A Color that ranges from nearly white to a light greyish yellow"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001080 +cco:ont00001080 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001337 ; + rdfs:label "Far Infrared Light Frequency"@en ; + skos:definition "An Infrared Light Frequency that is between 300 gigahertz and 20 terahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001081 +cco:ont00001081 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000574 ; + rdfs:label "Geographic Feature"@en ; + skos:definition "An Environmental Feature that is a natural (i.e. not human made) topographical feature having a (relatively) stable location in some Geospatial Region which can be designated by location-specific data."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001082 +cco:ont00001082 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001145 ; + rdfs:label "Patch Receiver"@en ; + skos:definition "A Radio Receiver that uses a Patch Antenna to intercept radio signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001083 +cco:ont00001083 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000056 ; + rdfs:label "Air-Breathing Combustion Engine"@en ; + skos:definition "A Reaction Engine that functions by drawing a continuous stream of air into and through the Engine where it is compressed, mixed with a Portion of Fuel, ignited, and then expelled as exhaust gas."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001084 +cco:ont00001084 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Portion of Processed Material"@en ; + skos:definition "A Material Artifact that is the output of an Act of Artifact Processing."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001085 +cco:ont00001085 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Reflection Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact participating in a reflection event in which the Artifact causes a change in a wavefront at an interface between the reflecting medium and the transmission medium such that the wavefront returns into the transmission medium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001086 +cco:ont00001086 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Road Junction"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable Ground Vehicles to exit one Road and enter another."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Junction_(road)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001087 +cco:ont00001087 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001306 ; + rdfs:label "Orientation Observation Artifact Function"@en ; + skos:altLabel "Attitude Observation Artifact Function"@en ; + skos:definition "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the Orientation of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001088 +cco:ont00001088 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Decade"@en ; + skos:definition "A Temporal Interval that is equal to a period of ten consecutive Years."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=decade" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001089 +cco:ont00001089 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001283 ; + rdfs:label "Petrochemical Refinery"@en ; + skos:definition "A Refinery that is designed for refining crude oil, intermediate petroleum products, or synthetic petroleum into products of value."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Petrochemical&oldid=1060574535"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001090 +cco:ont00001090 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Pressure"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of Force applied perpendicular to a surface per unit area."@en ; + skos:example "pascal, atmosphere, pound-force per square inch" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001091 +cco:ont00001091 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Fort"@en ; + skos:definition "A Military Facility that is designed to support the defense of or solidification of rule over some Geospatial Region and its inhabitants."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fortification&oldid=1060156408"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001092 +cco:ont00001092 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000098 ; + rdfs:label "Electrical Power Storage Artifact Function"@en ; + skos:altLabel "Capacitance"@en ; + skos:definition "An Electrical Artifact Function that is realized during events in which an Artifact is used to store electrical power to be released at a later time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001093 +cco:ont00001093 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000475 ; + rdfs:label "Coin"@en ; + skos:definition "A Portion of Cash that consists of a flat, portable, round pieces of metal designed to bear some specified Financial Value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001094 +cco:ont00001094 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001251 ; + rdfs:label "Act of Espionage"@en ; + skos:definition "An Act of Intelligence Gathering involving the obtaining of information that is considered secret or confidential without the permission of the holder of the information."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Espionage&oldid=1062702647"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001095 +cco:ont00001095 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000363 ; + rdfs:label "Cellular Telecommunication Network"@en ; + skos:altLabel "Cellular Network"@en , + "Mobile Telecommunication Network"@en ; + skos:definition "A Wireless Telecommunication Network where the last link between the network and the end user is wireless and is distributed over service areas called cells."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cellular_network&oldid=1061429562"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001096 +cco:ont00001096 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001104 ; + rdfs:label "Submachine Gun"@en ; + skos:definition "An Long Gun that is designed to be have automatic-fire functionality, fire pistol-caliber ammunition that is magazine-fed, and which is usually smaller than other automatic firearms."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Submachine_gun&oldid=1063939013"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001097 +cco:ont00001097 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001278 ; + rdfs:label "Common Stock"@en ; + skos:definition "Stock that entitles its holder to voting on corporate decisions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001098 +cco:ont00001098 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000055 ; + rdfs:label "Hospital"@en ; + skos:definition "A Healthcare Facility that is designed to provide patient treatment with specialized staff and equipment."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hospital&oldid=1063047817"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001099 +cco:ont00001099 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Bridge"@en ; + skos:definition "A Land Transportation Artifact that is designed to span physical obstacles without closing the way underneath to enable Persons or Ground Vehicles to pass over the obstacles."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bridge&oldid=1061858310" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001100 +cco:ont00001100 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Measurement Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to measure one or more features of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001101 +cco:ont00001101 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001176 ; + rdfs:label "Interval Estimate Information Content Entity"@en ; + skos:altLabel "Interval Estimate"@en , + "Interval Estimate Measurement Information Content Entity"@en ; + skos:definition "An Estimate Information Content Entity that consists of an interval of possible (or probable) values for the measured entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001102 +cco:ont00001102 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Commercial Facility"@en ; + skos:definition "A Facility that is designed for buying and selling goods and services, especially on a large scale."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Commerce&oldid=1063120985"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001103 +cco:ont00001103 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00001045 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000686 ; + rdfs:label "Artifact Model Name"@en ; + skos:definition "A Designative Information Content Entity that designates some Artifact Model."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001104 +cco:ont00001104 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000088 ; + rdfs:label "Long Gun"@en ; + skos:definition "A Firearm that is designed to have a longer barrel than a Hand Gun and to be fired while braced against the shoulder."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Long_gun&oldid=1063715506"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001105 +cco:ont00001105 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000716 ; + rdfs:label "Secondary Cell Electric Battery"@en ; + skos:altLabel "Rechargeable Battery"@en , + "Secondary Cell Battery"@en ; + skos:definition "An Electric Battery that is designed to be recharged."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rechargeable_battery&oldid=1064096406"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001106 +cco:ont00001106 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000387 ; + rdfs:label "Roll Axis"@en ; + skos:altLabel "Longitudinal Axis"@en ; + skos:definition "An Axis of Rotation that passes through the center of an object's Mass from the front to the back of the object as defined by the direction of the object's motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001107 +cco:ont00001107 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001315 ; + rdfs:label "Landfill"@en ; + skos:definition "A Waste Management Facility that is designed for disposing of waste by burial."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Landfill&oldid=1058364420"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001108 +cco:ont00001108 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000732 ; + rdfs:comment """The corresponding Wavelength range is 1–0.1 m. + +Note that the ITU definition of UHF is broader than the definition given by IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands, which sets the frequency range at 300 MHz to 1 GHz."""@en ; + rdfs:label "Ultra High Frequency"@en ; + skos:altLabel "ITU Band Number 9"@en ; + skos:definition "A Microwave Frequency that is between 300 MHz and 3 GHz."@en ; + cco:ont00001753 "UHF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001109 +cco:ont00001109 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000368 ; + rdfs:label "Counter-Clockwise Rotational Motion"@en ; + skos:altLabel "Anti-Clockwise Rotation"@en , + "CCW Rotational Motion"@en , + "Counter-Clockwise Rotation"@en ; + skos:definition "A Rotational Motion in which the direction of rotation is toward the left as seen relative to the designated side of the plane of rotation."@en ; + skos:example "the axial rotation of the Earth as seen from above the North Pole" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001110 +cco:ont00001110 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Evening"@en ; + skos:definition "A Temporal Interval that consists of the temporal regions between when the sun sets (approximately 6:00pm) and when people typically retire to sleep (approximately 9:00pm)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001111 +cco:ont00001111 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Low Midrange Frequency"@en ; + skos:definition "A Sonic Frequency that is between 250 and 500 Hz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001112 +cco:ont00001112 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000712 ; + rdfs:label "Proper Acceleration"@en ; + skos:definition "An Acceleration of an object relative to a free-fall, or inertial, observer who is momentarily at rest relative to the object being measured (hence, gravity does not cause Proper Acceleration)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Proper_acceleration&oldid=1058169867"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001113 +cco:ont00001113 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Magenta"@en ; + skos:definition "A Color consisting of red and blue hues."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001114 +cco:ont00001114 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000472 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00001203 + ] ; + owl:disjointWith cco:ont00001203 ; + rdfs:comment "Instances of this class are not proper Delimiting Domains, but in some cases may have an organization that exercises some control over the region, such as the homeowners' association for a neighborhood."@en ; + rdfs:label "Division of Delimiting Domain"@en ; + skos:definition "A Geospatial Region that is a fiat division of a Delimiting Domain and not a Delimiting Domain."@en ; + skos:example "Flatbush, French Quarter, Western New York, Texas Panhandle, Greater Montreal Area of Quebec, Pacific Northwest, southwest area of Al Anbar Province, Northern Iraq." ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001115 +cco:ont00001115 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001190 ; + rdfs:label "Private Network Telephone Call"@en ; + skos:definition "A Telephone Call transmitted over a network where a closed group of telephones are connected primarily to each other and use a gateway to reach the outside world, usually used inside companies and call centers (a.k.a. private branch exchange (PBX))."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001116 +cco:ont00001116 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000203 ; + rdfs:label "Reference Time"@en ; + skos:altLabel "Epoch"@en , + "Epoch Time"@en , + "Reference Date"@en ; + skos:definition "A Temporal Instant specified as the origin for which other Temporal Regions are measured or identified."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Epoch_(reference_date)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001117 +cco:ont00001117 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000252 ; + rdfs:label "Propelling Nozzle"@en ; + skos:altLabel "Jet Nozzle"@en ; + skos:definition "A Nozzle that is used to convert a propulsion Engine into a Jet Engine and functions by using its narrowest part, the throat, to increase Pressure within the Engine by constricting flow, usually until the flow chokes, then expanding the exhaust stream to, or near to, atmospheric pressure, while forming it into a high speed jet to propel the Vehicle."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propelling_nozzle&oldid=1061239812"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001118 +cco:ont00001118 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + rdfs:label "Surface Tension"@en ; + skos:definition "A Disposition that inheres in a liquid and is realized when the cohesive forces of the molecules in the bearer at the surface are greater than the adhesive forces of the molecules in the surrounding air."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Surface_tension&oldid=1062753527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001119 +cco:ont00001119 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001298 ; + rdfs:label "Document Form"@en ; + skos:definition "A Document having Document Fields as parts in which to write or select prescribed content."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Form_(document)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001120 +cco:ont00001120 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001075 ; + rdfs:label "Act of Religious Training Instruction"@en ; + skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Religious Organization by imparting knowledge of the tenets and/or practices of a religion to an Agent either directly or indirectly through some communication medium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001121 +cco:ont00001121 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000294 ; + rdfs:label "Scramjet Engine"@en ; + skos:altLabel "Scramjet"@en , + "Supersonic Combusting Ramjet"@en ; + skos:definition "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air at supersonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Scramjet&oldid=1062429697"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001122 +cco:ont00001122 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Radio Interference"@en ; + skos:definition "A Natural Process in which a radio signal is disrupted, whether unintentionally or as the result of an Act of Radio Jamming, Act of Radio Spoofing, or similar Planned Act."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001123 +cco:ont00001123 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001153 ; + rdfs:label "Poison Artifact Function"@en ; + skos:definition "A Damaging Artifact Function that is realized in a process which causes illness in, or the death of, a living thing."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/poison" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001124 +cco:ont00001124 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Precision-Guided Missile"@en ; + skos:altLabel "Missile"@en ; + skos:definition "A Portion of Ammunition that is designed to be a self-propelled and precision-guided projectile that delivers some payload (explosive or other) over relatively long distances."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Missile&oldid=1062028589"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001125 +cco:ont00001125 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000084 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00000500 + ] ; + rdfs:label "Set of Eyes"@en ; + skos:definition "A Bodily Component that consists of two or more Eyes that are part of a single Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001126 +cco:ont00001126 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000784 ; + rdfs:comment "There are a variety of photometric measurements, such as luminous flux/power or luminous intensity, whose units are lumen and candela respectively, which attempt to describe properties associated with the perception of light. These are weighted measurements, typically by the luminosity function, as thus exist on the side of information content. It is a point of further development to add the needed intrinsic properties of radiation that such measurements are about."@en ; + rdfs:label "Luminescent Property"@en ; + skos:definition "An Optical Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light, but which isn't the result of the bearer being heated."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Luminescence&oldid=1050169944"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001127 +cco:ont00001127 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000865 ; + rdfs:label "Loss of Quality"@en ; + skos:definition "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Quality."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001128 +cco:ont00001128 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000676 ; + rdfs:label "Act of Residing"@en ; + skos:definition "An Act of Inhabitancy in which a Person lives in a dwelling permanently or for an extended period of time."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/reside" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001129 +cco:ont00001129 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000113 ; + rdfs:label "Pressurization Control Artifact Function"@en ; + skos:definition "A Ventilation Control Artifact Function that is realized by processes in which some Artifact is used to control the partial pressure of air in some space."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001130 +cco:ont00001130 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000817 ; + rdfs:label "Geospatial Polygon"@en ; + skos:definition "A Geospatial Line String that has at least three vertices where the connecting lines form a closed loop."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001131 +cco:ont00001131 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000966 ; + rdfs:label "EAN-8 Barcode"@en ; + skos:definition "An EAN Barcode that consists of 8 numerical digits and is used to designate products at the point of sale."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001132 +cco:ont00001132 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000246 ; + rdfs:label "Stasis of Mission Capability"@en ; + skos:definition "A Stasis of Realizable Entity that holds during a temporal interval when a Continuant's capability (or lack thereof) to perform its intended Functions, tasks, or Objectives remains at a relatively constant level."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001133 +cco:ont00001133 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Motion"@en ; + skos:definition "A Natural Process in which a Continuant changes its Location or Spatial Orientation over some Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001134 +cco:ont00001134 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Vehicle Frame"@en ; + skos:definition "A Material Artifact that is designed to be the main supporting structure of some Vehicle."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Vehicle_frame&oldid=1054003530"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001135 +cco:ont00001135 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000838 ; + rdfs:label "Portion of Liquid Fuel"@en ; + skos:definition "A Portion of Fuel that is stored in a liquid state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001136 +cco:ont00001136 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000008 ; + rdfs:label "Ultrasonic Frequency"@en ; + skos:definition "A Sound Frequency that is greater than 20 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001137 +cco:ont00001137 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000628 ; + rdfs:label "Radiation Reflectivity"@en ; + skos:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to scatter or reflect electromagnetic radiation of a given frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001138 +cco:ont00001138 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000499 ; + rdfs:label "Beverage Antenna"@en ; + skos:definition "A Wire Antenna that consists of a horizontal wire one-half to two wavelengths long that is suspended above the ground with one end attached to the receiver feedline and the other grounded and which is typically used in the low and medium frequency radio bands."@en ; + cco:ont00001754 "Adapted from: https://en.wikipedia.org/wiki/Beverage_antenna" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001139 +cco:ont00001139 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000713 ; + rdfs:label "Spacecraft"@en ; + skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by Spaceflight."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Spacecraft&oldid=1062102614"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001140 +cco:ont00001140 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Flywheel"@en ; + skos:definition "A Material Artifact that is designed to store rotational energy such that it has a significant moment of inertia which enables it to resist changes in rotational speed."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flywheel&oldid=1061360783"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001141 +cco:ont00001141 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + rdfs:comment "The disposition will typically be a function of an artifact, which is often designed to be part of some Infrastructure system. But not always. In some cases an entity may be repurposed to be an element of some Infrastructure. In those cases it is a capability of that entity that supports the functioning of the system."@en ; + rdfs:label "Infrastructure Role"@en ; + skos:definition "A Role that inheres in the bearer of a Disposition and has been assigned to an Infrastructure System such that the realization of that Disposition is sometimes part of the functioning of the Infrastructure System."@en ; + cco:ont00001754 "https://archive.org/details/economicsprincip00osul/page/n489/mode/2up"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001142 +cco:ont00001142 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Violet"@en ; + skos:definition "A Color that is lower than Blue with a wavelength in the visible spectrum typically between 400 and 450 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001143 +cco:ont00001143 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Facsimile Transmission"@en ; + skos:altLabel "Act of Facsimile Transmission"@en , + "Act of Faxing"@en ; + skos:definition "An Act of Communication by Media in which the Information Content Entity that inheres in a Document is transmitted over a Telephone Network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fax&oldid=1054674158"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001144 +cco:ont00001144 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Entertainment"@en ; + skos:definition "A Planned Act consisting of any activity which provides a diversion or permits people to amuse themselves."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001145 +cco:ont00001145 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Radio Receiver"@en ; + skos:definition "A Radio Communication Instrument that is an electronic device that is designed to extract information from radio waves intercepted by a Radio Antenna by using electronic filters to separate the desired radio frequency signal from other signals, an electronic amplifier to increase the power of the signal, and demodulation to recover the desired information."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_receiver&oldid=1060111342"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001146 +cco:ont00001146 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001328 ; + rdfs:comment "Sidereal Time is the angle measured from an observer's meridian along the celestial equator to the Great Circle that passes through the March equinox and both poles. This angle is usually expressed in Hours, Minutes, and Seconds."@en ; + rdfs:label "Sidereal Time Reference System"@en ; + skos:definition "A Temporal Reference System that is based on Earth's rate of rotation measured relative to one or more fixed Stars (rather than the Sun)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001147 +cco:ont00001147 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Violence"@en ; + skos:definition "A Planned Act of causing harm to oneself or to another through the use of physical or verbal force."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Violence&oldid=1063681926"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001148 +cco:ont00001148 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000727 ; + rdfs:label "Electromagnetic Communication Artifact Function"@en ; + skos:definition "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of electromagnetic radiation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001149 +cco:ont00001149 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001101 ; + rdfs:label "Data Range Interval Estimate Information Content Entity"@en ; + skos:definition "A Ratio Measurement Information Content Entity that is a measurement of a set of values and is equal to the absolute difference between the largest value and the smallest value in the set."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001150 +cco:ont00001150 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000445 ; + rdfs:label "Portion of Ammunition"@en ; + skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by being projected toward its target at a significant Velocity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ammunition&oldid=1062875850"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001151 +cco:ont00001151 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000893 ; + rdfs:label "Portion of Paper"@en ; + skos:definition "An Information Medium Artifact that is designed to bear some Information Content Entity by means of pressing together moist fibres of cellulose pulp derived from wood, rags, or grasses, and drying them into flexible sheets."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Paper&oldid=1057624743"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001152 +cco:ont00001152 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001203 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001864 ; + owl:someValuesFrom cco:ont00001335 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001203 ; + rdfs:label "Government Domain"@en ; + skos:definition "A Delimiting Domain that delimits the authority of a Government to exercise its control within the bounded area."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001153 +cco:ont00001153 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Damaging Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which the structural integrity of an entity is impaired."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001154 +cco:ont00001154 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000992 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Second Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Seconds and spans at least one Second."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001155 +cco:ont00001155 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000601 ; + rdfs:label "Full Motion Video Imaging Artifact Function"@en ; + skos:definition "An Imaging Artifact Function that inheres in Artifacts that are designed to produce video of entities that is of high enough quality to make the represented motion appear continuous to human viewers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001156 +cco:ont00001156 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Information Line"@en ; + skos:definition "An Information Bearing Artifact that consists of a single line or row of some larger Information Bearing Artifact of which it is a part."@en ; + skos:example "a line in a computer file that bears a portion of code for some computer program" , + "a line of data in a database" , + "a line of text in a book" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001157 +cco:ont00001157 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000288 ; + rdfs:label "Hydraulic Power Source"@en ; + skos:definition "A Power Source that is designed to generate, control, or transmit power by means of pressurized liquid."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001158 +cco:ont00001158 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000366 ; + rdfs:label "Act of Data Transformation"@en ; + skos:definition "An Act of Information Processing in which an algorithm is executed to act upon one or more input Information Content Entities into one or more output Information Content Entities."@en ; + skos:scopeNote "It is not a requirement that the output Information Content Entity(ies) be qualitatively distinct from the input(s) as a result of an Act of Data Transformation, though doing so is typically the goal of performing this Act. Consider, for example, selecting a column in an Excel spreadsheet then executing the \\\"Remove Duplicates\\\" Algorithm on it. The intent is to remove rows in that column containing duplicate content. If no duplicate values are present, the information in the column remains unchanged but an Act of Data Transformation was nonetheless performed."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001159 +cco:ont00001159 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000537 ; + rdfs:label "Bond"@en ; + skos:definition "A Financial Instrument that is designed to secure an Agent's debt for the holders of that debt."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Bond_(finance)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001160 +cco:ont00001160 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Solvent Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in the dissolving of other substances (namely, solutes) without change in the former's chemical structure."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Solvent&oldid=1062572314"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001161 +cco:ont00001161 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000719 ; + rdfs:label "Counterfeit Legal Instrument"@en ; + skos:definition "A Counterfeit Instrument that is designed to be a fake replica of some genuine Legal Instrument."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001162 +cco:ont00001162 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:comment "Examples: agreeing, betting, guaranteeing, inviting, offering, promising, swearing, volunteering"@en ; + rdfs:label "Act of Commissive Communication"@en ; + skos:definition "An Act of Communication that commits a speaker to some future action."@en ; + cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001163 +cco:ont00001163 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000853 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001966 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000853 ; + rdfs:label "Measurement Information Content Entity"@en ; + skos:altLabel "Measurement ICE"@en ; + skos:definition "A Descriptive Information Content Entity that describes the extent, dimensions, quantity, or quality of an Entity relative to some standard."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001164 +cco:ont00001164 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001152 ; + rdfs:label "County"@en ; + skos:definition "A Government Domain that is part of either a First-Order or Second-Order Administrative Region."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=County&oldid=1062817834"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001165 +cco:ont00001165 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000332 ; + rdfs:label "Terrorist Training Camp"@en ; + skos:definition "A Training Camp designed to teach students methods of terrorism."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Terrorist_training_camp&oldid=1037856600"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001166 +cco:ont00001166 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000085 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Minute Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Minutes and spans at least one Minute."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001167 +cco:ont00001167 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Midrange Frequency"@en ; + skos:definition "A Sonic Frequency that is between 500 Hz and 2 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001168 +cco:ont00001168 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Reaction Mass"@en ; + skos:altLabel "Working Mass"@en ; + skos:definition "A Material Entity against which a Propulsion System operates in order to produce Acceleration."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Working_mass&oldid=1057126114"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001169 +cco:ont00001169 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Communication Relay Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information from one Artifact to another for the purpose of communiction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001170 +cco:ont00001170 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000490 ; + rdfs:label "Hard X-ray Frequency"@en ; + skos:definition "An X-Ray Frequency that is between 3 and 30 exahertz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001171 +cco:ont00001171 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001190 ; + rdfs:label "Wireless Network Telephone Call"@en ; + skos:definition "A Telephone Call transmitted over a network where the telephones are mobile and can move anywhere within the coverage area."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001172 +cco:ont00001172 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000593 ; + rdfs:label "Portion of Gelatinous Propellant"@en ; + skos:definition "A Portion of Propellant that is stored in a gelatinous state."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001173 +cco:ont00001173 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Rocket Launcher"@en ; + skos:definition "A Projectile Launcher that is designed to launch one or more Unguided Rockets."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket_launcher&oldid=1049900727"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001174 +cco:ont00001174 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Electromagnetic Shielding Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which an electromagnetic field is blocked by barriers made of conductive or magnetic materials."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_shielding&oldid=1063432544"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001175 +cco:ont00001175 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Language"@en ; + skos:definition "A Directive Information Content Entity that prescribes a canonical format for communication."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001176 +cco:ont00001176 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:label "Estimate Information Content Entity"@en ; + skos:altLabel "Estimate"@en , + "Estimate Measurement Information Content Entity"@en , + "Estimated Value"@en ; + skos:definition "A Measurement Information Content Entity that is a measurement of an entity based on partial information about that entity or an appropriately similar entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001177 +cco:ont00001177 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000119 ; + rdfs:label "Roll Orientation"@en ; + skos:altLabel "Roll"@en ; + skos:definition "A Spatial Orientation of an Object relative to its Roll Axis."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001178 +cco:ont00001178 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Railway Crossing"@en ; + skos:altLabel "Level Crossing"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable Persons or Ground Vehicles to cross a Railway when traveling along a road or path that is perpendicular to and at the same elevation as the Railway at the point where they overlap."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001179 +cco:ont00001179 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000893 ; + rdfs:label "Digital Storage Device"@en ; + skos:definition "An Information Medium Artifact that is designed to bear some Information Content Entity by means of recording that information in digital (binary) format."@en ; + skos:example "A computer's Hard Disk Drive" , + "A portable USB Drive" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Data_storage&oldid=1060116427"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 +cco:ont00001180 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000300 ; + rdfs:comment "Members of organizations are either Organizations themselves or individual Persons. Members can bear specific Organization Member Roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the Organization by the organization members."@en ; + rdfs:label "Organization"@en ; + skos:definition "A Group of Agents which can be the bearer of roles, has members, and has a set of organization rules."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/OBI_0000245" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001181 +cco:ont00001181 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000287 ; + rdfs:label "Triple Inertial Navigation System"@en ; + skos:altLabel "Triple INS"@en ; + skos:definition "An Inertial Navigation System that is designed to use three redundant computers to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references, in such a way that eliminates the need for a navigator."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001182 +cco:ont00001182 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000145 ; + rdfs:label "Phase Angle"@en ; + skos:altLabel "Orbital Phase Angle"@en ; + skos:definition "A Relational Quality that is the angle between the light incident onto an observed Object and the light reflected from the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Phase_angle_(astronomy)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001183 +cco:ont00001183 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000300 ; + rdfs:label "Social Network"@en ; + skos:definition "A Group of Agents that are connected in dyadic relations by similar personal or career interests, activities, backgrounds, or real-life connections."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001184 +cco:ont00001184 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000368 ; + rdfs:label "Spinning Motion"@en ; + skos:definition "A Rotational Motion of an Object around an Axis of Rotation that passes through the Object's Center of Mass."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001185 +cco:ont00001185 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000713 ; + rdfs:label "Rocket"@en ; + skos:definition "A Vehicle that is designed to travel through air or space and which obtains Thrust from a Rocket Engine."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket&oldid=1063307477"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001186 +cco:ont00001186 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000784 ; + rdfs:label "Color Hue"@en ; + skos:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect a dominant wavelength of the visible light spectrum, which is typically divided up into 6 to 8 ranges."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001187 +cco:ont00001187 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Navigation System"@en ; + skos:definition "A Material Artifact that is designed to enable an Agent or Artifact to determine the position or direction of some object, usually for the purpose of monitoring or controlling the movement of some Vehicle from one place to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Navigation&oldid=1064122463"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001188 +cco:ont00001188 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Denture"@en ; + skos:definition "A Prosthesis that is designed to replace missing teeth."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Dentures&oldid=1056527226"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001189 +cco:ont00001189 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Blue"@en ; + skos:definition "A Color that is between Cyan and Violet with a wavelength in the visible spectrum typically between 450 to 490 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001190 +cco:ont00001190 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Telephone Call"@en ; + skos:altLabel "Act of Telephone Calling"@en ; + skos:definition "An Act of Communciation by Media transmitted over a telephone network to two or more Persons."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001191 +cco:ont00001191 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001213 ; + rdfs:label "Operational Stasis"@en ; + skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact maintains its designed set of Artifact Functions (or at least maintains its primary functions)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001192 +cco:ont00001192 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000092 ; + rdfs:label "Radio Antenna"@en ; + skos:definition "A Bidirectional Transducer that is designed to convert electric power into radio waves, and radio waves into electric power."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Antenna_(radio)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001193 +cco:ont00001193 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000017 ; + rdfs:label "Fatigability"@en ; + skos:definition "A Realizable Entity that is realized when its bearer loses strength and tires quickly."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001194 +cco:ont00001194 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000642 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000023 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the occurs_on property) that the Entity bears the Role."@en ; + rdfs:label "Gain of Role"@en ; + skos:definition "A Gain of Realizable Entity in which some Independent Continuant becomes bearer of some Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001195 +cco:ont00001195 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000207 ; + rdfs:label "Geospatial Error Region"@en ; + skos:definition "A One-Dimensional Geospatial Boundary that bounds some Geospatial Region according to probability estimations for locating some object within it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001196 +cco:ont00001196 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000908 ; + rdfs:comment "Many Acts of Manufacturing and Construction involve one or more Acts of Artifact Assembly, but Acts of Artifact Assembly can also occur in isolation from these activities."@en ; + rdfs:label "Act of Artifact Assembly"@en ; + skos:definition "An Act of Artifact Processing wherein a new Artifact is created by fitting component parts together."@en ; + skos:example "putting together a piece of furniture purchased from Ikea" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001197 +cco:ont00001197 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000574 ; + rdfs:label "Anthropogenic Feature"@en ; + skos:definition "An Environmental Feature that is related to or is the result of the influence of human beings on the environment."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/anthropogenic" ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001198 +cco:ont00001198 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000796 ; + rdfs:comment "In American-English, the term 'Railcar' is often used in a broader sense that is interchangeable with 'Railroad Car'."@en ; + rdfs:label "Railcar"@en ; + skos:definition "A Rail Transport Vehicle that consists of a single self-propelled Vehicle that is not a Train, is designed to transport passengers, and which may also be designed to connect to other Railcars to form a Train."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Railcar&oldid=1063519348"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001199 +cco:ont00001199 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Protruding"@en ; + skos:definition "A Shape Quality inhering in a part of an object in virtue of the part extending out above or beyond the surface of the object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001200 +cco:ont00001200 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Structural Support Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact providing physical support to another object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001201 +cco:ont00001201 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001326 ; + rdfs:label "Trail"@en ; + skos:definition "A Land Transportation Artifact that is designed to enable transport through rough country, such as a forest or moor."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Trail&oldid=1056047142"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001202 +cco:ont00001202 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Size Quality"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the bearer's extension in one or more dimensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001203 +cco:ont00001203 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000472 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001864 ; + owl:someValuesFrom cco:ont00001180 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000472 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Delimiting Domain"@en ; + skos:definition "A Geospatial Region that delimits the authority of an Organization to exercise its control within the bounded area."@en ; + skos:prefLabel "Delimiting Domain"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001204 +cco:ont00001204 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Night"@en ; + skos:definition "A Temporal Interval that consists of the temporal regions between when people typically retire to sleep (approximately 9:00pm) and when the sun dawns (approximately 6:00am)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001205 +cco:ont00001205 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000398 ; + rdfs:label "Priority Scale"@en ; + skos:definition "A Reference System that is designed to be used to rank or identify the importance of entities of the specified type."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001206 +cco:ont00001206 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000832 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Year Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Years and spans at least one Year."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001207 +cco:ont00001207 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000136 ; + rdfs:label "Optical Lens"@en ; + skos:altLabel "Lens"@en ; + skos:definition "An Optical Instrument that is designed to focus or disperse a beam of light entering the lens by means of refraction."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Lens_(optics)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001208 +cco:ont00001208 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 100–10 m"@en ; + rdfs:label "High Frequency"@en ; + skos:altLabel "ITU Band Number 7"@en ; + skos:definition "A Radio Frequency that is between 3 and 30 MHz."@en ; + cco:ont00001753 "HF" ; + cco:ont00001754 "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001209 +cco:ont00001209 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000326 ; + rdfs:label "UPC-E Barcode"@en ; + skos:definition "A UPC Barcode that consists of 6 numerical digits."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001210 +cco:ont00001210 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Retail Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of selling goods or merchandise in small or individual lots for direct consumption by persons or organizations."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001211 +cco:ont00001211 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Lifting Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact is used to lift some object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001212 +cco:ont00001212 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001033 ; + rdfs:label "Female Sex"@en ; + skos:definition "A Biological Sex inhering in an individual that only produces gametes that can be fertilized by male gametes."@en ; + cco:ont00001754 "http://purl.org/obo/owl/PATO#PATO_0000383" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001213 +cco:ont00001213 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000246 ; + rdfs:label "Stasis of Artifact Operationality"@en ; + skos:definition "A Stasis of Realizable Entity that holds during a Temporal Interval when an Artifact's designed set of Artifact Functions (or at least its primary functions) or the realizations of those functions remain unchanged."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001214 +cco:ont00001214 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001048 ; + rdfs:label "Increase of Specifically Dependent Continuant"@en ; + skos:definition "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Specifically Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001215 +cco:ont00001215 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000455 ; + rdfs:label "Funeral"@en ; + skos:altLabel "Act of Funeral Ceremony"@en ; + skos:definition "An Act of Ceremony in which the Life of a Person who has died is celebrated, sanctified, or remembered."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Funeral&oldid=1060270978"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001216 +cco:ont00001216 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000136 ; + rdfs:label "Periscope"@en ; + skos:definition "An Optical Instrument that is designed to enable observation of an object that is located over, around, or through another object, obstacle, or condition that prevents direct line-of-sight observation from the observer's current position."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Periscope&oldid=1030400442"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001217 +cco:ont00001217 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000848 ; + rdfs:label "Medium Machine Gun"@en ; + skos:definition "A Mounted Gun that is designed to fire full-power rifle Cartridges (less than .50 caliber or 12.7mm) in quick succession from an ammunition belt, and which typically weighs 22-30 lbs."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Medium_machine_gun&oldid=1063571269"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001218 +cco:ont00001218 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Signal Processing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in the process of transferring or processing information contained in signals."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Signal_processing&oldid=1062720685"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001219 +cco:ont00001219 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000763 + ] ; + rdfs:comment "Delta-v is not equivalent to and should not be confused with Acceleration, which is the rate of change of Velocity."@en ; + rdfs:label "Delta-v"@en ; + skos:altLabel "Change in Velocity"@en , + "DeltaV"@en ; + skos:definition "A Process Profile that is the total change in Velocity of an object's Motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001220 +cco:ont00001220 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001384 ; + rdfs:label "Opaque"@en ; + skos:definition "An Opacity that inheres in a bearer in virtue of that bearer's incapacity to transmit electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs all electromagnetic radiation of that frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001221 +cco:ont00001221 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000210 ; + rdfs:label "Physically Powered Engine"@en ; + skos:altLabel "Physical Engine"@en ; + skos:definition "An Engine that is designed to convert potential or kinetic energy into mechanical energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001222 +cco:ont00001222 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001049 ; + rdfs:label "Solar Panel System"@en ; + skos:altLabel "Photovoltaic System"@en , + "Solar Array"@en ; + skos:definition "An Electrical Power Source that consists in part of one or more Solar Panels, a power inverter, electrical wiring between the components, a mounting and support structure, and may also include a battery and/or a solar tracking system and is the bearer of functions realized in processes of deriving, transferring, and storing electrical energy derived from light energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Photovoltaic_system&oldid=1063366598"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001223 +cco:ont00001223 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001145 ; + rdfs:label "Dish Receiver"@en ; + skos:definition "A Radio Receiver that uses a Parabolic (or Dish) Antenna to intercept radio signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001224 +cco:ont00001224 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001324 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001974 ; + owl:someValuesFrom obo:BFO_0000015 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001324 ; + rdfs:label "Process Requirement"@en ; + skos:altLabel "Duty"@en , + "Obligation"@en ; + skos:definition "A Process Regulation that requires some Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001225 +cco:ont00001225 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Yellow"@en ; + skos:definition "A Color that is between Orange and Green with a wavelength in the visible spectrum typically between 560 to 590 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001226 +cco:ont00001226 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Employment"@en ; + skos:definition "An Act of Association wherein an Organization assigns a set of activities to some Person to be performed in exchange for financial compensation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001227 +cco:ont00001227 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000752 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001857 ; + owl:someValuesFrom cco:ont00001028 + ] ; + rdfs:label "Longitudinal Wave Profile"@en ; + skos:altLabel "Compression Wave"@en , + "Longitudinal Wave"@en ; + skos:definition "A Wave Process Profile in which the displacement of participating particles is parallel to the direction of the Wave Process' propogation such that the particles alternate between participating in processes of compression and rarefaction as they participate in individual Wave Processes."@en ; + cco:ont00001754 "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001228 +cco:ont00001228 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Journal Article"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear a specific brief composition on a specific topic as part of a Journal Issue."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Academic_journal&oldid=1059723283"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001229 +cco:ont00001229 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001050 ; + rdfs:label "Alkaline Electric Battery"@en ; + skos:definition "A Primary Cell Electric Battery that has a Zinc anode and Manganese (IV) oxide cathode."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Alkaline_battery&oldid=1055652562"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001230 +cco:ont00001230 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000499 ; + rdfs:label "Rhombic Antenna"@en ; + skos:definition "A Wire Antenna that consists of one to three parallel wires suspended above the ground by poles or towers at each vertex in a rhombic shape with each of the four sides being the same length (typically at least one wavelength or longer)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rhombic_antenna&oldid=1057114456"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001231 +cco:ont00001231 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Brilliance Frequency"@en ; + skos:definition "A Sonic Frequency that is between 6 and 20 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001232 +cco:ont00001232 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:comment "In all cases, to possess something, an agent must have an intention to possess it."@en ; + rdfs:label "Act of Possession"@en ; + skos:definition "A Planned Act in which an agent intentionally exercises control towards a thing."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Possession_(law)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001233 +cco:ont00001233 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001153 ; + rdfs:label "Crushing Artifact Function"@en ; + skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of significant pressure."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/crushing" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001234 +cco:ont00001234 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Neutralization Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which an acid and a base react quantitatively with each other."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Neutralization_(chemistry)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001235 +cco:ont00001235 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000829 ; + rdfs:label "Military Time Zone Identifier"@en ; + skos:definition "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Zulu time, which has no offset from Coordinated Universal Time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001236 +cco:ont00001236 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001147 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001803 ; + owl:someValuesFrom cco:ont00000920 + ] ; + rdfs:label "Act of Suicide"@en ; + skos:altLabel "Suicide"@en ; + skos:definition "An Act of Violence in which some Agent intentionally and voluntarily causes their own death."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/suicide" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001237 +cco:ont00001237 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Birth"@en ; + skos:definition "A Natural Process of bringing forth offspring."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Birth&oldid=1063718655"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001238 +cco:ont00001238 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000605 ; + rdfs:label "Initialism"@en ; + skos:definition "An Abbreviated Name that consists of the initial letters of some words (or syllables) in a Designative Name, and in which each letter is pronounced separately."@en ; + skos:example "USA, CPU, BBC" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001239 +cco:ont00001239 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000300 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00001180 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:allValuesFrom cco:ont00001180 + ] ; + rdfs:label "Group of Organizations"@en ; + skos:definition "A Group of Agents that has only Organizations as parts."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001240 +cco:ont00001240 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001148 ; + rdfs:label "Radio Communication Artifact Function"@en ; + skos:definition "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of radio waves."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001241 +cco:ont00001241 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Sensor Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes wherein its bearer is used to produce an output signal which reliably corresponds to changes in the artifact's environment."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001242 +cco:ont00001242 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000736 ; + rdfs:label "Actuator"@en ; + skos:definition "A Transducer that is designed to convert some control signal into mechanical motion."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Actuator&oldid=1064000375"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001243 +cco:ont00001243 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000253 ; + rdfs:label "Document Field"@en ; + skos:definition "An Information Bearing Entity that is a part of some document into which bearers of prescribed information can be written or selected."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001244 +cco:ont00001244 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Issuing Mass Media Article"@en ; + skos:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation a non-fictional essay, especially one included with others in a newspaper, magazine, or journal."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001245 +cco:ont00001245 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000241 ; + rdfs:label "PDF417 Code"@en ; + skos:definition "A Two-Dimensional Barcode that is used in applications that require the storage of huge amounts of data."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001246 +cco:ont00001246 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000847 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000566 + ] ; + rdfs:label "Under Active Control"@en ; + skos:definition "An Active Stasis during which an Artifact participates in an Act of Artifact Employment."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001247 +cco:ont00001247 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000918 ; + rdfs:label "Telecommunication Endpoint"@en ; + skos:definition "A Telecommunication Network Node that connects a Telecommunication Terminal to a Telecommunication Network."@en ; + skos:scopeNote "A Telecommunication Terminal is an end user device such as a Telephone, fax machine, or Computer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Communication_endpoint&oldid=1020569501"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001248 +cco:ont00001248 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000715 ; + rdfs:label "Artificial Eye"@en ; + skos:definition "A Prosthesis that is designed to replace a missing eye."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Artificial_eye&oldid=1046672400"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001249 +cco:ont00001249 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000453 ; + rdfs:label "Cabin Pressurization Control System"@en ; + skos:definition "An Environment Control System that is designed to control the process in which conditioned air is pumped into the Cabin of some Aircraft or Spacecraft in order to create a safe and comfortable environment for passengers and crew flying at high altitudes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cabin_pressurization&oldid=1062243955"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001250 +cco:ont00001250 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000236 ; + rdfs:label "Interior Lighting System"@en ; + skos:definition "A Lighting System that is designed to emit light within the interior of some area."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001251 +cco:ont00001251 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Intelligence Gathering"@en ; + skos:definition "A Planned Act of producing and/or gathering information by a government or other Organization to guide decisions and actions by answering questions or obtaining advance warning of events and movements deemed to be important or otherwise relevant."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Intelligence_(information_gathering)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001252 +cco:ont00001252 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000448 ; + rdfs:label "Propulsion Artifact Function"@en ; + skos:definition "A Motion Artifact Function that is realized in a process in which the bearer of the function creates force leading to an entity's movement."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001253 +cco:ont00001253 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Fuel Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes in which a Portion of Fuel is reacted with other substances in order to release chemical or nuclear energy to be used for heat or for work."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fuel&oldid=1063590518"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001254 +cco:ont00001254 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000156 ; + rdfs:label "Revolver"@en ; + skos:definition "A Hand Gun having a number of firing chambers in a revolving cylinder, where each chamber in the cylinder can be loaded with a single Cartridge."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Revolver&oldid=1060461644"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001255 +cco:ont00001255 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000828 ; + rdfs:label "Insecticide Artifact Function"@en ; + skos:definition "A Pesticide Artifact Function that is realized in a process that causes harm to, or the death of, an insect."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Insecticide&oldid=1063322558"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001256 +cco:ont00001256 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:comment "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance ('Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."@en ; + rdfs:label "Reliability Measurement Information Content Entity"@en ; + skos:altLabel "Accuracy of Process"@en , + "Reliability Measurement"@en ; + skos:definition "A Measurement Information Content Entity that is a measurement of the extent to which an entity can consistently produce an outcome."@en ; + skos:scopeNote "Reliability concerns both a measure of past performance and the expectation that future performance will conform to the range of past performances."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Reliability_(statistics)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001257 +cco:ont00001257 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Nuclear Storage Depot"@en ; + skos:definition "A Storage Facility that is designed to store nuclear material."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001258 +cco:ont00001258 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000226 ; + rdfs:label "Port"@en ; + skos:definition "A Transportation Facility that is designed to contain harbors for docking Watercraft and for transfering people or cargo to and from land."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001259 +cco:ont00001259 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Portion of Atmosphere"@en ; + skos:definition "A fiat object part of the layer of gas or layers of gases that envelop a natural satellite."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Atmosphere&oldid=1135486662"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001260 +cco:ont00001260 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "Code 39 Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of 39 characters that are numbers 0-9, capital letters A-Z, or the symbols -.$/+% and space and is used primarily in automotive and defense industries."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001261 +cco:ont00001261 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000379 ; + rdfs:label "Act of Identifying"@en ; + skos:definition "An Act of Representative Communication performed by asserting who or what a particular person or thing is."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/identify" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001262 +cco:ont00001262 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000562 ; + rdfs:label "Person"@en ; + skos:altLabel "Human"@en ; + skos:definition "An Animal that is a member of the species Homo sapiens."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Human&oldid=1063145185"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001263 +cco:ont00001263 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Issuing Mass Media Documentary"@en ; + skos:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation information that provides a factual record or report."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001264 +cco:ont00001264 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000258 ; + rdfs:label "Code 128 Barcode"@en ; + skos:definition "A One-Dimensional Barcode that consists of up to 128 ASCII characters and is used primarily in supply chains."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001265 +cco:ont00001265 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001036 ; + rdfs:label "Public Address System"@en ; + skos:altLabel "PA System"@en ; + skos:definition "A Communication System that is designed to allow a Person to speak to a large audience."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Public_address_system&oldid=1059177344"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001266 +cco:ont00001266 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001075 ; + rdfs:label "Act of Vocational Training Instruction"@en ; + skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider by imparting skills required for a specific occupation in industry, agriculture or trade to an Agent either directly or indirectly through some communication medium."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001267 +cco:ont00001267 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000971 ; + rdfs:label "Act of Propaganda"@en ; + skos:definition "An Act of Deceptive Communication Propaganda intended to influence the attitude of a mass audience toward some cause or position by presenting facts selectively (thus possibly lying by omission) or by using loaded messages to produce an emotional rather than rational response to the information presented."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propaganda&oldid=1062472484"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001268 +cco:ont00001268 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000966 ; + rdfs:label "ISBN Barcode"@en ; + skos:definition "An EAN Barcode that is used to designate books."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001269 +cco:ont00001269 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000133 ; + rdfs:label "Act of Warning"@en ; + skos:definition "An Act of Directive Communication performed by indicating a possible or impending danger, problem, or other unpleasant situation."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/warning" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001270 +cco:ont00001270 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000268 ; + rdfs:label "Howitzer"@en ; + skos:definition "A Cannon that is designed to have a relatively short barrel and to use relatively small propellant charges to propel projectiles in relatively high trajectories with a steep angle of descent."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Howitzer&oldid=1059576383"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001271 +cco:ont00001271 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001169 ; + rdfs:label "Wired Communication Relay Artifact Function"@en ; + skos:definition "A Communication Relay Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information by means of wires from one Artifact to another for the purpose of communiction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001272 +cco:ont00001272 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000191 ; + rdfs:label "Act of Murder"@en ; + skos:definition "An Act of Homicide with malice aforethought."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001273 +cco:ont00001273 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001241 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00000569 + ] ; + rdfs:label "Sensor Modality Function"@en ; + skos:definition "A Sensor Artifact Function that inheres in some Sensor in virtue of the type of energy the Sensor is capable of converting into an output signal."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001274 +cco:ont00001274 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000008 ; + rdfs:label "Infrasonic Frequency"@en ; + skos:definition "A Sound Frequency that is below 20 Hz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001275 +cco:ont00001275 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001353 ; + rdfs:label "Nominal Speed Artifact Function"@en ; + skos:definition "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains a speed that does not exceed some specified tolerance of that Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001276 +cco:ont00001276 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000426 ; + rdfs:label "Carrier Air Wing"@en ; + skos:definition "A Military Force that is trained and equipped to conduct air operations while embarked on an aircraft carrier."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001277 +cco:ont00001277 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Red"@en ; + skos:definition "A Color that is above Orange with a wavelength in the visible spectrum typically between 635 to 700 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001278 +cco:ont00001278 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000537 ; + rdfs:label "Stock"@en ; + skos:definition "A Financial Instrument that entitles holders to an ownership interest (equity) in the specified Incorporated Organization."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Stock&oldid=1064040249"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001279 +cco:ont00001279 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001133 ; + rdfs:label "Vibration Motion"@en ; + skos:altLabel "Mechanical Oscillation"@en , + "Oscillation Motion"@en , + "Vibration"@en ; + skos:definition "A Motion wherein some participant repetitively deviates from a central location to two surrounding locations."@en ; + cco:ont00001754 "https://physicsabout.com/motion/"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001280 +cco:ont00001280 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Flat"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border without a significant deviation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001281 +cco:ont00001281 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000791 ; + rdfs:label "Emulsifier Artifact Function"@en ; + skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which two or more liquids that are normally immiscible are mixed."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Emulsion&oldid=1056901580"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001282 +cco:ont00001282 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000598 ; + rdfs:label "Hydraulic Valve"@en ; + skos:definition "A Valve that is designed to regulate, direct, or control the flow of a liquid by opening, closing, or partially obstructing various passageways."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001283 +cco:ont00001283 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Refinery"@en ; + skos:definition "A Factory that is designed for refining raw materials into products of value."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Refinery&oldid=1027092124"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001284 +cco:ont00001284 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000914 ; + rdfs:label "Crew"@en ; + skos:definition "A Group of Persons that bear Roles realized by the operation of the specified Vehicle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001285 +cco:ont00001285 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000368 ; + rdfs:label "Revolving Motion"@en ; + skos:definition "A Rotational Motion of an Object around an Axis of Rotation that is located externally to the Site occupied by the Object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001286 +cco:ont00001286 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000752 ; + rdfs:label "Waveform"@en ; + skos:definition "A Wave Process Profile that is the shape of the Wave Cycles of the Wave Process when depicted in a visual graph."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001287 +cco:ont00001287 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Maintenance Facility"@en ; + skos:definition "A Facility that is designed to be used to perform actions to maintain or improve the state of some property or equipment."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/maintain" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001288 +cco:ont00001288 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001150 ; + rdfs:label "Round Shot"@en ; + skos:definition "A Portion of Ammunition that is designed to be a solid projectile without explosive charge and to be fired from a cannon."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Round_shot&oldid=1062790260"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001289 +cco:ont00001289 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000135 ; + rdfs:label "Damaged Stasis"@en ; + skos:altLabel "Compromised"@en , + "Damaged"@en , + "Injured"@en ; + skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to a previous action or event such that the Independent Continuant is now of lesser value, usefulness, or functionality."@en ; + skos:scopeNote "This class can be used to instantiate instances that might otherwise be treated by defined classes such as Damaged Vehicle or Wounded Person. The Independent Continuant and Quality or Realizable Entity are participants of the stasis which can in turn be related to the temporal interval via the occurs on property. "@en ; + cco:ont00001754 "http://www.thefreedictionary.com/damaged" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001290 +cco:ont00001290 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Length"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of one-dimensional regions or Geospatial Regions."@en ; + skos:example "foot, meter, kilometer, mile" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001291 +cco:ont00001291 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000628 ; + rdfs:label "Radiation Absorptivity"@en ; + skos:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to absorb electromagnetic radiation of a given frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001292 +cco:ont00001292 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000053 ; + rdfs:label "Bus"@en ; + skos:definition "A Ground Motor Vehicle that is designed to transport a large number of people and to travel on six or more tired wheels."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bus&oldid=1055341487"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001293 +cco:ont00001293 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Perimeter"@en ; + skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the extent of a boundary which encloses the bearer."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001294 +cco:ont00001294 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001202 ; + rdfs:label "Three Dimensional Extent"@en ; + skos:altLabel "Volume"@en ; + skos:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in three dimensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001295 +cco:ont00001295 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Financial Facility"@en ; + skos:definition "A Facility that is designed to support the management of money."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001296 +cco:ont00001296 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000119 ; + rdfs:label "Pitch Orientation"@en ; + skos:altLabel "Pitch"@en ; + skos:definition "A Spatial Orientation of an Object relative to its Pitch Axis."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001297 +cco:ont00001297 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Military Headquarters Facility"@en ; + skos:definition "A Military Facility that is designed for military administration and coordination."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Headquarters&oldid=1046429636"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001298 +cco:ont00001298 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000798 ; + rdfs:label "Document"@en ; + skos:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity in a series of paragraphs of text or diagrams in the form of physical pieces of paper or an electronic word processor file."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Document&oldid=1057829688"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001299 +cco:ont00001299 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000344 ; + rdfs:label "Wetting Agent Artifact Function"@en ; + skos:definition "A Surfactant Artifact Function that is realized in a process that reduces the water repellent tendency of a substance thereby allowing it to become wet."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wetting&oldid=1062806793"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001300 +cco:ont00001300 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001192 ; + rdfs:label "Patch Antenna"@en ; + skos:altLabel "Microstrip Patch Antenna"@en , + "Rectangular Microstrip Antenna"@en ; + skos:definition "A Radio Antenna that consists of a flat rectangular sheet (or patch) of metal mounted over a larger sheet of metal called a ground plane which is typically contained inside a plastic radome for protection and is small enough that it can be mounted on a flat surface."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Patch_antenna&oldid=1016658507"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 +cco:ont00001301 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Service Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process of providing intangible goods to consumers."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Goods_and_services&oldid=1063137197"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001302 +cco:ont00001302 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001180 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom cco:ont00000173 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001180 ; + rdfs:label "Civil Organization"@en ; + skos:definition "An Organization that is not commercial or military and is the bearer of a Civilian Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001303 +cco:ont00001303 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001306 ; + rdfs:label "Position Observation Artifact Function"@en ; + skos:definition "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the position of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001304 +cco:ont00001304 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000575 ; + rdfs:label "Dimension Specification"@en ; + skos:definition "An Quality Specification that prescribes some Size Quality."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001305 +cco:ont00001305 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001066 ; + rdfs:label "Loss of Function"@en ; + skos:definition "A Loss of Disposition in which some Independent Continuant ceases to be the bearer of some Function."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001306 +cco:ont00001306 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Observation Artifact Function"@en ; + skos:definition "An Artifact Function that is realized during events in which an Artifact is used to collect information about a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001307 +cco:ont00001307 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000061 ; + rdfs:label "Measurement Unit of Mass Flow Rate"@en ; + skos:definition "A Measurement Unit of Flow that is used as a standard for measurement of the rate at which the Mass of a substance passes per unit time."@en ; + skos:example "kilogram per second, slug per second, pound per second" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001308 +cco:ont00001308 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001315 ; + rdfs:label "Sewage Treatment Facility"@en ; + skos:definition "A Waste Management Facility that is designed for removing contaminants from wastewater, especially sewage."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sewage_treatment&oldid=1062966352"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001309 +cco:ont00001309 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000077 ; + rdfs:label "Lot Number"@en ; + skos:definition "A Code Identifier that designates a particular quantity or lot of material from a single manufacturer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lot_number&oldid=1061846325"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001310 +cco:ont00001310 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Covering Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which an entity is covered."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/covering" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001311 +cco:ont00001311 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Aircraft Manufacturing Facility"@en ; + skos:definition "A Factory that is designed to manufacture Aircraft."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aerospace_manufacturer&oldid=1059223410"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001312 +cco:ont00001312 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000274 ; + rdfs:label "Paramilitary Force"@en ; + skos:definition "An Armed Force whose organizational structure, training, subculture, and (often) function are similar to those of a professional Military, and which is not included as part of a Government's formal Armed Forces."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Paramilitary&oldid=1063281359"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001313 +cco:ont00001313 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Article of Clothing"@en ; + skos:definition "A Material Artifact that is designed to cover some portion of a body."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Clothing&oldid=1063505718"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001314 +cco:ont00001314 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Legal System Act"@en ; + skos:definition "A Planned Act performed by an Agent that realizes their role within the context of a legal system of some jurisdiction."@en ; + cco:ont00001754 "http://www.id.uscourts.gov/glossary.htm" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001315 +cco:ont00001315 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Waste Management Facility"@en ; + skos:definition "A Facility that is designed for managing waste for some portion of the waste's existence."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001316 +cco:ont00001316 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001042 ; + rdfs:label "Gimbal"@en ; + skos:definition "An Equipment Mount that consists of a pivoted support that allows an Artifact to Rotate about one or more Axes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gimbal&oldid=1053306885"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001317 +cco:ont00001317 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Volume"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of sites or three-dimensional regions or Geospatial Regions."@en ; + skos:example "cubic feet, cubic meter, quart, liter" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001318 +cco:ont00001318 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000119 ; + rdfs:label "Yaw Orientation"@en ; + skos:altLabel "Yaw"@en ; + skos:definition "A Spatial Orientation of an Object relative to its Yaw Axis."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001319 +cco:ont00001319 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000427 ; + rdfs:comment "Tank firepower is normally provided by a large-caliber main gun mounted in a rotating turret, which is supported by secondary machine guns. A tank's heavy armour and all-terrain mobility provide protection for both the tank and its crew, allowing it to perform all primary tasks of the armoured troops on the battlefield."@en ; + rdfs:label "Tank"@en ; + skos:definition "An Armored Fighting Vehicle that is designed to carry heavy firepower, have a powerful Engine, and travel on one or more continuous tracks such that it is suitable for front-line combat and can provide operational maneuverability as well as tactical offensive and defensive capabilities."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tank&oldid=1060527612"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001320 +cco:ont00001320 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000903 ; + rdfs:label "Radio Transceiver"@en ; + skos:definition "A Radio Communication Instrument that is an electronic device composed of both a Radio Transmitter and a Radio Receiver that share common circuitry or a single housing."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transceiver&oldid=1058453736"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001321 +cco:ont00001321 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001105 ; + rdfs:label "Lead Acid Electric Battery"@en ; + skos:definition "A Secondary Cell Electric Battery that has a lead anode and lead oxide cathode."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lead%E2%80%93acid_battery&oldid=1061641405"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001322 +cco:ont00001322 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000726 ; + rdfs:comment "For the most part Generically Dependent Continuants do not inhere in their bearers over some continuous scale. The primary exception is religion and this class allows annotation of those cases where an Agent is described as becoming less religious. Other cases would include the decrease of an organization's bearing of some objective."@en ; + rdfs:label "Decrease of Generically Dependent Continuant"@en ; + skos:definition "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in the level of a Generically Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001323 +cco:ont00001323 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Bearing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in processes in which the Artifact constrains relative motion to only the desired motion, and reduces friction between moving parts."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001324 +cco:ont00001324 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Process Regulation"@en ; + skos:definition "A Directive Information Content Entity that prescribes an Process as required, prohibited, or permitted, and is the output of an Process which realizes some Authority Role."@en ; + skos:scopeNote "Although regulations often regulate processes which involve agents--as the regulating or regulated participant--it is unclear how causally active an agents need to be in those regulated processes. For example, it is not clear how causally active a human agent is in the process of a traffic light regulating the motion of a self-driving vehicle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001325 +cco:ont00001325 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001334 ; + rdfs:label "Act of Renting"@en ; + skos:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Renter) as a payment to acquire temporary possession or use of a good or property that is owned or controlled by another Agent (the Seller)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001326 +cco:ont00001326 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000254 ; + rdfs:label "Land Transportation Artifact"@en ; + skos:definition "A Transportation Artifact that is fixed in place and designed to bear a Function, the realization of which is sometimes part of a process moving Vehicles and Agents from one location to another via land."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001327 +cco:ont00001327 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Social Act"@en ; + skos:definition "A Planned Act having an objective that affects, is performed by, or is performed on behalf of, a community or group of Persons."@en ; + cco:ont00001754 "http://en.wiktionary.org/wiki/commually" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001328 +cco:ont00001328 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000398 ; + rdfs:label "Temporal Reference System"@en ; + skos:altLabel "Temporal Reference Frame"@en , + "Time Scale"@en ; + skos:definition "A Reference System that describes a set of standards for measuring time as well as understanding the context of and organizing temporal data."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001329 +cco:ont00001329 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Education Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of transmiting accumulated knowledge skills and values from one generation to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001330 +cco:ont00001330 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000110 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000345 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000517 + ] ; + rdfs:label "Telemetry Process"@en ; + skos:definition "A Mechanical Process that is highly automated and in which measurements are made or other data is collected and transmitted to receiving equipment to facilitate the monitoring of environmental conditions or equipment parameters at a remote or inaccessible location."@en ; + skos:example "using a GPS tag to track a shark's migratory pattern" , + "using a portable cardiac monitor to remotely collect data on a patient's heart activity (biotelemetry)" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telemetry&oldid=1061697851"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001331 +cco:ont00001331 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001014 ; + rdfs:label "Legal Name"@en ; + skos:definition "A Proper Name that is an official name for the designated entity as determined by a Government or court of law."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001332 +cco:ont00001332 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000610 ; + rdfs:label "Extreme Ultraviolet Light Frequency"@en ; + skos:definition "An Ultraviolet Light Frequency that is between 3 and 30 petahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001333 +cco:ont00001333 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Rosy"@en ; + skos:definition "A Color consisting of red hue and yellow hue and high brightness."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001334 +cco:ont00001334 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Purchasing"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is used by an Agent (the Purchaser) to acquire a good or service from another Agent (the Provider)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Purchasing&oldid=1050163120"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001335 +cco:ont00001335 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001180 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001859 ; + owl:someValuesFrom cco:ont00001203 + ] ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Government"@en ; + skos:definition "An Organization that is the highest legitimate authority delimited by some Delimiting Domain and that exercises executive, legislative, or judicial authority in that Domain."@en ; + skos:editorialNote "Highest legitimate authority should not be confused with highest legitimate authority of a particular kind. For example, while the judicial branch of the United States government has the highest judicial authority in a Delimiting Domain, it is not the highest legitimate authority delimited by that domain. The combination of executive, judicial, and legislative branches is higher because it wields more legitimate authority than any branch on its own."@en , + "Importantly, the definition states \"highest legitimate authority delimited by some Delimiting Domain\" and not \"highest legitimate authority in some Delimiting Domain.\" The government of Wales is the highest legitimate authority delimited by some Delimiting Domain but it is not the highest legitimate authority in that domain, which would be the government of the United Kingdom."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001336 +cco:ont00001336 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001232 ; + rdfs:comment "The relation between the owner and property may be private, collective, or common and the property may be objects, land, real estate, or intellectual property."@en ; + rdfs:label "Act of Ownership"@en ; + skos:definition "An Act of Possession that includes an agent having certain rights and duties over the property owned."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ownership&oldid=1058224617"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001337 +cco:ont00001337 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:label "Infrared Light Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 300 gigahertz and 430 tetrahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Infrared&oldid=1064111319"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001338 +cco:ont00001338 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000862 ; + rdfs:label "Timbre"@en ; + skos:definition "A Sound Process Profile that is characterized by the variation, spectrum, or envelope of translated sound waves, typically on a continuum from dull or dark to bright."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001339 +cco:ont00001339 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000890 ; + rdfs:label "Act of Walking"@en ; + skos:definition "An Act of Travel that proceeds by foot."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001340 +cco:ont00001340 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000529 ; + rdfs:label "Calendar Date Identifier"@en ; + skos:definition "A Date Identifier that designates some Day by using a combination of Day, Week, Month, or Year Identifiers formatted according to an implementation of a Calendar System."@en ; + skos:example "January 1, 2018; 1 January 2018; 01/01/18; 01Jan18" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001341 +cco:ont00001341 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Portion of Geosphere"@en ; + skos:definition "A fiat object part that is composed of one or more portions of the atmosphere, cryosphere, hydrosphere, or lithosphere"@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Geosphere&oldid=1137306949"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001342 +cco:ont00001342 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000427 ; + rdfs:label "Infantry Fighting Vehicle"@en ; + skos:definition "An Armored Fighting Vehicle that is designed to carry infantry into battle and to provide fire support for them."@en ; + skos:scopeNote "Infantry Fighting Vehicles (IFVs) are differentiated from Armored Personnel Carriers (APCs) because they are designed to give direct fire support to the dismounted infantry and so usually have significantly enhanced armament. IFVs also often have improved armour and firing ports (allowing the infantry to fire personal weapons while mounted)."@en ; + cco:ont00001753 "IFV" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Infantry_fighting_vehicle&oldid=1062470745"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001343 +cco:ont00001343 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Circuit Breaker"@en ; + skos:definition "A Material Artifact that is designed to protect an electrical circuit from damage caused by excess current from an overload or short circuit."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Circuit_breaker&oldid=1060854893"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001344 +cco:ont00001344 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Biological Depot"@en ; + skos:definition "A Storage Facility that is designed to store biological agents."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001345 +cco:ont00001345 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Impulse"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the integral of a Force applied to a portion of matter over a temporal interval."@en ; + skos:example "N s, dyne second" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001346 +cco:ont00001346 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Legal Instrument"@en ; + skos:definition "A Material Artifact that is designed as a formally executed written document that can be formally attributed to its author, records and formally expresses a legally enforceable act, process, or contractual duty, obligation, or right, and therefore evidences that act, process, or agreement."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Legal_instrument&oldid=1054387344"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001347 +cco:ont00001347 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000005 ; + rdfs:label "Behavior"@en ; + skos:definition "An Act in which an Independent Continuant participates as an Agent in response to external or internal stimuli and following some pattern which is dependent upon some combination of that Independent Continuant's internal state and external conditions."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/GO_0007610" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001348 +cco:ont00001348 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000028 ; + rdfs:comment "For an object in motion, its Three-Dimensional Position is part of its Three-Dimensional Path."@en ; + rdfs:label "Three-Dimensional Position"@en ; + skos:definition "A Three-Dimensional Spatial Region that encompasses the (minimal) spatial region in which some object is located at a particular time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001349 +cco:ont00001349 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Grey"@en ; + skos:definition "A Color between white and black colors."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001350 +cco:ont00001350 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Thermal Control Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by an Artifact increasing, decreasing, or maintaining the temperature of itself, a part of itself, or another object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001351 +cco:ont00001351 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000275 ; + rdfs:label "Cartesian Coordinate System"@en ; + skos:altLabel "Rectangular Coordinate System"@en ; + skos:definition "A Spatial Reference System that identifies each point in a spatial region of n-dimensions using an ordered n-tuple of numerical coordinates that are the signed (i.e. positive or negative) distances measured in the same unit of length from the zero point where the fixed perpendicular Coordinate System Axes meet."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cartesian_coordinate_system&oldid=1058613323"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001352 +cco:ont00001352 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000829 ; + rdfs:comment "Greenwich Mean Time (GMT) is the mean solar time at the Royal Observatory in Greenwich, London and has been superseded by Coordinated Universal Time (UTC)."@en ; + rdfs:label "Greenwich Mean Time Zone Identifier"@en ; + skos:definition "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Greenwich Mean Time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001353 +cco:ont00001353 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000448 ; + rdfs:label "Speed Artifact Function"@en ; + skos:definition "A Motion Artifact Function that is realized in some process in which its bearer has some speed."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001354 +cco:ont00001354 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Vermilion"@en ; + skos:definition "A Color consisting of red and orange hue with a slight amount of gray."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001355 +cco:ont00001355 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000928 ; + rdfs:label "Freight Train Car"@en ; + skos:altLabel "Freight Car"@en ; + skos:definition "A Train Car that is designed to transport cargo."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Goods_wagon&oldid=1062686785"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001356 +cco:ont00001356 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000611 ; + rdfs:label "Increase of Disposition"@en ; + skos:definition "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Disposition that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001357 +cco:ont00001357 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Time"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of temporal regions."@en ; + skos:example "second, minute, hour, day" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001358 +cco:ont00001358 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000270 ; + rdfs:label "School"@en ; + skos:definition "An Education Facility that is designed to provide learning space and environments for teaching of students under the direction of teachers."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=School&oldid=1063515394"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001359 +cco:ont00001359 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000908 ; + rdfs:comment "An Act of Manufacturing typically involves the mass production of goods."@en ; + rdfs:label "Act of Manufacturing"@en ; + skos:definition "An Act of Artifact Processing wherein Artifacts are created in a Facility for the purpose of being sold to consumers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001360 +cco:ont00001360 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Three Dimensional Shape"@en ; + skos:definition "A Shape Quality that inheres only in a three dimensional entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001361 +cco:ont00001361 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Healing Artifact Function"@en ; + skos:definition "An Artifact Function that is realized in a process in which health is restored to an unbalanced, diseased, or damaged organism."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Healing&oldid=1053920678"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001362 +cco:ont00001362 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001283 ; + rdfs:label "Gas Processing Facility"@en ; + skos:definition "A Refinery that is designed for refining natural gas into products of value."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Natural-gas_processing&oldid=1056700541"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001363 +cco:ont00001363 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001033 ; + rdfs:label "Male Sex"@en ; + skos:definition "A Biological Sex inhering in an individual whose sex organs contain only male gametes."@en ; + cco:ont00001754 "http://purl.org/obo/owl/PATO#PATO_0000384" ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001364 +cco:ont00001364 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001877 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Interval Measurement Information Content Entity"@en ; + skos:definition "A Measurement Information Content Entity that places a Quality of an Entity onto some interval scale having no true zero value."@en ; + skos:example "The sentence \"The temperature reached -27 degrees Fahrenheit on January 20, 1985 in Chicago, IL.\" is the carrier of an interval measurement as 0 degrees on the Fahrenheit scale does not describe absolute zero."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001365 +cco:ont00001365 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001353 ; + rdfs:label "Maximum Speed Artifact Function"@en ; + skos:definition "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains the highest speed at which that Artifact is designed to operate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001366 +cco:ont00001366 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Powering Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact is used to supply power to some Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001367 +cco:ont00001367 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001202 ; + rdfs:comment "Subclasses of one dimensional extent are included for usability. It is doubtful any of them can be objectively distinguished (on the side of the bearing entity) without some reference to external properties such as orientation and perspective."@en ; + rdfs:label "One Dimensional Extent"@en ; + skos:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in one dimension."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/PATO_0001708" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001368 +cco:ont00001368 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001306 ; + rdfs:label "Motion Observation Artifact Function"@en ; + skos:definition "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the Motion of a specified object or class of objects."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001369 +cco:ont00001369 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Rectangular"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of having four sides and four 90 degree angles."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001370 +cco:ont00001370 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Machine Bearing"@en ; + skos:definition "A Material Artifact that is designed to constrain relative motion to only desired motion and reduces friction between moving parts."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001371 +cco:ont00001371 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:label "Electromagnetic Induction Artifact Function"@en ; + skos:definition "An Artifact Function that is realized by processes in which some Artifact that is used to produce electromotive force across an electrical conductor due to its dynamic interaction with a magnetic field."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_induction&oldid=1061836930"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001372 +cco:ont00001372 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000437 ; + rdfs:label "Fertilizer Artifact Function"@en ; + skos:definition "An Enhancing Artifact Function that is realized in processes of supplying soilds or plant tissues with one or more plant nutrients essential to growth."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fertilizer&oldid=1062923261"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001373 +cco:ont00001373 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001051 ; + rdfs:label "Bow"@en ; + skos:definition "A Projectile Launcher that is designed to launch Arrows."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bow_and_arrow&oldid=1062193194"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001374 +cco:ont00001374 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:comment "Examples: Baptism, Sentencing a person to imprisonment, Pronouncing a couple husband and wife, Declaring war"@en ; + rdfs:label "Act of Declarative Communication"@en ; + skos:definition "An Act of Communication that changes the reality in accord with the proposition of the declaration."@en ; + cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001375 +cco:ont00001375 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Washing Facility"@en ; + skos:definition "A Facility that is designed to wash personnel or equipment."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Washing&oldid=1035998791"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001376 +cco:ont00001376 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000570 ; + rdfs:label "Torque"@en ; + skos:altLabel "Moment of Force"@en ; + skos:definition "A Force that is applied to an object in a direction that would tend to cause the object to rotate around an Axis of Rotation and is the rate of change of an object's Angular Momentum."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Torque&oldid=1063339484"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001377 +cco:ont00001377 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Gold Color"@en ; + skos:definition "A Color that resembles a yellow-orange Hue with the added feature of having a metallic shine."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001378 +cco:ont00001378 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001301 ; + rdfs:label "Hospitality Artifact Function"@en ; + skos:definition "A Service Artifact Function that is realized in processes of accommodation food and beverage meeting and events gaming entertainment and recreation tourism services and visitor information."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hospitality&oldid=1049599161"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001379 +cco:ont00001379 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000017 ; + rdfs:label "Agent Capability"@en ; + skos:definition "A Realizable Entity that inheres in a Material Entity in virtue of that Material Entity's capacity to realize it in some Planned Act."@en ; + cco:ont00001754 "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001380 +cco:ont00001380 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000339 ; + rdfs:label "Farm"@en ; + skos:definition "An Agricultural Facility that is designed to produce food and other crops."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Farm&oldid=1058311769"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001381 +cco:ont00001381 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000995 ; + rdfs:label "Medical Artifact"@en ; + skos:definition "A Material Artifact that is designed for diagnosing, treating, or preventing disease, disability, or death."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001382 +cco:ont00001382 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000475 ; + rdfs:label "Electronic Cash"@en ; + skos:definition "A Portion of Cash that consists of Bytes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001383 +cco:ont00001383 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000479 ; + rdfs:label "Fire Station"@en ; + skos:altLabel "Fire Hall"@en , + "Fire House"@en ; + skos:definition "A Public Safety Facility that is designed for the storage of firefighting apparatus."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fire_station&oldid=1060666629"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001384 +cco:ont00001384 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000628 ; + rdfs:comment "Note that it is important to specify the frequency of electromagnetic radiation when representing a bearer's Opacity since a bearer may be Opaque with respect to electromagnetic radiation of one frequency, but be transparent with respect to electromagnetic radiation of another frequency. Unless otherwise stated, statements about a bearer's Opacity are assumed to be about electromagnetic radiation with a frequency in the visible spectrum."@en ; + rdfs:label "Opacity"@en ; + skos:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of that bearer's capacity to transmit electromagnetic radiation of a given frequency through the bearer instead of reflecting, scattering, or absorbing electromangentic radiation of that frequency."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Opacity_(optics)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001999 +cco:ont00001999 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000323 ; + rdfs:comment """Although its basic function remains the same, a Filter can be used in 2 different ways: +(1) to allow only the desired entities to pass through (e.g. removing dirt from engine oil); or +(2) to allow everything except the desired entities to pass through (e.g. panning for gold)."""@en ; + rdfs:label "Filter Function"@en ; + skos:definition "An Artifact Function that is realized in a process where entities of a specific type or which have specified properties enter it or pass through it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001385 +cco:ont00001385 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Haiti Gourde"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001386 +cco:ont00001386 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Yemeni Rial"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001387 +cco:ont00001387 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Mauritania Ouguiya"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001388 +cco:ont00001388 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Minute of Arc Measurement Unit"@en ; + skos:altLabel "Arcminute"@en , + "MOA"@en , + "am"@en , + "amin"@en , + "arcmin"@en ; + cco:ont00001740 "'" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001389 +cco:ont00001389 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Kenyan Shilling"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001390 +cco:ont00001390 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Slug Measurement Unit"@en ; + skos:altLabel "slug"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001391 +cco:ont00001391 rdf:type owl:NamedIndividual , + cco:ont00000229 , + cco:ont00000444 , + cco:ont00000852 ; + rdfs:label "Erg Measurement Unit"@en ; + skos:altLabel "erg"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001392 +cco:ont00001392 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-8"@en ; + skos:altLabel "PST"@en , + "Pacific Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001393 +cco:ont00001393 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Tablespoon Measurement Unit"@en ; + cco:ont00001753 "T" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001394 +cco:ont00001394 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Papua New Guinea Kina"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001395 +cco:ont00001395 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-3:30"@en ; + skos:altLabel "Newfoundland Standard Time"@en ; + cco:ont00001753 "NST" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001396 +cco:ont00001396 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Viet Nam Dong"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001397 +cco:ont00001397 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Centimeter Measurement Unit"@en ; + skos:altLabel "cm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001398 +cco:ont00001398 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:label "Global Area Reference System"@en ; + cco:ont00001753 "GARS" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001399 +cco:ont00001399 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Ghana Cedi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001400 +cco:ont00001400 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Sri Lanka Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001401 +cco:ont00001401 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "South Africa Rand"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001402 +cco:ont00001402 rdf:type owl:NamedIndividual , + cco:ont00000770 ; + rdfs:label "Kilogram Per Liter Measurement Unit"@en ; + cco:ont00001740 "kg/L" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001403 +cco:ont00001403 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+2"@en ; + rdfs:label "Bravo Time Zone"@en ; + cco:ont00001753 "B" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001404 +cco:ont00001404 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Afghanistan Afghani"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001405 +cco:ont00001405 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-2"@en ; + skos:altLabel "BET"@en , + "Brazil Eastern Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001406 +cco:ont00001406 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+9:30"@en ; + skos:altLabel "Australian Central Standard Time"@en ; + cco:ont00001753 "ACST" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001407 +cco:ont00001407 rdf:type owl:NamedIndividual , + cco:ont00000229 ; + rdfs:label "Shaft Horsepower Measurement Unit"@en ; + skos:altLabel "shp"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001408 +cco:ont00001408 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-11"@en ; + rdfs:label "X-ray Time Zone"@en ; + cco:ont00001753 "X" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001409 +cco:ont00001409 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Singapore Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001410 +cco:ont00001410 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Guyana Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001411 +cco:ont00001411 rdf:type owl:NamedIndividual , + cco:ont00000497 ; + rdfs:label "Pound Force Measurement Unit"@en ; + skos:altLabel "lbf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001412 +cco:ont00001412 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+0"@en ; + rdfs:label "GMT"@en ; + skos:altLabel "Greenwich Mean Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001413 +cco:ont00001413 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Milligram Measurement Unit"@en ; + skos:altLabel "mg"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001414 +cco:ont00001414 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment "TT is an astronomical time standard that is a theoretical ideal designed to be free of the irregularities in Earth's rotation and is primarily used for time measurements of astronomical observations made from the surface of Earth. It was formerly called Terrestrial Dynamical Time (TDT), which was formulated to replace Ephemeris Time (ET)."@en ; + rdfs:label "Terrestrial Time"@en ; + cco:ont00001753 "TT" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001415 +cco:ont00001415 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Swiss Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001416 +cco:ont00001416 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Centimeter Measurement Unit"@en ; + skos:altLabel "cm^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001417 +cco:ont00001417 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment "ET is an astronomical time scale that was adopted as a standard in 1952 by the IAU but has since been superseded and is no longer actively used. ET is based on the ephemeris second, which was defined as a fraction of the tropical year for 1900 January 01 as calculated using Newcomb's 1895 tables of the Sun. ET was designed to avoid problems caused by variations in Earth's rotational period and was used for Solar System ephemeris calculations until being replaced by Terrestrial Dynamical Time (TDT) in 1979."@en ; + rdfs:label "Ephemeris Time"@en ; + cco:ont00001753 "ET" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001418 +cco:ont00001418 rdf:type owl:NamedIndividual , + cco:ont00000140 ; + rdfs:label "Kilogram-Mole Measurement Unit"@en ; + skos:altLabel "kg-mol"@en , + "kilogram-mole"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001419 +cco:ont00001419 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+5"@en ; + skos:altLabel "PLT"@en , + "Pakistan Lahore Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001420 +cco:ont00001420 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Dominican Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001421 +cco:ont00001421 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-6"@en ; + rdfs:label "Sierra Time Zone"@en ; + cco:ont00001753 "S" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001422 +cco:ont00001422 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Quart Measurement Unit"@en ; + cco:ont00001753 "qt" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001423 +cco:ont00001423 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Deciliter Measurement Unit"@en ; + skos:altLabel "dL"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001424 +cco:ont00001424 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+1"@en ; + rdfs:label "Alpha Time Zone"@en ; + cco:ont00001753 "A" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001425 +cco:ont00001425 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Miles Per Second Measurement Unit"@en ; + skos:altLabel "mi/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001426 +cco:ont00001426 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Chinese Renminbi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001427 +cco:ont00001427 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Canadian Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001428 +cco:ont00001428 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Kilometers Per Hour Measurement Unit"@en ; + skos:altLabel "km/h"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001429 +cco:ont00001429 rdf:type owl:NamedIndividual , + cco:ont00000140 ; + rdfs:label "Gram-Mole Measurement Unit"@en ; + skos:altLabel "g-mol"@en , + "gram-mole"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001430 +cco:ont00001430 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+6"@en ; + rdfs:label "Foxtrot Time Zone"@en ; + cco:ont00001753 "F" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001431 +cco:ont00001431 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-10"@en ; + rdfs:label "Whiskey Time Zone"@en ; + cco:ont00001753 "W" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001432 +cco:ont00001432 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Kilogram Force Per Centimeter Square Measurement Unit"@en ; + skos:altLabel "Kilogram Per Square Centimeter Measurement Unit"@en , + "Kilopond Per Centimeter Square Measurement Unit"@en ; + cco:ont00001753 "kg/cm^2" , + "kgf/cm^2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001433 +cco:ont00001433 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Mile Measurement Unit"@en ; + skos:altLabel "mi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001434 +cco:ont00001434 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+1"@en ; + skos:altLabel "ECT"@en , + "European Central Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001435 +cco:ont00001435 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Colombian Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001436 +cco:ont00001436 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:label "Universal Time 1 D"@en ; + cco:ont00001753 "UT1D" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001437 +cco:ont00001437 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Liter Measurement Unit"@en ; + skos:altLabel "Litre"@en ; + cco:ont00001740 "L" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001438 +cco:ont00001438 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Yard Measurement Unit"@en ; + skos:altLabel "yd^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001439 +cco:ont00001439 rdf:type owl:NamedIndividual , + cco:ont00000263 ; + rdfs:label "Twenty-Four-Hour Clock Time System"@en ; + skos:altLabel "24-Hour Clock"@en , + "24-Hour Clock Time System"@en , + "Military Time"@en , + "Military Time System"@en , + "Twenty-Four Hour Clock Time System"@en , + "Twenty-Four-Hour Clock"@en ; + skos:definition "A Clock Time System for time keeping in which the Day runs from midnight to midnight and is divided into 24 Hours, indicated by the Hours passed since midnight, from 0 to 23."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=24-hour_clock&oldid=1063744105"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001440 +cco:ont00001440 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-9"@en ; + skos:altLabel "AST"@en , + "Alaska Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001441 +cco:ont00001441 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Rwanda Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001442 +cco:ont00001442 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Week Measurement Unit"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001443 +cco:ont00001443 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Albania Lek"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001444 +cco:ont00001444 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Year Measurement Unit"@en ; + skos:altLabel "yr"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001445 +cco:ont00001445 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Centiliter Measurement Unit"@en ; + skos:altLabel "cL"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001446 +cco:ont00001446 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Mike Time Zone is the same local time as Yankee Time Zone, but is 1 Day (i.e. 24 Hours) ahead of Yankee Time Zone as they are on opposite sides of the International Date Line."@en , + "Offset from Universal Coordinated Time = UTC+12"@en ; + rdfs:label "Mike Time Zone"@en ; + cco:ont00001753 "M" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001447 +cco:ont00001447 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "CFP Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001448 +cco:ont00001448 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Malawi Kwacha"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001449 +cco:ont00001449 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Czech Koruna"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001450 +cco:ont00001450 rdf:type owl:NamedIndividual , + cco:ont00001004 ; + rdfs:label "Volt Measurement Unit"@en ; + skos:altLabel "V"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001451 +cco:ont00001451 rdf:type owl:NamedIndividual , + cco:ont00001004 ; + rdfs:label "Milliampere Measurement Unit"@en ; + skos:altLabel "mA"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001452 +cco:ont00001452 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Indian Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001453 +cco:ont00001453 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Binary Degree Measurement Unit"@en ; + skos:altLabel "Binary Radian"@en , + "Brad"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001454 +cco:ont00001454 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+11"@en ; + rdfs:label "Lima Time Zone"@en ; + cco:ont00001753 "L" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001455 +cco:ont00001455 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Bolivia Boliviano"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001456 +cco:ont00001456 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Mile Measurement Unit"@en ; + skos:altLabel "mi^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001457 +cco:ont00001457 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-4"@en ; + rdfs:label "Quebec Time Zone"@en ; + cco:ont00001753 "Q" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001458 +cco:ont00001458 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Costa Rica Colon"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001459 +cco:ont00001459 rdf:type owl:NamedIndividual , + cco:ont00001307 ; + rdfs:label "Pound Per Second Measurement Unit"@en ; + skos:altLabel "lb/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001460 +cco:ont00001460 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Mauritius Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001461 +cco:ont00001461 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment "TDB is a linear scaling of Barycentric Coordinate Time (TCB) and is a relativistic coordinate time scale used in astronomy as a time standard that accounts for time dilation when calculating Orbits and Ephemerides of Astronomical Bodies and interplanetary Spacecraft in the Solar System. TDB is a successor of Ephemeris Time (ET) and is nearly equivalent to the time scale Teph used for DE405 planetary and lunar ephemerides generated by the Jet Propulsion Laboratory."@en ; + rdfs:label "Barycentric Dynamical Time"@en ; + cco:ont00001753 "TDB" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001462 +cco:ont00001462 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Twenty Foot Equivalent Unit"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001463 +cco:ont00001463 rdf:type owl:NamedIndividual , + cco:ont00000140 ; + rdfs:label "Kilomole Measurement Unit"@en ; + skos:altLabel "kilomole"@en , + "kmol"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001464 +cco:ont00001464 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Uzbekistan Sum"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001465 +cco:ont00001465 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Namibia Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001466 +cco:ont00001466 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Revolutions Per Day Measurement Unit"@en ; + skos:altLabel "r/day"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001467 +cco:ont00001467 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-4"@en ; + skos:altLabel "PRT"@en , + "Puerto Rico and US Virgin Islands Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001468 +cco:ont00001468 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+10"@en ; + skos:altLabel "AET"@en , + "Australia Eastern Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001469 +cco:ont00001469 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Kilometers Per Second Measurement Unit"@en ; + skos:altLabel "km/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001470 +cco:ont00001470 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Megahertz Measurement Unit"@en ; + skos:altLabel "MHz"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001471 +cco:ont00001471 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Centimeter Measurement Unit"@en ; + skos:altLabel "cm^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001472 +cco:ont00001472 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Millimeter Measurement Unit"@en ; + skos:altLabel "mm^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001473 +cco:ont00001473 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Euro"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001474 +cco:ont00001474 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Atmosphere Measurement Unit"@en ; + skos:altLabel "atm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001475 +cco:ont00001475 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Kilohertz Measurement Unit"@en ; + skos:altLabel "kHz"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001476 +cco:ont00001476 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+4"@en ; + skos:altLabel "NET"@en , + "Near East Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001477 +cco:ont00001477 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Kilogram Measurement Unit"@en ; + cco:ont00001738 "kilogram" ; + cco:ont00001740 "kg" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001478 +cco:ont00001478 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Angstrom Measurement Unit"@en ; + skos:altLabel "Angstrom"@en , + "Å"@en , + "Ångström"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001479 +cco:ont00001479 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Angolan Kwanza"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001480 +cco:ont00001480 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+9"@en ; + rdfs:label "India Time Zone"@en ; + cco:ont00001753 "I" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001481 +cco:ont00001481 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Macao Pataca"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001482 +cco:ont00001482 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Algerian Dinar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001483 +cco:ont00001483 rdf:type owl:NamedIndividual , + cco:ont00000140 ; + rdfs:comment "One mole contains exactly 6.02214076×10^23 elementary entities."@en ; + rdfs:label "Mole Measurement Unit"@en ; + cco:ont00001738 "mole" ; + cco:ont00001740 "mol" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001484 +cco:ont00001484 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Bangladesh Taka"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001485 +cco:ont00001485 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Surinamese Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001486 +cco:ont00001486 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Kilometer Measurement Unit"@en ; + skos:altLabel "km^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001487 +cco:ont00001487 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Peru Nuevo Sol"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001488 +cco:ont00001488 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-7"@en ; + rdfs:label "Tango Time Zone"@en ; + cco:ont00001753 "T" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001489 +cco:ont00001489 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Radian Measurement Unit"@en ; + cco:ont00001738 "radian" ; + cco:ont00001740 "rad" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001490 +cco:ont00001490 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Bulgarian Lev"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001491 +cco:ont00001491 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:label "Universal Time 1 A"@en ; + cco:ont00001753 "UT1A" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001492 +cco:ont00001492 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Lebanese Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001493 +cco:ont00001493 rdf:type owl:NamedIndividual , + cco:ont00000497 ; + rdfs:label "Kilonewton Measurement Unit"@en ; + skos:altLabel "kN"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001494 +cco:ont00001494 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Yard Measurement Unit"@en ; + skos:altLabel "yrd"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001495 +cco:ont00001495 rdf:type owl:NamedIndividual , + cco:ont00000198 ; + rdfs:label "Sone Measurement Unit"@en ; + skos:altLabel "sone"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001496 +cco:ont00001496 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Meter Measurement Unit"@en ; + skos:altLabel "m^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001497 +cco:ont00001497 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Kuwaiti Dinar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001498 +cco:ont00001498 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Fiji Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001499 +cco:ont00001499 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Kiloliter Measurement Unit"@en ; + skos:altLabel "kL"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001500 +cco:ont00001500 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+5"@en ; + rdfs:label "Echo Time Zone"@en ; + cco:ont00001753 "E" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001501 +cco:ont00001501 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Tanzania Shilling"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001502 +cco:ont00001502 rdf:type owl:NamedIndividual , + cco:ont00000229 ; + dcterms:contributor "Donna Jones" , + "Olivia Hobai" ; + rdfs:label "Decibel Isotropic Measurement Unit"@en ; + skos:altLabel "Decibels Over Isotropic" , + "Decibels Over Isotropic Antenna" , + "Decibels Relative to Isotrope" , + "Decibels Relative to Isotropic Radiator" , + "Decibels Relative to an Isotropic Reference Antenna" ; + cco:ont00001740 "dBi" ; + cco:ont00001754 "https://shopdelta.eu/dbi-power-gain-of-isotropic-antenna_l2_aid836.html"^^xsd:anyURI , + "https://www.techtarget.com/whatis/definition/decibels-relative-to-isotropic-radiator-dBi"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001503 +cco:ont00001503 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Hungary Forint"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001504 +cco:ont00001504 rdf:type owl:NamedIndividual , + cco:ont00000659 ; + rdfs:label "Newton Meter Measurement Unit"@en ; + cco:ont00001740 "N-m" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001505 +cco:ont00001505 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Uruguay Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001506 +cco:ont00001506 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:label "Universal Time 1 F"@en ; + cco:ont00001753 "UT1F" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001507 +cco:ont00001507 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Lesotho Loti"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001508 +cco:ont00001508 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Brunei Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001509 +cco:ont00001509 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Belarussian Ruble"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001510 +cco:ont00001510 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Tonga Pa anga"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001511 +cco:ont00001511 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Meters Per Second Measurement Unit"@en ; + skos:altLabel "m/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001512 +cco:ont00001512 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "South Sudanese Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001513 +cco:ont00001513 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Mexican Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001514 +cco:ont00001514 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Laos Kip"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001515 +cco:ont00001515 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Liberian Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001516 +cco:ont00001516 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-2"@en ; + rdfs:label "Oscar Time Zone"@en ; + cco:ont00001753 "O" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001517 +cco:ont00001517 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Nicaragua Cordoba Oro"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001518 +cco:ont00001518 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Madagascar Malagasy Ariary"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001519 +cco:ont00001519 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Turkish Lira"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001520 +cco:ont00001520 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Zambia Kwacha"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001521 +cco:ont00001521 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Philippine Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001522 +cco:ont00001522 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Foot Measurement Unit"@en ; + skos:altLabel "ft^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001523 +cco:ont00001523 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Pint Measurement Unit"@en ; + skos:altLabel "pt"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001524 +cco:ont00001524 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-11"@en ; + skos:altLabel "MIT"@en , + "Midway Islands Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001525 +cco:ont00001525 rdf:type owl:NamedIndividual , + cco:ont00000497 ; + rdfs:label "Newton Measurement Unit"@en ; + cco:ont00001738 "newton" ; + cco:ont00001740 "N" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001526 +cco:ont00001526 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Mach Measurement Unit"@en ; + skos:altLabel "M"@en , + "Ma"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001527 +cco:ont00001527 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+8"@en ; + rdfs:label "Hotel Time Zone"@en ; + cco:ont00001753 "H" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001528 +cco:ont00001528 rdf:type owl:NamedIndividual , + cco:ont00000940 ; + rdfs:label "Kilogram Meter Per Second Measurement Unit"@en ; + skos:altLabel "kg m/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001529 +cco:ont00001529 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment """\"TCG is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to precession, nutation, the Moon, and artificial satellites of the Earth. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the center of the Earth: that is, a clock that performs exactly the same movements as the Earth but is outside the Earth's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Earth.\" +From: (https://en.wikipedia.org/wiki/Geocentric_Coordinate_Time)"""@en ; + rdfs:label "Geocentric Coordinate Time"@en ; + cco:ont00001753 "TCG" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001530 +cco:ont00001530 rdf:type owl:NamedIndividual , + cco:ont00000374 ; + rdfs:label "Cubic Meter Per Second Measurement Unit"@en ; + cco:ont00001740 "m^3/s" ; + cco:ont00001753 "cumec" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001531 +cco:ont00001531 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Botswana Pula"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001532 +cco:ont00001532 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Egyptian Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001533 +cco:ont00001533 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Hour Measurement Unit"@en ; + skos:altLabel "hr"@en ; + cco:ont00001740 "h" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001534 +cco:ont00001534 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+7"@en ; + skos:altLabel "VST"@en , + "Vietnam Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001535 +cco:ont00001535 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Sudanese Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001536 +cco:ont00001536 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Second Measurement Unit"@en ; + cco:ont00001738 "second" ; + cco:ont00001740 "s" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001537 +cco:ont00001537 rdf:type owl:NamedIndividual , + cco:ont00000067 , + cco:ont00000630 ; + rdfs:comment "UTC is a variant of Universal Time that is calculated by combining Universal Time 1 with International Atomic Time by occasionally adding leap seconds to TAI in order to maintain UTC within 0.9 seconds of UT1. The difference between UTC and UT1 is called DUT1 and always has a value between -0.9 seconds and +0.9 seconds. Coordinated Universal Time is the current basis for civil time and is the reference time for time zones, whose local times are defined based on an offset from UTC."@en ; + rdfs:label "Coordinated Universal Time"@en ; + cco:ont00001753 "UTC" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001538 +cco:ont00001538 rdf:type owl:NamedIndividual , + cco:ont00000074 ; + rdfs:label "Meters Per Second Per Second Measurement Unit"@en ; + skos:altLabel "m/s/s"@en , + "m/s^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001539 +cco:ont00001539 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Tajikistan Somoni"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001540 +cco:ont00001540 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Israel Shekel"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001541 +cco:ont00001541 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+12"@en ; + skos:altLabel "NST"@en , + "New Zealand Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001542 +cco:ont00001542 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Paraguay Guarani"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001543 +cco:ont00001543 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Decimeter Measurement Unit"@en ; + skos:altLabel "dm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001544 +cco:ont00001544 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Short Ton Measurement Unit"@en ; + skos:altLabel "Net Ton"@en , + "ton (US)"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001545 +cco:ont00001545 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Swaziland Lilangeni"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001546 +cco:ont00001546 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Democratic Republic Of Congo Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001547 +cco:ont00001547 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Syrian Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001548 +cco:ont00001548 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:comment "UT1R is a variant of Universal Time that is a smoothed version of UT1 by filtering out periodic variations due to tidal waves."@en ; + rdfs:label "Universal Time 1 R"@en ; + cco:ont00001753 "UT1R" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001549 +cco:ont00001549 rdf:type owl:NamedIndividual , + cco:ont00000497 ; + rdfs:label "Dyne Measurement Unit"@en ; + skos:altLabel "dyn"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001550 +cco:ont00001550 rdf:type owl:NamedIndividual , + cco:ont00000276 ; + rdfs:comment "The Julian Calendar was proposed by Julius Caesar as a reform of the Roman Calendar, took effect on 1 January 46 BC, and was the predominant Calendar System in Europe until being largely replaced by the Gregorian Calendar."@en ; + rdfs:label "Julian Calendar"@en ; + skos:definition "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years such that the average length of a Julian Year is 365.25 Days."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Julian_calendar&oldid=1063127575"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001551 +cco:ont00001551 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Foot Measurement Unit"@en ; + skos:altLabel "ft^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001552 +cco:ont00001552 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Gram Measurement Unit"@en ; + skos:altLabel "g"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001553 +cco:ont00001553 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+6"@en ; + skos:altLabel "BST"@en , + "Bangladesh Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001554 +cco:ont00001554 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-10"@en ; + skos:altLabel "HST"@en , + "Hawaii Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001555 +cco:ont00001555 rdf:type owl:NamedIndividual , + cco:ont00000659 ; + rdfs:label "Pound Foot Measurement Unit"@en ; + cco:ont00001753 "lb ft" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001556 +cco:ont00001556 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Samoa Tala"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001557 +cco:ont00001557 rdf:type owl:NamedIndividual , + cco:ont00000527 ; + rdfs:label "Pound Foot Second Square Measurement Unit"@en ; + cco:ont00001753 "lb ft s^2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001558 +cco:ont00001558 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "New Zealand Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001559 +cco:ont00001559 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Pascal Measurement Unit"@en ; + cco:ont00001738 "pascal" ; + cco:ont00001740 "Pa" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001560 +cco:ont00001560 rdf:type owl:NamedIndividual , + cco:ont00000229 , + cco:ont00000444 , + cco:ont00000852 ; + rdfs:label "Calorie Measurement Unit"@en ; + skos:altLabel "cal"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001561 +cco:ont00001561 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Uganda Shilling"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001562 +cco:ont00001562 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Cambodian Riel"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001563 +cco:ont00001563 rdf:type owl:NamedIndividual , + cco:ont00000229 , + cco:ont00000444 , + cco:ont00000852 ; + rdfs:label "Horsepower Measurement Unit"@en ; + skos:altLabel "hp"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001564 +cco:ont00001564 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Decigram Measurement Unit"@en ; + skos:altLabel "dg"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001565 +cco:ont00001565 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-5"@en ; + skos:altLabel "EST"@en , + "Eastern Standard Time"@en , + "IET"@en , + "Indiana Eastern Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001566 +cco:ont00001566 rdf:type owl:NamedIndividual , + cco:ont00000229 ; + rdfs:label "Watt Measurement Unit"@en ; + cco:ont00001738 "watt" ; + cco:ont00001740 "W" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001567 +cco:ont00001567 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Ounce Measurement Unit"@en ; + skos:altLabel "oz"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001568 +cco:ont00001568 rdf:type owl:NamedIndividual , + cco:ont00000770 ; + rdfs:label "Gram Per Cubic Centimeter Measurement Unit"@en ; + cco:ont00001740 "g/cm^3" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001569 +cco:ont00001569 rdf:type owl:NamedIndividual , + cco:ont00000770 ; + rdfs:label "Kilogram Per Cubic Meter Measurement Unit"@en ; + cco:ont00001738 "kg/m^3" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001570 +cco:ont00001570 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+2"@en ; + skos:altLabel "EET"@en , + "Eastern European Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001571 +cco:ont00001571 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Day Measurement Unit"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001572 +cco:ont00001572 rdf:type owl:NamedIndividual , + cco:ont00000844 ; + rdfs:label "Kelvin Measurement Unit"@en ; + cco:ont00001738 "kelvin" ; + cco:ont00001740 "K" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001573 +cco:ont00001573 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Teaspoon Measurement Unit"@en ; + cco:ont00001753 "t" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001574 +cco:ont00001574 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Revolutions Per Minute Measurement Unit"@en ; + skos:altLabel "r/min"@en , + "rpm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001575 +cco:ont00001575 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "CFA Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001576 +cco:ont00001576 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Milliliter Measurement Unit"@en ; + skos:altLabel "mL"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001577 +cco:ont00001577 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Ukraine Hryvnia"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001578 +cco:ont00001578 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Nepalese Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001579 +cco:ont00001579 rdf:type owl:NamedIndividual , + cco:ont00000374 ; + rdfs:label "Liter Per Second Measurement Unit"@en ; + skos:altLabel "l/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001580 +cco:ont00001580 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-3"@en ; + rdfs:label "Papa Time Zone"@en ; + cco:ont00001753 "P" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001581 +cco:ont00001581 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:comment """The ITRS definition fulfills the following conditions: +1. It is geocentric, the center of mass being defined for the whole earth, including oceans and atmosphere. +2. The unit of length is the metre (SI). This scale is consistent with the TCG time coordinate for a geocentric local frame, in agreement with IAU and IUGG (1991) resolutions. This is obtained by appropriate relativistic modelling. +3. Its orientation was initially given by the BIH orientation at 1984.0. +4. The time evolution of the orientation is ensured by using a no-net-rotation condition with regards to horizontal tectonic motions over the whole earth. +From: (https://www.iers.org/IERS/EN/Science/ITRS/ITRS.html)"""@en ; + rdfs:label "International Terrestrial Reference System"@en ; + cco:ont00001753 "ITRS" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001582 +cco:ont00001582 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:label "Universal Transverse Mercator Reference System"@en ; + cco:ont00001753 "UTM" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001583 +cco:ont00001583 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Feet Per Second Measurement Unit"@en ; + skos:altLabel "ft/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001584 +cco:ont00001584 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:label "World Geographic Reference System"@en ; + cco:ont00001753 "WGRS" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001585 +cco:ont00001585 rdf:type owl:NamedIndividual , + cco:ont00000940 ; + rdfs:label "Newton Second Per Kilogram Measurement Unit"@en ; + skos:altLabel "Ns/kg"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001586 +cco:ont00001586 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Poland Zloty"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001587 +cco:ont00001587 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Bayre Measurement Unit"@en ; + skos:altLabel "ba"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001588 +cco:ont00001588 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+9"@en ; + skos:altLabel "JST"@en , + "Japan Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001589 +cco:ont00001589 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Inch Measurement Unit"@en ; + skos:altLabel "in^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001590 +cco:ont00001590 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment "TAI is a time standard the values of which are generated by calculating the weighted average of the measurements of more than 400 atomic clocks and is based on the International System of Units (SI) definition of one second equals the time it takes a Cesium-133 atom at the ground state to oscillate exactly 9,192,631,770 times. TAI is extremely precise, but does not perfectly synchronize with Earth times, which is why TAI and UT1 are both used to determine UTC. TAI serves as the main realization of TT."@en ; + rdfs:label "International Atomic Time"@en ; + cco:ont00001753 "TAI" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001591 +cco:ont00001591 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-8"@en ; + rdfs:label "Uniform Time Zone"@en ; + cco:ont00001753 "U" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001592 +cco:ont00001592 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Kazakhstan Tenge"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001593 +cco:ont00001593 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Ethiopian Birr"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001594 +cco:ont00001594 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "North Korean Won"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001595 +cco:ont00001595 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Swedish Krona"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001596 +cco:ont00001596 rdf:type owl:NamedIndividual , + cco:ont00001307 ; + rdfs:label "Kilogram Per Second Measurement Unit"@en ; + cco:ont00001740 "kg/s" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001597 +cco:ont00001597 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+11"@en ; + skos:altLabel "SST"@en , + "Solomon Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001598 +cco:ont00001598 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Kilometer Measurement Unit"@en ; + skos:altLabel "km"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001599 +cco:ont00001599 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+3:30"@en ; + skos:altLabel "Iran Standard Time"@en , + "Iran Time"@en ; + cco:ont00001753 "IRST" , + "IT" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001600 +cco:ont00001600 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Guinean Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001601 +cco:ont00001601 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "United Kingdom Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001602 +cco:ont00001602 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Miles Per Hour Measurement Unit"@en ; + skos:altLabel "mi/h"@en , + "mph"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001603 +cco:ont00001603 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-1"@en ; + rdfs:label "November Time Zone"@en ; + cco:ont00001753 "N" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001604 +cco:ont00001604 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Degree Measurement Unit"@en ; + cco:ont00001740 "°" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001605 +cco:ont00001605 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Argentine Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001606 +cco:ont00001606 rdf:type owl:NamedIndividual , + cco:ont00000844 ; + rdfs:label "Degree Celsius Measurement Unit"@en ; + cco:ont00001738 "degree Celsius" ; + cco:ont00001740 "°C" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001607 +cco:ont00001607 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-9"@en ; + rdfs:label "Victor Time Zone"@en ; + cco:ont00001753 "V" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001608 +cco:ont00001608 rdf:type owl:NamedIndividual , + cco:ont00000140 ; + rdfs:label "Pound-Mole Measurement Unit"@en ; + skos:altLabel "lb-mol"@en , + "lbmol"@en , + "pound-mole"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001609 +cco:ont00001609 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Gradian Measurement Unit"@en ; + skos:altLabel "Gon"@en , + "Grad"@en , + "Grade"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001610 +cco:ont00001610 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Thai Baht"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001611 +cco:ont00001611 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Gallon Measurement Unit"@en ; + skos:altLabel "gal"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001612 +cco:ont00001612 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Bar Measurement Unit"@en ; + skos:altLabel "bar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001613 +cco:ont00001613 rdf:type owl:NamedIndividual , + cco:ont00001004 ; + rdfs:label "Kilovolt Ampere Measurement Unit"@en ; + skos:altLabel "kVA"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001614 +cco:ont00001614 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Moldovan Leu"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001615 +cco:ont00001615 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-7"@en ; + skos:altLabel "MST"@en , + "Mountain Standard Time"@en , + "PNT"@en , + "Phoenix Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001616 +cco:ont00001616 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Gambian Dalasi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001617 +cco:ont00001617 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Nigeria Naira"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001618 +cco:ont00001618 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "United States Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001619 +cco:ont00001619 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Solomon Island Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001620 +cco:ont00001620 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Macedonian Denar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001621 +cco:ont00001621 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Pakistani Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001622 +cco:ont00001622 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Armenian Dram"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001623 +cco:ont00001623 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Romanian Leu"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001624 +cco:ont00001624 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+7"@en ; + rdfs:label "Golf Time Zone"@en ; + cco:ont00001753 "G" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001625 +cco:ont00001625 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:comment "UT0 is a variant of Universal Time that is measured by observing the diurnal motion of stars or extragalactic radio sources at a specific location on Earth. It does not take into consideration distorting factors, in particular polar motion, such that its value will differ based on the location it is measured at."@en ; + rdfs:label "Universal Time 0"@en ; + cco:ont00001753 "UT0" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001626 +cco:ont00001626 rdf:type owl:NamedIndividual , + cco:ont00000263 ; + rdfs:label "Twelve-Hour Clock Time System"@en ; + skos:altLabel "12-Hour Clock"@en , + "12-Hour Clock Time System"@en , + "Twelve Hour Clock"@en , + "Twelve Hour Clock Time System"@en , + "Twelve-Hour Clock"@en ; + skos:definition "A Clock Time System for keeping the Time of Day in which the Day runs from midnight to midnight and is divided into two intervals of 12 Hours each, where: the first interval begins at midnight, ends at noon, and is indicated by the suffix 'a.m.'; the second interval begins at noon, ends at midnight, and is indicated by the suffix 'p.m.'; and the midnight and noon Hours are numbered 12 with subsequent Hours numbered 1-11."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=12-hour_clock&oldid=1057602523"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001627 +cco:ont00001627 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "HongKong Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001628 +cco:ont00001628 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-12"@en , + "Yankee Time Zone is the same local time as Mike Time Zone, but is 1 Day (i.e. 24 Hours) behind Mike Time Zone as they are on opposite sides of the International Date Line."@en ; + rdfs:label "Yankee Time Zone"@en ; + cco:ont00001753 "Y" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001629 +cco:ont00001629 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Nautical Mile Measurement Unit"@en ; + skos:altLabel "M"@en , + "NM"@en , + "nmi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001630 +cco:ont00001630 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:comment """\"WGS 84 is an Earth-centered, Earth-fixed terrestrial reference system and geodetic datum. WGS 84 is based on a consistent set of constants and model parameters that describe the Earth's size, shape, and gravity and geomagnetic fields. WGS 84 is the standard U.S. Department of Defense definition of a global reference system for geospatial information and is the reference system for the Global Positioning System (GPS). It is compatible with the International Terrestrial Reference System (ITRS).\" +From: (http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf)"""@en ; + rdfs:label "World Geodetic System 1984"@en ; + cco:ont00001753 "WGS 84" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001631 +cco:ont00001631 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Seychelles Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001632 +cco:ont00001632 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "South Korean Won"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001633 +cco:ont00001633 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Vanuatu Vatu"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001634 +cco:ont00001634 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-1"@en ; + skos:altLabel "CAT"@en , + "Central African Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001635 +cco:ont00001635 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Bosnia And Herzegovina Convertible Mark"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001636 +cco:ont00001636 rdf:type owl:NamedIndividual , + cco:ont00000198 ; + rdfs:label "Phon Measurement Unit"@en ; + skos:altLabel "phon"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001637 +cco:ont00001637 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Nanometer Measurement Unit"@en ; + skos:altLabel "Nanometre"@en , + "nm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001638 +cco:ont00001638 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Comoros Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001639 +cco:ont00001639 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Indonesia Rupiah"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001640 +cco:ont00001640 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Myanmar Kyat"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001641 +cco:ont00001641 rdf:type owl:NamedIndividual , + cco:ont00000527 ; + rdfs:label "Kilogram Meter Square Measurement Unit"@en ; + cco:ont00001740 "kg-m^2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001642 +cco:ont00001642 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Millimeter Measurement Unit"@en ; + skos:altLabel "mm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001643 +cco:ont00001643 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Millibar Measurement Unit"@en ; + skos:altLabel "mb"@en , + "mbar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001644 +cco:ont00001644 rdf:type owl:NamedIndividual , + cco:ont00000374 ; + rdfs:label "Cubic Feet Per Second Measurement Unit"@en ; + skos:altLabel "ft^3/s"@en ; + cco:ont00001753 "cusec" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001645 +cco:ont00001645 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Inch Measurement Unit"@en ; + skos:altLabel "in^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001646 +cco:ont00001646 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Knot Measurement Unit"@en ; + skos:altLabel "kn"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001647 +cco:ont00001647 rdf:type owl:NamedIndividual , + cco:ont00000074 ; + rdfs:label "Feet Per Second Per Second Measurement Unit"@en ; + skos:altLabel "ft/s/s"@en , + "ft/s^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001648 +cco:ont00001648 rdf:type owl:NamedIndividual , + cco:ont00000469 , + cco:ont00001351 ; + rdfs:label "Earth-Centered Earth-Fixed Coordinate System"@en ; + skos:altLabel "Conventional Terrestrial Coordinate System"@en , + "ECEF"@en , + "ECR"@en , + "Earth Centered Earth Fixed"@en , + "Earth Centered Rotational Coordinate System"@en , + "Earth-Centered Earth-Fixed"@en , + "Earth-Centered, Earth-Fixed"@en ; + skos:definition "A Geospatial and Cartesian Coordinate System that identifies positions using an x-axis, y-axis, and z-axis coordinate where the zero point is the center of the Earth, the z-Axis extends toward the North Pole but does not always coincide exactly with the Earth's Axis of Rotation, the x-Axis extends through the intersection of the Prime Meridian and the Equator, the y-Axis completes the right-handed system, and all three axes are fixed to the Earth such that they rotate along with the Earth."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Earth-centered,_Earth-fixed_coordinate_system&oldid=1062678600"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001649 +cco:ont00001649 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Mongolia Tugrik"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001650 +cco:ont00001650 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Tunisian Dinar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001651 +cco:ont00001651 rdf:type owl:NamedIndividual , + cco:ont00001307 ; + rdfs:label "Gram Per Second Measurement Unit"@en ; + skos:altLabel "g/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001652 +cco:ont00001652 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Russian Rouble"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001653 +cco:ont00001653 rdf:type owl:NamedIndividual , + cco:ont00000229 , + cco:ont00000444 , + cco:ont00000852 ; + rdfs:label "Joule Measurement Unit"@en ; + cco:ont00001738 "joule" ; + cco:ont00001740 "J" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001654 +cco:ont00001654 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Iranian Rial"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001655 +cco:ont00001655 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Cape Verde Escudo"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001656 +cco:ont00001656 rdf:type owl:NamedIndividual , + cco:ont00001345 ; + rdfs:label "Newton Second Measurement Unit"@en ; + skos:altLabel "N s"@en , + "Newton second"@en , + "Ns"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001657 +cco:ont00001657 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Trinidad and Tobago Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001658 +cco:ont00001658 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment "Teph (the 'eph' is written as subscript) is an ephemeris time argument developed and calculated at the Jet Propulsion Laboratory (JPL) and implemented in a series of numerically integrated Development Ephemerides (DE), including the currently used DE405. Teph is characterized as a relativistic coordinate time that is nearly equivalent to the IAU's definition of TCB, though Teph is not currently an IAU time standard. Teph is used by the JPL to generate the ephemerides it publishes to support spacecraft navigation and astronomy."@en ; + rdfs:label "Jet Propulsion Laboratory Ephemeris Time Argument"@en ; + skos:altLabel "JPL Ephemeris Time"@en ; + cco:ont00001753 "Teph" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001659 +cco:ont00001659 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Turn Measurement Unit"@en ; + skos:altLabel "Cycle"@en , + "Full Circle"@en , + "Revolution"@en , + "Rotation"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001660 +cco:ont00001660 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:comment "This global main field model provides magnetic field values for any location on Earth, e.g. for navigational purposes (declination) or as a standard for core field subtraction for aeromagnetic surveys. An updated version is adopted by International Association of Geomagnetism and Aeronomy (IAGA) every 5 years)."@en ; + rdfs:label "International Geomagnetic Reference Field"@en ; + cco:ont00001754 "Alken, P., Thébault, E., Beggan, C.D. et al. International Geomagnetic Reference Field: the thirteenth generation. Earth Planets Space 73, 49 (2021). https://doi.org/10.1186/s40623-020-01288-x , https://www.iaga-aiga.org/" . + + +### https://www.commoncoreontologies.org/ont00001661 +cco:ont00001661 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+8"@en ; + skos:altLabel "CTT"@en , + "China Taiwan Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001662 +cco:ont00001662 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Mozambique Metical"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001663 +cco:ont00001663 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Meter Measurement Unit"@en ; + skos:altLabel "m^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001664 +cco:ont00001664 rdf:type owl:NamedIndividual , + cco:ont00000198 ; + rdfs:label "Decibel Measurement Unit"@en ; + cco:ont00001740 "dB" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001665 +cco:ont00001665 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Georgian Lari"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001666 +cco:ont00001666 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment """\"Barycentric Coordinate Time (TCB, from the French Temps-coordonnée barycentrique) is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to orbits of planets, asteroids, comets, and interplanetary spacecraft in the Solar system. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the barycenter of the Solar system: that is, a clock that performs exactly the same movements as the Solar system but is outside the system's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Sun and the rest of the system.\" +From: (https://en.wikipedia.org/wiki/Barycentric_Coordinate_Time)"""@en ; + rdfs:label "Barycentric Coordinate Time"@en ; + cco:ont00001753 "TCB" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001667 +cco:ont00001667 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Minute Measurement Unit"@en ; + cco:ont00001740 "min" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001668 +cco:ont00001668 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Sierra Leone Leone"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001669 +cco:ont00001669 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Gigahertz Measurement Unit"@en ; + skos:altLabel "GHz"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001670 +cco:ont00001670 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Malaysia Ringgit"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001671 +cco:ont00001671 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Azerbaijan Manat"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001672 +cco:ont00001672 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Decimeter Measurement Unit"@en ; + skos:altLabel "dm^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001673 +cco:ont00001673 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Japanese Yen"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001674 +cco:ont00001674 rdf:type owl:NamedIndividual , + cco:ont00000276 ; + rdfs:comment "The Gregorian Calendar was instituted by Pope Gregory XIII via papal bull on 24 February 1582 as a reform of the Julian Calendar to stop the drift of the calendar with respect to the equinoxes and solstices. The Gregorian Calendar is currently the most widely used civil Calendar System in the world and is 13 days ahead of the Julian Calendar Date."@en ; + rdfs:label "Gregorian Calendar"@en ; + skos:definition "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years except Years that are evenly divisible by 100 but not 400 such that there are 97 leap Years every 400 Years and the average length of a Gregorian Year is 365.2425 Days (365 Days 5 Hours 49 Minutes 12 Seconds)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gregorian_calendar&oldid=1062360692"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001675 +cco:ont00001675 rdf:type owl:NamedIndividual , + cco:ont00000940 ; + rdfs:label "Slug Foot Per Second Measurement Unit"@en ; + skos:altLabel "slug ft/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001676 +cco:ont00001676 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Metric Ton Measurement Unit"@en ; + skos:altLabel "tonne"@en ; + cco:ont00001740 "t" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001677 +cco:ont00001677 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Inch Measurement Unit"@en ; + skos:altLabel "in"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001678 +cco:ont00001678 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Decimeter Measurement Unit"@en ; + skos:altLabel "dm^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001679 +cco:ont00001679 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "St Helena Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001680 +cco:ont00001680 rdf:type owl:NamedIndividual , + cco:ont00000074 ; + rdfs:label "Miles Per Second Per Second Measurement Unit"@en ; + skos:altLabel "mi/s/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001681 +cco:ont00001681 rdf:type owl:NamedIndividual , + cco:ont00000374 ; + rdfs:label "Gallon Per Minute Measurement Unit"@en ; + skos:altLabel "gal/min"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001682 +cco:ont00001682 rdf:type owl:NamedIndividual , + cco:ont00000497 ; + rdfs:label "Kilopond Measurement Unit"@en ; + skos:altLabel "Kilogram Force Measurement Unit"@en , + "Kilogram-Force"@en , + "kgf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001683 +cco:ont00001683 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Meter Measurement Unit"@en ; + cco:ont00001738 "meter" ; + cco:ont00001740 "m" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001684 +cco:ont00001684 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Burundi Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001685 +cco:ont00001685 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Second of Arc Measurement Unit"@en ; + skos:altLabel "Arcsecond"@en , + "arcsec"@en , + "as"@en , + "asec"@en ; + cco:ont00001740 "\"" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001686 +cco:ont00001686 rdf:type owl:NamedIndividual , + cco:ont00000374 ; + rdfs:label "Standard Cubic Centimeter Per Minute Measurement Unit"@en ; + skos:altLabel "cm^3/min"@en ; + cco:ont00001753 "sccm" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001687 +cco:ont00001687 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Yard Measurement Unit"@en ; + skos:altLabel "yrd^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001688 +cco:ont00001688 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Sao Tome Principe Dobra"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001689 +cco:ont00001689 rdf:type owl:NamedIndividual , + cco:ont00000229 , + cco:ont00000444 , + cco:ont00000852 ; + rdfs:label "British Thermal Unit Measurement Unit"@en ; + skos:altLabel "BTU"@en , + "Btu"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001690 +cco:ont00001690 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Turkmenistan Manat"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001691 +cco:ont00001691 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-6"@en ; + skos:altLabel "CST"@en , + "Central Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001692 +cco:ont00001692 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment """Unix Time is a Temporal Reference System for describing a point in time, defined as the number of seconds that have elapsed since 00:00:00 Coordinated Universal Time (UTC) Thursday, 1 January 1970 minus the number of leap seconds that have taken place since then. +(See: https://en.wikipedia.org/wiki/Unix_time)"""@en ; + rdfs:label "Unix Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001693 +cco:ont00001693 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+0"@en ; + rdfs:label "Zulu Time Zone"@en ; + cco:ont00001753 "Z" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001694 +cco:ont00001694 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Pounds Per Square Inch Measurement Unit"@en ; + skos:altLabel "psi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001695 +cco:ont00001695 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:comment "UT2 is a variant of Universal Time that smooths UT1 by accounting for both polar motion and variations in Earth's rotation due to seasonal factors, such as changes in vegetation and water or snow distribution."@en ; + rdfs:label "Universal Time 2"@en ; + cco:ont00001753 "UT2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001696 +cco:ont00001696 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Centigram Measurement Unit"@en ; + skos:altLabel "cg"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001697 +cco:ont00001697 rdf:type owl:NamedIndividual , + cco:ont00000074 ; + rdfs:label "Kilometers Per Second Per Second Measurement Unit"@en ; + skos:altLabel "km/s/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001698 +cco:ont00001698 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Long Ton Measurement Unit"@en ; + skos:altLabel "Displacement Ton"@en , + "Gross Ton"@en , + "Imperial Ton"@en , + "Weight Ton"@en , + "ton (UK)"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001699 +cco:ont00001699 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Morocco Dirham"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001700 +cco:ont00001700 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Juliet time is used as an indexical to refer to local time without otherwise specifying the time zone."@en ; + rdfs:label "Juliet Time Zone"@en ; + cco:ont00001753 "J" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001701 +cco:ont00001701 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-3"@en ; + skos:altLabel "AGT"@en , + "Argentina Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001702 +cco:ont00001702 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+5:30"@en ; + skos:altLabel "Indian Standard Time"@en , + "Sri Lanka Standard Time"@en ; + cco:ont00001753 "IST" , + "SLST" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001703 +cco:ont00001703 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Brazilian Real"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001704 +cco:ont00001704 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+3"@en ; + skos:altLabel "EAT"@en , + "Eastern African Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001705 +cco:ont00001705 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Chilean Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001706 +cco:ont00001706 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Acre Measurement Unit"@en ; + skos:altLabel "acre"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001707 +cco:ont00001707 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Month Measurement Unit"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001708 +cco:ont00001708 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Serbian Dinar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001709 +cco:ont00001709 rdf:type owl:NamedIndividual , + cco:ont00000502 ; + rdfs:label "Quartic Meter Measurement Unit"@en ; + cco:ont00001740 "m^4" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001710 +cco:ont00001710 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Danish Krone"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001711 +cco:ont00001711 rdf:type owl:NamedIndividual , + cco:ont00001345 ; + rdfs:label "Dyne Second Measurement Unit"@en ; + skos:altLabel "dyne s"@en , + "dyne second"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001712 +cco:ont00001712 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-5"@en ; + rdfs:label "Romeo Time Zone"@en ; + cco:ont00001753 "R" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001713 +cco:ont00001713 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Millimeter Measurement Unit"@en ; + skos:altLabel "mm^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001714 +cco:ont00001714 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Foot Measurement Unit"@en ; + skos:altLabel "ft"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001715 +cco:ont00001715 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Terahertz Measurement Unit"@en ; + skos:altLabel "THz"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001716 +cco:ont00001716 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:comment "UT1 is a derivation of UT0 that takes into account distortions caused by polar motion and is proportional to the rotation angle of the Earth with respect to distant quasars, specifically, the International Celestial Reference Frame (ICRF). UT1 is currently the most widely used variant of Universal Time and has the same value everywhere on Earth."@en ; + rdfs:label "Universal Time 1"@en ; + skos:altLabel "Astronomical Time"@en ; + cco:ont00001753 "UT1" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001717 +cco:ont00001717 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Croatia Kuna"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001718 +cco:ont00001718 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Honduras Lempira"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001719 +cco:ont00001719 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Kyrgyzstan Som"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001720 +cco:ont00001720 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Guatemala Quetzal"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001721 +cco:ont00001721 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Libyan Dinar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001722 +cco:ont00001722 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Bhutan Ngultrum"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001723 +cco:ont00001723 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+4"@en ; + rdfs:label "Delta Time Zone"@en ; + cco:ont00001753 "D" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001724 +cco:ont00001724 rdf:type owl:NamedIndividual , + cco:ont00000844 ; + rdfs:label "Degree Fahrenheit Measurement Unit"@en ; + skos:altLabel "°F"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001725 +cco:ont00001725 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Iceland Krona"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001726 +cco:ont00001726 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Norwegian Krone"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001727 +cco:ont00001727 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+10"@en ; + rdfs:label "Kilo Time Zone"@en ; + cco:ont00001753 "K" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001728 +cco:ont00001728 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Pound Measurement Unit"@en ; + skos:altLabel "lb"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001729 +cco:ont00001729 rdf:type owl:NamedIndividual , + cco:ont00001004 ; + rdfs:label "Volt Ampere Measurement Unit"@en ; + skos:altLabel "VA"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001730 +cco:ont00001730 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Hertz Measurement Unit"@en ; + skos:altLabel "cycles per second"@en ; + cco:ont00001738 "hertz" ; + cco:ont00001740 "Hz" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001731 +cco:ont00001731 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Jamaican Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001732 +cco:ont00001732 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+3"@en ; + rdfs:label "Charlie Time Zone"@en ; + cco:ont00001753 "C" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001733 +cco:ont00001733 rdf:type owl:NamedIndividual , + cco:ont00001307 ; + rdfs:label "Slug Per Second Measurement Unit"@en ; + skos:altLabel "slug/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001734 +cco:ont00001734 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Australian Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +################################################################# +# General axioms +################################################################# + +[ rdf:type owl:AllDisjointClasses ; + owl:members ( obo:BFO_0000004 + obo:BFO_0000020 + obo:BFO_0000031 + ) +] . + + +[ rdf:type owl:AllDisjointClasses ; + owl:members ( obo:BFO_0000006 + obo:BFO_0000029 + obo:BFO_0000140 + ) +] . + + +[ rdf:type owl:AllDisjointClasses ; + owl:members ( obo:BFO_0000008 + obo:BFO_0000011 + obo:BFO_0000015 + obo:BFO_0000035 + ) +] . + + +[ rdf:type owl:AllDisjointClasses ; + owl:members ( obo:BFO_0000009 + obo:BFO_0000018 + obo:BFO_0000026 + obo:BFO_0000028 + ) +] . + + +[ rdf:type owl:AllDisjointClasses ; + owl:members ( obo:BFO_0000142 + obo:BFO_0000146 + obo:BFO_0000147 + ) +] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/CurrencyUnitOntology.ttl b/src/cco-iris/CurrencyUnitOntology.ttl new file mode 100644 index 00000000..0a34adcb --- /dev/null +++ b/src/cco-iris/CurrencyUnitOntology.ttl @@ -0,0 +1,951 @@ +@prefix : . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent currencies that are issued and used by countries."@en ; + rdfs:label "Currency Unit Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 +cco:ont00000120 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000518 +cco:ont00000518 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Currency"@en ; + skos:definition "A Measurement Unit used in measurements of financial values."@en ; + skos:example "U.S. Dollar, Euro, Yuan, South African Rand" ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001385 +cco:ont00001385 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Haiti Gourde"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001386 +cco:ont00001386 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Yemeni Rial"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001387 +cco:ont00001387 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Mauritania Ouguiya"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001389 +cco:ont00001389 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Kenyan Shilling"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001394 +cco:ont00001394 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Papua New Guinea Kina"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001396 +cco:ont00001396 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Viet Nam Dong"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001399 +cco:ont00001399 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Ghana Cedi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001400 +cco:ont00001400 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Sri Lanka Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001401 +cco:ont00001401 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "South Africa Rand"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001404 +cco:ont00001404 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Afghanistan Afghani"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001409 +cco:ont00001409 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Singapore Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001410 +cco:ont00001410 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Guyana Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001415 +cco:ont00001415 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Swiss Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001420 +cco:ont00001420 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Dominican Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001426 +cco:ont00001426 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Chinese Renminbi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001427 +cco:ont00001427 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Canadian Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001435 +cco:ont00001435 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Colombian Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001441 +cco:ont00001441 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Rwanda Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001443 +cco:ont00001443 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Albania Lek"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001447 +cco:ont00001447 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "CFP Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001448 +cco:ont00001448 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Malawi Kwacha"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001449 +cco:ont00001449 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Czech Koruna"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001452 +cco:ont00001452 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Indian Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001455 +cco:ont00001455 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Bolivia Boliviano"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001458 +cco:ont00001458 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Costa Rica Colon"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001460 +cco:ont00001460 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Mauritius Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001464 +cco:ont00001464 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Uzbekistan Sum"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001465 +cco:ont00001465 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Namibia Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001473 +cco:ont00001473 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Euro"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001479 +cco:ont00001479 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Angolan Kwanza"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001481 +cco:ont00001481 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Macao Pataca"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001482 +cco:ont00001482 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Algerian Dinar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001484 +cco:ont00001484 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Bangladesh Taka"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001485 +cco:ont00001485 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Surinamese Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001487 +cco:ont00001487 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Peru Nuevo Sol"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001490 +cco:ont00001490 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Bulgarian Lev"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001492 +cco:ont00001492 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Lebanese Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001497 +cco:ont00001497 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Kuwaiti Dinar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001498 +cco:ont00001498 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Fiji Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001501 +cco:ont00001501 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Tanzania Shilling"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001503 +cco:ont00001503 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Hungary Forint"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001505 +cco:ont00001505 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Uruguay Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001507 +cco:ont00001507 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Lesotho Loti"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001508 +cco:ont00001508 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Brunei Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001509 +cco:ont00001509 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Belarussian Ruble"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001510 +cco:ont00001510 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Tonga Pa anga"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001512 +cco:ont00001512 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "South Sudanese Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001513 +cco:ont00001513 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Mexican Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001514 +cco:ont00001514 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Laos Kip"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001515 +cco:ont00001515 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Liberian Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001517 +cco:ont00001517 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Nicaragua Cordoba Oro"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001518 +cco:ont00001518 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Madagascar Malagasy Ariary"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001519 +cco:ont00001519 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Turkish Lira"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001520 +cco:ont00001520 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Zambia Kwacha"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001521 +cco:ont00001521 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Philippine Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001531 +cco:ont00001531 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Botswana Pula"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001532 +cco:ont00001532 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Egyptian Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001535 +cco:ont00001535 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Sudanese Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001539 +cco:ont00001539 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Tajikistan Somoni"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001540 +cco:ont00001540 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Israel Shekel"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001542 +cco:ont00001542 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Paraguay Guarani"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001545 +cco:ont00001545 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Swaziland Lilangeni"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001546 +cco:ont00001546 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Democratic Republic Of Congo Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001547 +cco:ont00001547 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Syrian Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001556 +cco:ont00001556 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Samoa Tala"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001558 +cco:ont00001558 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "New Zealand Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001561 +cco:ont00001561 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Uganda Shilling"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001562 +cco:ont00001562 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Cambodian Riel"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001575 +cco:ont00001575 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "CFA Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001577 +cco:ont00001577 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Ukraine Hryvnia"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001578 +cco:ont00001578 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Nepalese Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001586 +cco:ont00001586 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Poland Zloty"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001592 +cco:ont00001592 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Kazakhstan Tenge"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001593 +cco:ont00001593 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Ethiopian Birr"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001594 +cco:ont00001594 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "North Korean Won"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001595 +cco:ont00001595 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Swedish Krona"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001600 +cco:ont00001600 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Guinean Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001601 +cco:ont00001601 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "United Kingdom Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001605 +cco:ont00001605 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Argentine Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001610 +cco:ont00001610 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Thai Baht"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001614 +cco:ont00001614 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Moldovan Leu"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001616 +cco:ont00001616 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Gambian Dalasi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001617 +cco:ont00001617 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Nigeria Naira"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001618 +cco:ont00001618 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "United States Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001619 +cco:ont00001619 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Solomon Island Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001620 +cco:ont00001620 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Macedonian Denar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001621 +cco:ont00001621 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Pakistani Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001622 +cco:ont00001622 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Armenian Dram"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001623 +cco:ont00001623 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Romanian Leu"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001627 +cco:ont00001627 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "HongKong Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001631 +cco:ont00001631 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Seychelles Rupee"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001632 +cco:ont00001632 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "South Korean Won"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001633 +cco:ont00001633 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Vanuatu Vatu"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001635 +cco:ont00001635 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Bosnia And Herzegovina Convertible Mark"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001638 +cco:ont00001638 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Comoros Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001639 +cco:ont00001639 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Indonesia Rupiah"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001640 +cco:ont00001640 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Myanmar Kyat"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001649 +cco:ont00001649 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Mongolia Tugrik"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001650 +cco:ont00001650 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Tunisian Dinar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001652 +cco:ont00001652 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Russian Rouble"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001654 +cco:ont00001654 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Iranian Rial"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001655 +cco:ont00001655 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Cape Verde Escudo"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001657 +cco:ont00001657 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Trinidad and Tobago Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001662 +cco:ont00001662 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Mozambique Metical"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001665 +cco:ont00001665 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Georgian Lari"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001668 +cco:ont00001668 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Sierra Leone Leone"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001670 +cco:ont00001670 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Malaysia Ringgit"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001671 +cco:ont00001671 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Azerbaijan Manat"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001673 +cco:ont00001673 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Japanese Yen"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001679 +cco:ont00001679 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "St Helena Pound"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001684 +cco:ont00001684 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Burundi Franc"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001688 +cco:ont00001688 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Sao Tome Principe Dobra"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001690 +cco:ont00001690 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Turkmenistan Manat"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001699 +cco:ont00001699 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Morocco Dirham"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001703 +cco:ont00001703 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Brazilian Real"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001705 +cco:ont00001705 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Chilean Peso"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001708 +cco:ont00001708 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Serbian Dinar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001710 +cco:ont00001710 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Danish Krone"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001717 +cco:ont00001717 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Croatia Kuna"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001718 +cco:ont00001718 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Honduras Lempira"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001719 +cco:ont00001719 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Kyrgyzstan Som"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001720 +cco:ont00001720 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Guatemala Quetzal"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001721 +cco:ont00001721 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Libyan Dinar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001722 +cco:ont00001722 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Bhutan Ngultrum"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001725 +cco:ont00001725 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Iceland Krona"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001726 +cco:ont00001726 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Norwegian Krone"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001731 +cco:ont00001731 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Jamaican Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001734 +cco:ont00001734 rdf:type owl:NamedIndividual , + cco:ont00000518 ; + rdfs:label "Australian Dollar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/EventOntology.ttl b/src/cco-iris/EventOntology.ttl new file mode 100644 index 00000000..983be917 --- /dev/null +++ b/src/cco-iris/EventOntology.ttl @@ -0,0 +1,3184 @@ +@prefix : . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent processual entities, especially those performed by agents, that occur within multiple domains."@en ; + rdfs:label "Event Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 +cco:ont00001753 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 +cco:ont00001777 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001803 +cco:ont00001803 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001819 +cco:ont00001819 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001857 +cco:ont00001857 rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001936 +cco:ont00001936 rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 +obo:BFO_0000144 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000003 ; + rdfs:label "Process Profile"@en ; + skos:definition "An occurrent that is an occurrent part of some process by virtue of the rate, or pattern, or amplitude of change in an attribute of one or more participants of said process."@en ; + skos:example "On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels; One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.; The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."@en ; + skos:scopeNote "b process_profile_of c holds when b proper_occurrent_part_of c& there is some proper_occurrent_part d of c which has no parts in common with b & is mutually dependent on b& is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000004 +cco:ont00000004 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Change"@en ; + skos:definition "A Process in which some independent continuant endures and 1) one or more of the dependent entities it bears increase or decrease in intensity, 2) the entity begins to bear some dependent entity or 3) the entity ceases to bear some dependent entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000005 +cco:ont00000005 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Act"@en ; + skos:definition "A Process in which at least one Agent plays a causative role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000006 +cco:ont00000006 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Upper Midrange Frequency"@en ; + skos:definition "A Sonic Frequency that is between 2 and 4 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000007 +cco:ont00000007 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Natural Process"@en ; + skos:definition "A Process existing in or produced by nature; rather than by the intent of human beings."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/natural+process" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000008 +cco:ont00000008 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001047 ; + rdfs:label "Sound Frequency"@en ; + skos:definition "A Frequency that is the rate of Oscillations per second of a Sound Wave."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000011 +cco:ont00000011 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000135 ; + rdfs:label "Nominal Stasis"@en ; + skos:altLabel "Nominal"@en ; + skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has a level of intensity or functionality that falls within the designed, expected, or acceptable range such that the Independent Continuant is of normal value, usefulness, or functionality."@en ; + cco:ont00001754 "https://en.oxforddictionaries.com/definition/nominal (Definition 6)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000013 +cco:ont00000013 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000554 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000101 ; + owl:someValuesFrom obo:BFO_0000031 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Generically Dependent Continuant"@en ; + skos:definition "A Gain of Dependent Continuant wherein some Independent Continuant becomes the carrier of some Generically Dependent Continuant."@en ; + skos:example "A Person forms a Plan, A Person is initiated into a Religion, A photgraphic image is produced." ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000016 +cco:ont00000016 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001286 ; + rdfs:label "Triangular Waveform"@en ; + skos:definition "A Waveform that is characterized by a triangular shape due to the continuous linear zig-zag transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000024 +cco:ont00000024 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000133 ; + rdfs:label "Act of Advising"@en ; + skos:definition "An Act of Directive Communication performed by providing advice or counsel to another agent."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/advising" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000027 +cco:ont00000027 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Mailing"@en ; + skos:altLabel "Act of Mailing"@en ; + skos:definition "An Act of Communication by Media in which information and tangible objects, usually written documents, are delivered to destinations around the world."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000033 +cco:ont00000033 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000854 ; + rdfs:label "Decrease of Role"@en ; + skos:definition "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Role that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000035 +cco:ont00000035 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000490 ; + rdfs:label "Soft X-ray Frequency"@en ; + skos:definition "An X-Ray Frequency that is between 30 petahertz and 3 exahertz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000037 +cco:ont00000037 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Observation"@en ; + skos:definition "A Planned Act of acquiring information from a source via the use of one or more senses."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Observation&oldid=1062502087"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000051 +cco:ont00000051 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000908 ; + rdfs:comment "An Act of Construction typically involves the production of only one or a limited number of goods, such as in the construction of an airport or a community of condominiums."@en ; + rdfs:label "Act of Construction"@en ; + skos:definition "An Act of Artifact Processing wherein Artifacts are built on site as prescribed by some contract."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000065 +cco:ont00000065 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000357 ; + rdfs:label "Act of Location Change"@en ; + skos:definition "An Act of Motion in which the location of some Object is changed by some Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000078 +cco:ont00000078 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000345 ; + rdfs:comment "Although the boundary between Act of Estimation and guessing is vague, estimation can be partially distinguished from guessing in that every Act of Estimation has as input some relevant information; whereas an act of guessing can occur sans information (or at least sans pertinent information). For example, if Mr. Green were asked how many blades of grass are in his lawn, he could simply choose a number (i.e. he could guess) or he could estimate the number by counting how many baldes of grass are in 1 square foot of his lawn, measuring the square footage of his lawn, and then multiplying these values to arrive at a number. Hence, many estimates may be loosely considered to be educated guesses."@en , + "Note that, while every Act of Measuring arguably involves some degree of estimation (for example, a measuring instrument rounding to the nearest ten-thousandth or an Agent reading an analog display), it would be a mistake to classify all Acts of Measuring as Acts of Estimation. This holds even for cases (e.g. census taking) in which sofisticated estimations are often more accurate than other means of measuring (e.g. enumeration)."@en ; + rdfs:label "Act of Estimation"@en ; + skos:altLabel "Act of Approximation"@en ; + skos:definition "An Act of Measuring that involves the comparison of a measurement of a similar Entity or of a portion of the Entity being estimated to produce an approximated measurement of the target Entity."@en ; + skos:example "measuring how much time a train will add to your commute by measuring how long it takes for 10 train cars to pass a given point and then combining this information with an estimate of how many train cars are in a typical train based on your past experience" , + "measuring the amount of time required to do a task based on how long it took to do a similar task in the past" , + "measuring the height of a building by counting the number of floors and multiplying it by the height of an average floor in an average building" , + "measuring the property value of a house based on its square footage and the average cost per square foot of other houses in the area" ; + skos:scopeNote "In all cases, the Agent in an Act of Estimation either lacks complete information, lacks access to the relevant information, or chooses not to use the complete information (perhaps to save money or time) about the thing being estimated; instead, the Agent uses some or all of the relevant information that the Agent does have as a basis for arriving at the estimate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000079 +cco:ont00000079 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001327 ; + rdfs:label "Act of Social Movement"@en ; + skos:definition "A Social Act composed of a series of performances, displays and campaigns directed at implementing, resisting or undoing a change in society."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Social_movement&oldid=1062720561"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000083 +cco:ont00000083 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000035 ; + rdfs:label "Process Ending"@en ; + skos:definition "A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the ending instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000099 +cco:ont00000099 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000062 ; + owl:someValuesFrom cco:ont00000765 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000752 + ] ; + rdfs:label "Wave Process"@en ; + skos:definition "A Natural Process that involves Oscillation accompanied by a transfer of energy that travels through a portion of matter or spatial region."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wave&oldid=1062648180"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000100 +cco:ont00000100 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001132 ; + rdfs:label "Stasis of Partially Mission Capable"@en ; + skos:definition "A Stasis of Mission Capability during which the participating Continuant is capable of performing some but not all of its primary functions for the specified Mission."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000106 +cco:ont00000106 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001213 ; + rdfs:comment "An End of Life Stasis (EoL) is distinguished from a Stasis of Partially Mission Capable or Stasis of Non-Mission Capable in that EoL is more inclusive such that the participating Artifact may be either Partially or Non-Mission Capable. Additionally, EoL applies only to Artifacts and is typically determined in relation to its original mission and designed primary functions. In contrast, an Artifact's level of Mission Capability depends on the requirements of the mission under consideration such that a given Artifact may simultaneously be Fully Mission Capable for mission1, Partially Mission Capable for mission2, and Non-Mission Capable for mission3."@en ; + rdfs:label "End of Life Stasis"@en ; + skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when the participating Artifact is no longer capable of realizing all of its designed primary Artifact Functions."@en ; + cco:ont00001753 "EOL" , + "EoL" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000107 +cco:ont00000107 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001048 ; + rdfs:label "Increase of Generically Dependent Continuant"@en ; + skos:definition "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Generically Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000109 +cco:ont00000109 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Military Force"@en ; + skos:definition "A Planned Act of employing a Military Force to achieve some desired result."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000110 +cco:ont00000110 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Mechanical Process"@en ; + skos:definition "A Process that is the realization of some Disposition of an Artifact"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000115 +cco:ont00000115 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000246 ; + rdfs:label "Stasis of Disposition"@en ; + skos:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Disposition that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000121 +cco:ont00000121 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Conducting Mass Media Interview"@en ; + skos:definition "An Act of Mass Media Communication involving a conversation between a reporter and a person of public interest, used as a basis of a broadcast or publication."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000123 +cco:ont00000123 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:comment "Examples: apologizing, condoling, congratulating, greeting, thanking, accepting (acknowledging an acknowledgment)"@en ; + rdfs:label "Act of Expressive Communication"@en ; + skos:definition "An Act of Communication in which an Agent expresses their attitudes or emotions towards some entity."@en ; + cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000131 +cco:ont00000131 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001214 ; + rdfs:label "Increase of Quality"@en ; + skos:definition "An Increase of Specifically Dependent Continuant in which some Indpendent Continuant has an increase of some Quality that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000133 +cco:ont00000133 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:comment "Examples: advising, admonishing, asking, begging, dismissing, excusing, forbidding, instructing, ordering, permitting, requesting, requiring, suggesting, urging, warning"@en ; + rdfs:label "Act of Directive Communication"@en ; + skos:definition "An Act of Communication that is intended to cause the hearer to take a particular action."@en ; + cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000135 +cco:ont00000135 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000819 ; + rdfs:label "Stasis of Specifically Dependent Continuant"@en ; + skos:definition "A Stasis in which some Independent Continuant bears some Specifically Dependent Continuant that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000137 +cco:ont00000137 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Financial Deposit"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Depositor) to another Agent to create a liability to be repaid to the Depositor through an Act of Financial Withdrawal."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Deposit_(bank)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000138 +cco:ont00000138 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000503 ; + rdfs:label "Maximum Power"@en ; + skos:definition "A Power that is characterized by the maximum rate of Work, or Energy consumed, done in a given time period."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000142 +cco:ont00000142 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Government"@en ; + skos:definition "A Planned Act that is initiated or supported by some Geopolitical Entity and enforced by some Government Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000144 +cco:ont00000144 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Meeting"@en ; + skos:definition "An Act of Association wherein two or more Persons assemble for some common purpose."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=meet (Sense Key: meet%2:41:00, get together%2:41:00)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000148 +cco:ont00000148 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000368 ; + rdfs:label "Clockwise Rotational Motion"@en ; + skos:altLabel "CW Rotational Motion"@en , + "Clockwise Rotation"@en ; + skos:definition "A Rotational Motion in which the direction of rotation is toward the right as seen relative to the designated side of the plane of rotation."@en ; + skos:example "the axial rotation of the Earth as seen from above the South Pole" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000149 +cco:ont00000149 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Instant Messaging"@en ; + skos:altLabel "Act of IMing"@en , + "Act of Instant Messaging"@en ; + skos:definition "An Act of Communication by Media in which real-time direct text-based communication occurs between two or more people using personal computers or other devices, along with shared Instant Messaging Client Software conveyed over a network, such as the Internet."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Instant_messaging&oldid=1062873579"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000150 +cco:ont00000150 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:label "Radio Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 3 kHz and 300 GHz."@en ; + cco:ont00001753 "RF" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_wave&oldid=1062110903"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000151 +cco:ont00000151 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000379 ; + rdfs:label "Act of Reporting"@en ; + skos:definition "An Act of Representative Communication performed by giving a detailed account or statement."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/report" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000155 +cco:ont00000155 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001337 ; + rdfs:label "Near Infrared Light Frequency"@en ; + skos:definition "An Infrared Light Frequency that is between 214 and 400 terahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000165 +cco:ont00000165 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Criminal Act"@en ; + skos:definition "A Planned Act committed in violation of rules or laws for which some governing authority (via mechanisms such as legal systems) can prescribe a conviction."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Crime&oldid=1062237249"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000166 +cco:ont00000166 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000099 ; + rdfs:label "Wave Cycle"@en ; + skos:definition "A Wave Process that consists of a portion of a Wave Process that begins at an arbitrary point of the Wave Process and ends at the next point when the pattern of the Wave Process begins to repeat."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000168 +cco:ont00000168 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Interpersonal Relationship"@en ; + skos:definition "An Act of Association between two or more Persons that may range from fleeting to enduring."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Interpersonal_relationship&oldid=1060991304"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000169 +cco:ont00000169 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 10–1 m"@en ; + rdfs:label "Very High Frequency"@en ; + skos:altLabel "ITU Band Number 8"@en ; + skos:definition "A Radio Frequency that is between 30 and 300 MHz."@en ; + cco:ont00001753 "VHF" ; + cco:ont00001754 "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000179 +cco:ont00000179 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000570 ; + rdfs:comment "More generally, Thrust is the propulsive Force of a Rocket."@en ; + rdfs:label "Thrust"@en ; + skos:definition "A Force that is equal in magnitude to but in the opposite direction of an exerted Force and which is used to describe the forward Force of a Jet or Rocket Engine in reaction to the Acceleration of its Reaction Mass in the opposite direction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000182 +cco:ont00000182 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000123 ; + rdfs:label "Act of Thanking"@en ; + skos:definition "An Act of Expressive Communication performed by expressing gratitude."@en ; + cco:ont00001754 " http://www.merriam-webster.com/dictionary/thanks" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000191 +cco:ont00000191 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001147 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001803 ; + owl:someValuesFrom cco:ont00000920 + ] ; + rdfs:label "Act of Homicide"@en ; + skos:definition "An Act of Violence which causes the unlawful killing of another person."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000197 +cco:ont00000197 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000035 ; + rdfs:label "Process Beginning"@en ; + skos:definition "A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the starting instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000200 +cco:ont00000200 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000890 ; + rdfs:label "Act of Pilgrimage"@en ; + skos:definition "An Act of Travel to a location of importance to a person's beliefs and faith."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pilgrimage&oldid=1056524204"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000201 +cco:ont00000201 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Change of Residence"@en ; + skos:definition "An Act of Location Change involving one or more Persons moving from one place of residence to another."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000202 +cco:ont00000202 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001075 ; + rdfs:label "Act of Terrorist Training Instruction"@en ; + skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Terrorist Organization by imparting knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature to an Agent either directly or indirectly through some communication medium."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000208 +cco:ont00000208 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000123 ; + rdfs:label "Act of Congratulating"@en ; + skos:definition "An Act of Expressive Communication performed by expressing vicarious pleasure to a person on the occasion of their success or good fortune."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/congratulate" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000209 +cco:ont00000209 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000313 ; + rdfs:label "Sound Wavelength"@en ; + skos:definition "A Wavelength that is the distance a Sound Wave traverses during one Wave Cycle."@en ; + cco:ont00001754 "http://www.physicsclassroom.com/Class/waves/u10l2b.cfm" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000222 +cco:ont00000222 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Presence Frequency"@en ; + skos:definition "A Sonic Frequency that is between 4 and 6 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000228 +cco:ont00000228 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000005 ; + rdfs:label "Planned Act"@en ; + skos:altLabel "Intentional Act"@en ; + skos:definition "An Act in which at least one Agent plays a causative role and which is prescribed by some Directive Information Content Entity held by at least one of the Agents."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000234 +cco:ont00000234 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Training"@en ; + skos:definition "A Planned Act in which knowledge, skills or values are imparted from one or more Agents to at least one other Agent."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000235 +cco:ont00000235 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000687 ; + rdfs:label "Act of Vocational Training Acquisition"@en ; + skos:definition "An Act of Training Acquisition performed by an Agent by acquiring skills required for a specific occupation in industry, agriculture or trade from an Agent or communication medium that realizes a capacity derived from its affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000237 +cco:ont00000237 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000687 ; + rdfs:label "Act of Terrorist Training Acquisition"@en ; + skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature from an Agent or communication medium that realizes a capacity derived from its affiliation with a Terrorist Organization."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000240 +cco:ont00000240 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001162 ; + rdfs:label "Act of Oath Taking"@en ; + skos:definition "An Act of Commissive Communication performed by stating or promising, usually calling upon something or someone that the oath maker considers sacred."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Oath&oldid=1052326917"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000246 +cco:ont00000246 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000135 ; + rdfs:label "Stasis of Realizable Entity"@en ; + skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Realizable Entity that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000250 +cco:ont00000250 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000865 ; + rdfs:label "Loss of Realizable Entity"@en ; + skos:definition "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Realizable Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000260 +cco:ont00000260 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000675 ; + rdfs:label "Muzzle Blast"@en ; + skos:definition "A Sound Wave Process that is caused by a projectile being pushed from the barrel of a firearm by an explosive charge."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000261 +cco:ont00000261 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:comment """Currently gamma radiation is distinguished from x-rays by their source--either inside or outside of the nucleus--rather than by frequency, energy, and wavelength. +https://en.wikipedia.org/wiki/Gamma_ray#Naming_conventions_and_overlap_in_terminology"""@en ; + rdfs:label "Gamma Ray Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is above 30 exahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gamma_ray&oldid=1062115897"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000265 +cco:ont00000265 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001327 ; + rdfs:label "Election"@en ; + skos:altLabel "Act of Political Election"@en ; + skos:definition "A Social Act by which a population chooses an individual to hold public office."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Election&oldid=1063238552"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000272 +cco:ont00000272 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Combustion"@en ; + skos:altLabel "Burning Process"@en , + "Combustion Process"@en ; + skos:definition "A Natural Process in which a Portion of Fuel or other Material Entity is burned."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000278 +cco:ont00000278 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:comment "The SI unit of measure for Momentum is Newton seconds (N s)."@en ; + rdfs:label "Momentum"@en ; + skos:definition "A Process Profile of an object in Motion that is the product of its Mass and Velocity with respect to a frame of reference."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000286 +cco:ont00000286 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000100 ; + rdfs:label "Stasis of Partially Mission Capable Maintenance"@en ; + skos:definition "A Stasis of Partially Mission Capable during which the participating Continuant is not capable of performing some of its primary functions for the specified Mission due to participating in an Act Of Maintenance."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000290 +cco:ont00000290 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000726 ; + rdfs:label "Decrease of Specifically Dependent Continuant"@en ; + skos:definition "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in some Specifically Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000291 +cco:ont00000291 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Decoy Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Decoy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000296 +cco:ont00000296 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000763 ; + rdfs:label "Angular Velocity"@en ; + skos:altLabel "Rotational Velocity"@en ; + skos:definition "A Velocity that is characterized by both the angular Speed of an object and the Axis about which the object is Rotating."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Angular_velocity&oldid=1060081663"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000305 +cco:ont00000305 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000380 ; + rdfs:label "Sound Pressure"@en ; + skos:altLabel "Acoustic Pressure"@en ; + skos:definition "A Pressure that is caused by a Sound Wave and is a local deviation from the ambient Pressure."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000308 +cco:ont00000308 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001226 ; + rdfs:label "Act of Military Service"@en ; + skos:definition "An Act of Employment wherein a Person serves as a member of a Military Force, whether voluntarily or by conscription."@en ; + cco:ont00001754 "http://www.collinsdictionary.com/dictionary/english/military-service" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000312 +cco:ont00000312 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Propulsion Process"@en ; + skos:definition "A Natural Process in which one or more Forces are generated and applied to a participating Object such that the Object is set in Motion or has the direction or magnitude of its Motion altered."@en ; + skos:example "a twin-engine turboprop plane rotating both of its propellers against a portion of atmosphere to propel the plane forward" , + "an apple falling to the ground under the power of Earth's gravitational force" , + "burning a portion of fuel to produce exhaust that is ejected through a jet nozzle to propel a rocket and its payload" , + "heat from a fire causing ashes to rise into the sky" , + "launching a water balloon using a sling shot" , + "the wind blowing leaves across a lawn" , + "turning a paddle wheel against a portion of water to propel the paddle boat forward" ; + skos:scopeNote "In each case, a Propulsion Process minimally involves the Object being propelled, a Reaction Mass (e.g. a portion of water, atmosphere, exhaust, etc.), and the Force(s) acting between these two entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000313 +cco:ont00000313 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000752 ; + rdfs:comment "Assuming a non-dispersive media, the Wavelength will be the inverse of the Frequency."@en ; + rdfs:label "Wavelength"@en ; + skos:definition "A Wave Process Profile that is the distance the Wave Process traverses during one Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000320 +cco:ont00000320 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001251 ; + rdfs:label "Act of Reconnaissance"@en ; + skos:definition "An Act of Intelligence Gathering used to determine an Agent's disposition and intention; the composition and capabilities of Equipment and Facilities, and the surrounding landforms and weather conditions."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reconnaissance&oldid=1038843823"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000322 +cco:ont00000322 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Funding"@en ; + skos:definition "An Act of Financial Instrument Use in which an Agent provides a sum of money to another Agent for a particular purpose."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000335 +cco:ont00000335 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000819 ; + rdfs:label "Stasis of Generically Dependent Continuant"@en ; + skos:definition "A Stasis in which some Independent Continuant bears some Generically Dependent Continuant that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000345 +cco:ont00000345 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Measuring"@en ; + skos:definition "A Planned Act that involves determining the extent, dimensions, quanity, or quality of an Entity relative to some standard."@en ; + skos:example "putting an object on a scale to measure its weight in kilograms" , + "rating Hollywood movies on a 1 to 5 star scale" , + "using a tape measure to determine the height and width of a doorway in inches" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000351 +cco:ont00000351 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000133 ; + rdfs:label "Act of Commanding"@en ; + skos:definition "An Act of Directive Communication that exercises authoritative control or power over another agent's actions."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=commanding (Edited 08-22-2016)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000354 +cco:ont00000354 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000379 ; + rdfs:label "Act of Testifying"@en ; + skos:definition "An Act of Representative Communication performed by stating one's personal knowledge or belief."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/testify" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000356 +cco:ont00000356 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Publishing Mass Media Article"@en ; + skos:definition "An Act of Mass Media Communication involving the preparation and public issuance of a non-fictional essay, especially one included with others in a newspaper, magazine, journal, etc."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000357 +cco:ont00000357 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Motion"@en ; + skos:definition "A Planned Act by which an Agent causes the position or location of some Object to change."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/motion" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000360 +cco:ont00000360 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001289 ; + rdfs:label "Wounded Stasis"@en ; + skos:altLabel "Wounded"@en ; + skos:definition "A Damaged Stasis in which a Person or other organism is the bearer of a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to an injuring event."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000361 +cco:ont00000361 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001356 ; + rdfs:label "Increase of Function"@en ; + skos:definition "An Increase of Disposition in which some Independent Continuant has an increase of some Function that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000366 +cco:ont00000366 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Information Processing"@en ; + skos:definition "A Planned Act in which one or more input Information Content Entities are received, manipulated, transferred, or stored by an Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000367 +cco:ont00000367 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001075 ; + rdfs:label "Act of Military Training Instruction"@en ; + skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Military Organization by imparting knowledge of the tactics, techniques, and/or strategies of Military Operations to an Agent either directly or indirectly through some communication medium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000368 +cco:ont00000368 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001133 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000296 + ] ; + rdfs:label "Rotational Motion"@en ; + skos:altLabel "Rotation"@en ; + skos:definition "A Motion Process in which an Object moves in a Circular or Elliptical Path around an Axis of Rotation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rotation&oldid=1055998344"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000370 +cco:ont00000370 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000123 ; + rdfs:label "Act of Condoling"@en ; + skos:definition "An Act of Expressive Communication performed by expressing sympathy or sorrow."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/condoling" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000371 +cco:ont00000371 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:comment "An Act of Prediction may involve the use of some or no relevant information. An Act of Prediction that utilizes relevant information may also be (or at least involve) an Act of Estimation. Hence, these two classes are not disjoint. Furthermore, neither class subsumes the other since estimates can be made about existing entities and not all predictions produce measurements (e.g. predicting that it will rain tomorrow)."@en ; + rdfs:label "Act of Prediction"@en ; + skos:definition "A Planned Act that involves the generation of a Predictive Information Content entity that is intended to describe an uncertain possible future event, value, entity, or attribute of an entity."@en ; + skos:example "a chess master predicting the next 8 moves his opponent will make" , + "predicting that a particular stock will double in value over the next fiscal quarter" , + "using sample exit polls data to predict the winners of an election" ; + skos:scopeNote "Predictions can only be made about things that are not yet the case (i.e. future things) and are further restricted to being about things that do not have a probability of either 1 (necessary) or 0 (impossible). For example, assuming that no organism is immortal, one cannot predict of a given organism that it will eventually die; however, one may predict uncertain things about the organism's eventual death, such as its precise cause or time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000379 +cco:ont00000379 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:comment "Examples: affirming, alleging, announcing, answering, attributing, claiming, classifying, concurring, confirming, conjecturing, denying, disagreeing, disclosing, disputing, identifying, informing, insisting, predicting, ranking, reporting, stating, stipulating"@en ; + rdfs:label "Act of Representative Communication"@en ; + skos:definition "An Act of Communication that commits a speaker to the truth of the expressed proposition."@en ; + cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000380 +cco:ont00000380 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000570 ; + rdfs:label "Pressure"@en ; + skos:definition "A Force that is applied perpendicular to the surface of an Object per unit area over which that Force is distributed."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000384 +cco:ont00000384 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000789 ; + rdfs:label "Rectilinear Motion"@en ; + skos:altLabel "Linear Motion"@en ; + skos:definition "A Translational Motion process in which an Object moves along a straight path."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000386 +cco:ont00000386 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:comment "Essentially, webcasting is “broadcasting” over the Internet."@en ; + rdfs:label "Webcast"@en ; + skos:altLabel "Act of Webcasting"@en ; + skos:definition "An Act of Communciation by Media transmitted to an audience over the Internet using streaming media technology to distribute a single content source that may be distributed live or on demand."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Webcast&oldid=1062685084"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000389 +cco:ont00000389 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001334 ; + rdfs:label "Act of Buying"@en ; + skos:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Buyer) to acquire ownership of a good from another Agent (the Seller)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000391 +cco:ont00000391 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:comment "The corresponding Wavelength range is 1–0.1 mm"@en ; + rdfs:label "Tremendously High Frequency"@en ; + skos:altLabel "ITU Band Number 12"@en , + "Submillimeter Band Frequency"@en , + "Terahertz Radiation Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 300 GHz and 3 THz."@en ; + cco:ont00001753 "THF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000395 +cco:ont00000395 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000554 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000020 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Specifically Dependent Continuant"@en ; + skos:definition "A Gain of Dependent Continuant in which some Independent Continuant becomes the bearer of some Specifically Dependent Continuant."@en ; + skos:example "A Person becomes pregnant (gain of quality), A person becomes forgetful (gain of disposition), A vehicle becomes amphibious (gain of function), A Person becomes a Database Administrator (gain of role)." ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000396 +cco:ont00000396 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 100,000–10,000 km"@en ; + rdfs:label "Extremely Low Frequency"@en ; + skos:altLabel "ITU Band Number 1"@en ; + skos:definition "A Radio Frequency that is between 3 and 30 Hz."@en ; + cco:ont00001753 "ELF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000401 +cco:ont00000401 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000008 ; + rdfs:label "Fundamental Frequency"@en ; + skos:definition "A Sound Frequency that is the lowest Frequency of a Sound Wave."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000402 +cco:ont00000402 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Communication"@en ; + skos:definition "A Planned Act in which some Information Content Entity is transferred from some Agent to Another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Communication&oldid=1063752020"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000414 +cco:ont00000414 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001286 ; + rdfs:label "Square Waveform"@en ; + skos:definition "A Waveform that is characterized by a square shape due to the near-instantaneous transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000416 +cco:ont00000416 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Publishing Mass Media Press Release"@en ; + skos:definition "An Act of Mass Media Communication involving the preparation and public issuance of an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000418 +cco:ont00000418 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000005 ; + rdfs:label "Biographical Life"@en ; + skos:definition "An Act composed of the Life Events that occur during the course of existence of an Agent (i.e. Person or Organization)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000430 +cco:ont00000430 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000850 ; + rdfs:label "Stable Orientation"@en ; + skos:definition "A Stasis of Quality that holds during a Temporal Interval when an object maintains the same Spatial Orientation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000433 +cco:ont00000433 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001327 ; + rdfs:label "Act of Association"@en ; + skos:definition "A Social Act wherein an Agent unites with some other Agent in a Planned Act, enterprise or business."@en ; + cco:ont00001754 "http://en.wiktionary.org/wiki/associate" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000438 +cco:ont00000438 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001374 ; + rdfs:label "Act of Official Documentation"@en ; + skos:definition "An Act of Declarative Communication in which an Agent records some information for official use by another Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000449 +cco:ont00000449 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001334 ; + rdfs:comment "Comment: Remuneration normally consists of salary or hourly wages, but also applies to commission, stock options, fringe benefits, etc."@en ; + rdfs:label "Act of Remuneration"@en ; + skos:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Employer) to compensate another Agent (the Employee) for the services they perform for the Employer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Remuneration&oldid=1033306001"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000455 +cco:ont00000455 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001327 ; + rdfs:label "Act of Ceremony"@en ; + skos:definition "A Social Act of ritual significance, performed on a special occasion."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ceremony&oldid=1064081855"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000462 +cco:ont00000462 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000609 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000034 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the BFO 'occupies temporal region' property) that the Entity bears the Function."@en ; + rdfs:label "Gain of Function"@en ; + skos:definition "A Gain of Disposition in which some Independent Continuant becomes the bearer of some Function."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000463 +cco:ont00000463 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001075 ; + rdfs:label "Act of Educational Training Instruction"@en ; + skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Educational Organization by imparting knowledge of a curriculum to an Agent either directly or indirectly through some communication medium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000490 +cco:ont00000490 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:label "X-ray Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 30 petahertz and 30 exahertz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000492 +cco:ont00000492 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Email Messaging"@en ; + skos:altLabel "Act of Emailing"@en ; + skos:definition "An Act of Communication by Media in which text-based communication occurs between two or more people using personal computers or other devices using some Email Client Software conveyed over the Internet."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000501 +cco:ont00000501 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Financial Withdrawal"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent to another Agent (the Depositor) from an account created by an earlier Act of Financial Deposit performed by the Depositor."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Deposit_(bank)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000503 +cco:ont00000503 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Power"@en ; + skos:definition "A Process Profile that is characterized by the rate of Work, or Energy consumed, done in a given time period."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000508 +cco:ont00000508 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000610 ; + rdfs:label "Near Ultraviolet Light Frequency"@en ; + skos:definition "An Ultraviolet Light Frequency that is between 750 terahertz and 3 petahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000511 +cco:ont00000511 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Planning"@en ; + skos:definition "A Planned Act that involves making a Plan to achieve some specified Objective."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000513 +cco:ont00000513 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Tool Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Tool."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000514 +cco:ont00000514 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000752 ; + rdfs:label "Transverse Wave Profile"@en ; + skos:altLabel "Transverse Wave"@en ; + skos:definition "A Wave Process Profile in which the displacement of participating particles is perpendicular to the direction of the Wave Process' propogation."@en ; + cco:ont00001754 "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000515 +cco:ont00000515 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Vehicle Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Vehicle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000517 +cco:ont00000517 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:label "Act of Communication by Media"@en ; + skos:definition "An Act of Communication in which some Artifact is used to transfer an Information Bearing Entity from sender(s) to receiver(s)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000519 +cco:ont00000519 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000732 ; + rdfs:comment "The corresponding Wavelength range is 10–1 mm"@en ; + rdfs:label "Extremely High Frequency"@en ; + skos:altLabel "ITU Band Number 11"@en , + "Millimeter Band Frequency"@en ; + skos:definition "A Microwave Frequency that is between 30 and 300 GHz."@en ; + cco:ont00001753 "EHF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000520 +cco:ont00000520 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Departure"@en ; + skos:definition "An Act of Location Change that consists of the participating entity leaving its starting location such that the larger Act of Location Change is initiated."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000521 +cco:ont00000521 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001272 ; + rdfs:label "Act of Assassination"@en ; + skos:definition "An Act of Murder of a prominent person."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000523 +cco:ont00000523 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000862 ; + rdfs:label "Loudness"@en ; + skos:definition "A Sound Process Profile that is characterized by the amplitude and total energy of translated sound waves, typically on a continuum from soft to loud."@en ; + cco:ont00001754 "https://byjus.com/physics/loudness-of-sound/"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000530 +cco:ont00000530 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000008 ; + rdfs:comment "Sound waves with frequencies in this range are typically audible to humans."@en ; + rdfs:label "Sonic Frequency"@en ; + skos:altLabel "Audible Frequency"@en ; + skos:definition "A Sound Frequency that is between 20 Hz and 20 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000535 +cco:ont00000535 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000290 ; + rdfs:label "Decrease of Quality"@en ; + skos:definition "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Quality that it bears."@en ; + skos:example "Weight Loss, Decreasing Temperature, decreasing color intensity, loss of structural integrity" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000542 +cco:ont00000542 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000876 ; + rdfs:label "Loss of Generically Dependent Continuant"@en ; + skos:definition "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the carrier of some Generically Dependent Continuant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000543 +cco:ont00000543 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000854 ; + rdfs:label "Decrease of Disposition"@en ; + skos:definition "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Disposition it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000544 +cco:ont00000544 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001936 ; + owl:someValuesFrom cco:ont00000741 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:comment "Although people speak of targeting a process, say, a parade, what in fact are being targeted are the material participants of that process. The disruption or ceasing of the process is the objective of some plan, but not technically a target. Only material things can be targeted for action. Even if some dependent entity is described as being the target, the material thing for which that dependent entity depends is the object of a targeting process."@en ; + rdfs:label "Target"@en ; + skos:definition "A Material Entity that is the object of an Act of Targeting."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000546 +cco:ont00000546 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000005 ; + rdfs:label "Unplanned Act"@en ; + skos:altLabel "Unintentional Act"@en ; + skos:definition "An Act in which at least one Agent plays a causative role and which is not prescribed by some Objective held by any of the Agents."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000554 +cco:ont00000554 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000004 ; + rdfs:label "Gain of Dependent Continuant"@en ; + skos:definition "A Change in which an Independent Continuant becomes the bearer or carrier of some Dependent Continuant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000555 +cco:ont00000555 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000135 ; + rdfs:label "Enhanced Stasis"@en ; + skos:altLabel "Enhanced"@en ; + skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has undergone improvement (i.e., an increase or gain) due to a previous action or event such that the Independent Continuant is now of greater value, usefulness, or functionality."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/enhance" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000557 +cco:ont00000557 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001132 ; + rdfs:label "Stasis of Non-Mission Capable"@en ; + skos:definition "A Stasis of Mission Capability during which the participating Continuant is not capable of performing any of its primary functions for the specified Mission."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000558 +cco:ont00000558 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000099 ; + rdfs:label "Visible Light Reflection Process"@en ; + skos:definition "A Wave Process in which an Electromagnetic Wave with a Visible Light Frequency is reflected off a portion of matter."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000566 +cco:ont00000566 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Artifact Employment"@en ; + skos:definition "A Planned Act of using an Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000570 +cco:ont00000570 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Force"@en ; + skos:definition "A Process Profile that is the rate of change of an object's Momentum, is the product of an object's Mass and Acceleration with respect to an inertial frame of reference, and is measured in units of Newtons (N)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000572 +cco:ont00000572 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000765 ; + rdfs:label "Sound Production"@en ; + skos:altLabel "Sound Production Process"@en ; + skos:definition "A Wave Production Process that produces a Sound Wave."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000573 +cco:ont00000573 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000687 ; + rdfs:label "Act of Religious Training Acquisition"@en ; + skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tenets and/or practices of a religion from an Agent or communication medium that realizes a capacity derived from its affiliation with a Religious Organization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000580 +cco:ont00000580 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001286 ; + rdfs:label "Sine Waveform"@en ; + skos:altLabel "Sinusoidal Waveform"@en ; + skos:definition "A Waveform that is characterized by a smooth curved shape due to the continuous non-linear transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000584 +cco:ont00000584 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000357 ; + rdfs:comment "An Act of Position Change does not entail a change of location."@en ; + rdfs:label "Act of Position Change"@en ; + skos:definition "An Act of Motion in which the position (i.e. the orientation, alignment, or arrangement) of some Object or of one or more of an Object's parts is changed by some Agent."@en ; + skos:example "a top spinning in place" , + "adjusting your posture" , + "raising your left arm" , + "swivelling your office chair to face the window" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000585 +cco:ont00000585 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001286 ; + rdfs:label "Sawtooth Waveform"@en ; + skos:definition "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from minimum to maximum Amplitudes followed by a near-instantaneous transition from the maximum to minimum Amplitudes of the Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000588 +cco:ont00000588 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:label "Act of Mass Media Communication"@en ; + skos:definition "An Act of Communication intended to reach a large audience using a medium such as the internet, television, radio, newspaper, and magazine."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Media&oldid=1062799283"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000594 +cco:ont00000594 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Ignition Process"@en ; + skos:altLabel "Ignition"@en ; + skos:definition "A Natural Process that initiates a Combustion process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000595 +cco:ont00000595 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Cargo Transportation"@en ; + skos:definition "An Act of Location Change involving the movement of manufactured goods through some Transportation Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000609 +cco:ont00000609 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000642 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000016 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the BFO 'occupies temporal region' property) that the Entity bears the Disposition."@en ; + rdfs:label "Gain of Disposition"@en ; + skos:definition "A Gain of Realizable Entity in which some Independent Continuant becomes the bearer of some Disposition."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000610 +cco:ont00000610 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:label "Ultraviolet Light Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 750 terahertz and 30 petahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000611 +cco:ont00000611 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001214 ; + rdfs:label "Increase of Realizable Entity"@en ; + skos:definition "An Increase of Specifically Dependent Continuant in which some Independent Continuant has an increase of some Realizable Entity that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000612 +cco:ont00000612 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Weapon Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Weapon."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000613 +cco:ont00000613 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000250 ; + rdfs:label "Loss of Role"@en ; + skos:definition "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000615 +cco:ont00000615 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Encounter"@en ; + skos:definition "An Act of Association wherein two or more Persons meet in a casual or unplanned manner."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=encounter (Sense Key: Encounter%2:38:00)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000621 +cco:ont00000621 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001286 ; + rdfs:label "Inverse Sawtooth Waveform"@en ; + skos:definition "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from maximum to minimum Amplitudes followed by a near-instantaneous transition from the minimum to maximum Amplitudes of the Wave Cycle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000622 +cco:ont00000622 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001132 ; + rdfs:label "Stasis of Fully Mission Capable"@en ; + skos:definition "A Stasis of Mission Capability during which the participating Continuant is capable of performing all of its primary functions for the specified Mission."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000636 +cco:ont00000636 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000345 ; + rdfs:comment "Note that, while most if not all Acts of Appraisal involve some estimating and many Acts of Estimation involve some appraising (i.e. these classes are not disjoint), neither class subsumes the other. For example, some Acts of Appraisal (e.g. a tax assessor appraising the value of a building) impart a normative element to the measured value while others (e.g. a gustatory appraisal that fresh green beans taste better than canned green beans) involve complete information. Furthermore, many Acts of Estimation (e.g. estimating the height of a tree) are concerned solely with determining a numerical value (as opposed to the nature, value, importance, condition, or quality)."@en ; + rdfs:label "Act of Appraisal"@en ; + skos:definition "An Act of Measuring that involves evaluating, assessing, estimating, or judging the nature, value, importance, condition, or quality of something or someone."@en ; + skos:example "a food critic rating the quality of a restaurant's ambiance, service, and food" , + "a mechanic assessing whether a damaged vehicle is repairable" , + "an insurance agent appraising the financial value of a building" ; + skos:scopeNote "In the context of an Act of Appraisal, the terms 'value', 'condition', and 'quality' do not have the same meanings as their counterparts that are defined in the Common Core Ontologies. For example, a knife may be appraised to be of high quality if it is sharp and sturdy or to be of inferior quality if it is dull or fragile."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000642 +cco:ont00000642 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000395 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000017 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Realizable Entity"@en ; + skos:definition "A Gain of Specifically Dependent Continuant in which some Independent Continuant becomes the bearer of some Realizable Entity."@en ; + skos:example "An informant becomes unreliable (disposition), A person begins to speak French (function), a person becomes a welder (role)." ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000643 +cco:ont00000643 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 10–1 km"@en ; + rdfs:label "Low Frequency"@en ; + skos:altLabel "ITU Band Number 5"@en ; + skos:definition "A Radio Frequency that is between 30 and 300 kHz."@en ; + cco:ont00001753 "LF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000644 +cco:ont00000644 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000004 ; + rdfs:comment "Oscillation is often thought of in the sense of motion, e.g., a swinging clock pendulum. However, the repetitive variation in location around a central point is technically a process of vibration, sometimes referred to as mechanical oscillation. Use the term Vibration Motion for those cases."@en ; + rdfs:label "Oscillation Process"@en ; + skos:altLabel "Oscillation"@en ; + skos:definition "A Change in which the dependent entity alternates between two or more stases."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Oscillation&oldid=1002978272"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000654 +cco:ont00000654 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001147 ; + rdfs:label "Act of Terrorism"@en ; + skos:definition "An Act of Violence which creates fear and which is prescribed by religious, political or ideological objectives, and which deliberately target or disregard the safety of civilians and are committed by members of non-government organizations."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Terrorism&oldid=1063471352"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000660 +cco:ont00000660 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000015 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001819 ; + owl:someValuesFrom obo:BFO_0000015 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Effect"@en ; + skos:altLabel "Consequence"@en ; + skos:definition "A Process that follows and is caused by some previous Process."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=effect" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000672 +cco:ont00000672 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 10,000–1,000 km"@en ; + rdfs:label "Super Low Frequency"@en ; + skos:altLabel "ITU Band Number 2"@en ; + skos:definition "A Radio Frequency that is between 30 and 300 Hz."@en ; + cco:ont00001753 "SLF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000675 +cco:ont00000675 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001028 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00001227 + ] ; + rdfs:label "Sound Wave Process"@en ; + skos:definition "A Mechanical Wave Process of Pressure and displacement that is parallel to the propogation direction of the Wave Process through a medium."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000676 +cco:ont00000676 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Inhabitancy"@en ; + skos:definition "A Planned Act in which a Person lives at a Site for a period of time that may be as short as 1 day/night or as long as the Person's entire life."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/inhabit" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000684 +cco:ont00000684 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000821 ; + rdfs:label "Act of Contract Formation"@en ; + skos:definition "An Act of Promising having a lawful object entered into voluntarily by two or more agents with legal capacity, each of whom intends to create one or more legal obligations between them."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Contract&oldid=1061365227"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000687 +cco:ont00000687 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000234 ; + rdfs:label "Act of Training Acquisition"@en ; + skos:definition "An Act of Training performed by an Agent by acquiring knowledge from another Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000712 +cco:ont00000712 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000763 + ] ; + rdfs:label "Acceleration"@en ; + skos:definition "A Process Profile that is the rate of change of the Velocity of an object."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Acceleration&oldid=1062249960"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000725 +cco:ont00000725 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000455 ; + rdfs:label "Wedding"@en ; + skos:altLabel "Act of Wedding Ceremony"@en ; + skos:definition "An Act of Ceremony in which two Persons are united in Marriage or a similar institution."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wedding&oldid=1063857279"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000726 +cco:ont00000726 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000004 ; + rdfs:label "Decrease of Dependent Continuant"@en ; + skos:definition "A Change in which some Independent Continuant has a decrease in the level of some Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000732 +cco:ont00000732 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 1,000–1 mm"@en ; + rdfs:label "Microwave Frequency"@en ; + skos:definition "A Radio Frequency that is between 300 MHz and 300 GHz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Microwave&oldid=1062124842"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000739 +cco:ont00000739 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000676 ; + rdfs:label "Act of Sojourn"@en ; + skos:definition "An Act of Inhabitancy in which a Person lives in a dwelling temporarily, often during stages of an Act of Travel."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000741 +cco:ont00000741 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Targeting"@en ; + skos:definition "A Planned Act wherein some Agent maintains one or more entities as the objects of potential action given some operational requirement."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000744 +cco:ont00000744 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Social Group Membership"@en ; + skos:definition "An Act of Association wherein a Person belongs to some Social Group."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000750 +cco:ont00000750 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Text Messaging"@en ; + skos:altLabel "Act of Text Messaging"@en , + "Act of Texting"@en ; + skos:definition "An Act of Communication by Media involving the exchange of brief written messages between fixed-line phone or mobile phone and fixed or portable devices over a network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Text_messaging&oldid=1062261405"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000752 +cco:ont00000752 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000144 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001857 ; + owl:someValuesFrom cco:ont00000099 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:comment "This is a defined class used to group process profiles of Wave Processes. Note that not every relevant process profile can be asserted as a subtype, however, because they (e.g. Frequency and Amplitude) are applicable to other processes as well (e.g. Oscillation Process)."@en ; + rdfs:label "Wave Process Profile"@en ; + skos:definition "A Process Profile of a Wave Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000753 +cco:ont00000753 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 1,000–100 km"@en ; + rdfs:label "Ultra Low Frequency"@en ; + skos:altLabel "ITU Band Number 3"@en ; + skos:definition "A Radio Frequency that is between 300 Hz and 3 kHz."@en ; + cco:ont00001753 "ULF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000754 +cco:ont00000754 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001047 ; + rdfs:comment "Divisions between EM radiation frequencies are fiat and sources vary on where to draw boundaries."@en ; + rdfs:label "Electromagnetic Radiation Frequency"@en ; + skos:definition "A Frequency that is characterized by the rate of Oscillations per second of an Electromagnetic Wave."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000760 +cco:ont00000760 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000752 ; + rdfs:label "Surface Wave Profile"@en ; + skos:altLabel "Surface Wave"@en ; + skos:definition "A Wave Process Profile in which the Wave Process propogates along the surface of a medium and which involves both transverse and longitudinal wave profiles such that the motion of the displacement of participating particles is circular or elliptical."@en ; + skos:example "the motion of an ocean wave" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000763 +cco:ont00000763 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Velocity"@en ; + skos:definition "A Process Profile of an object's Motion that is characterized by its Speed and direction with respect to a frame of reference."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Velocity&oldid=1063300750"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000765 +cco:ont00000765 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Wave Production"@en ; + skos:altLabel "Wave Production Process"@en ; + skos:definition "A Natural Process in which a Wave Process is generated."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000769 +cco:ont00000769 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000133 ; + rdfs:label "Act of Requesting"@en ; + skos:definition "An Act of Directive Communication performed by asking for something."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/request" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000772 +cco:ont00000772 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:comment "An Impulse changes the Momentum (and potentially also the direction of Motion) of the object it is applied to and is typically measured in Newton meters."@en ; + rdfs:label "Impulsive Force"@en ; + skos:altLabel "Imp"@en , + "Impulse"@en , + "J"@en ; + skos:definition "A Process Profile that is the integral of a Force that is applied to a portion of matter over a period of time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000773 +cco:ont00000773 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000789 ; + rdfs:label "Curvilinear Motion"@en ; + skos:altLabel "Curved Motion"@en ; + skos:definition "A Translational Motion process in which an Object moves along a curved path."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000783 +cco:ont00000783 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000557 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001819 ; + owl:someValuesFrom cco:ont00000950 + ] ; + rdfs:label "Stasis of Non-Mission Capable Maintenance"@en ; + skos:definition "A Stasis of Non-Mission Capable during which the participating Continuant is not capable of performing its primary functions for the specified Mission due to participating in an Act Of Maintenance."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000786 +cco:ont00000786 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000611 ; + rdfs:label "Increase of Role"@en ; + skos:definition "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Role that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000789 +cco:ont00000789 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001133 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000763 + ] ; + rdfs:label "Translational Motion"@en ; + skos:definition "A Motion Process in which the participating Object changes its position from one portion of space to another."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000812 +cco:ont00000812 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000951 ; + rdfs:label "Electromagnetic Pulse"@en ; + skos:altLabel "EMP"@en , + "Transient Electromagnetic Disturbance"@en ; + skos:definition "An Electromagnetic Wave Process that consists of a short high-energy burst of electromagnetic energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_pulse&oldid=1060859738"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000819 +cco:ont00000819 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Stasis"@en ; + skos:definition "A Process in which one or more Independent Continuants endure in an unchanging condition."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000820 +cco:ont00000820 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000246 ; + rdfs:label "Stasis of Function"@en ; + skos:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Function that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000821 +cco:ont00000821 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001162 ; + rdfs:label "Act of Promising"@en ; + skos:definition "An Act of Commissive Communication performed by declaring that the promising agent will do, or refrain from doing, the specified action."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/promise" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000822 +cco:ont00000822 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 100–10 km"@en ; + rdfs:label "Very Low Frequency"@en ; + skos:altLabel "ITU Band Number 4"@en ; + skos:definition "A Radio Frequency that is between 3 and 30 kHz."@en ; + cco:ont00001753 "VLF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000824 +cco:ont00000824 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000246 ; + rdfs:label "Stasis of Role"@en ; + skos:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Role that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000830 +cco:ont00000830 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:comment "An object's speed is the scalar absolute value of it's Velocity."@en ; + rdfs:label "Speed"@en ; + skos:definition "A Process Profile that is characterized by the magnitude of an object's motion with respect to a frame of reference during some time period."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Speed&oldid=1058949945"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000834 +cco:ont00000834 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001337 ; + rdfs:label "Mid Infrared Light Frequency"@en ; + skos:definition "An Infrared Light Frequency that is between 20 and 214 terahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000836 +cco:ont00000836 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Financial Instrument Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Financial Instrument."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000839 +cco:ont00000839 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Donating"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is tranfered by an Agent (the Donor) to another Agent (the Recipient) without return consideration."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Donation&oldid=1059373518"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000842 +cco:ont00000842 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Sub-Bass Frequency"@en ; + skos:definition "A Sonic Frequency that is between 20 and 60 Hz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000847 +cco:ont00000847 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001213 ; + owl:disjointWith cco:ont00000936 ; + rdfs:label "Active Stasis"@en ; + skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact is realizing one or more of its designed Artifact Functions (especially one of its primary functions)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000850 +cco:ont00000850 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000135 ; + rdfs:label "Stasis of Quality"@en ; + skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Quality that remains unchanged during a Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000854 +cco:ont00000854 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000290 ; + rdfs:label "Decrease of Realizable Entity"@en ; + skos:definition "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Realizable Entity that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000855 +cco:ont00000855 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000660 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000132 ; + owl:someValuesFrom cco:ont00000065 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001819 ; + owl:someValuesFrom cco:ont00000065 + ] ; + rdfs:label "Effect of Location Change"@en ; + skos:definition "An Effect caused by some Act of Location Change and which results in an Object being located in a different place."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000859 +cco:ont00000859 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Television Broadcast"@en ; + skos:altLabel "Act of Television Broadcasting"@en ; + skos:definition "An Act of Communciation by Media that is transmitted to an audience through a television network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Television_broadcasting&oldid=1063890047"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000862 +cco:ont00000862 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000144 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001857 ; + owl:someValuesFrom cco:ont00000675 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Sound Process Profile"@en ; + skos:altLabel "Sound Quality"@en ; + skos:definition "A Process Profile that is part of a sound reception process and is characterized by properties of incoming sound waves as they are translated by some sensory system."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI , + "http://www.animations.physics.unsw.edu.au/waves-sound/quantifying/index.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000863 +cco:ont00000863 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000379 ; + rdfs:label "Act of Confessing"@en ; + skos:definition "An Act of Representative Communication in which a person makes an admission of misdeeds or faults."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000865 +cco:ont00000865 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000876 ; + rdfs:label "Loss of Specifically Dependent Continuant"@en ; + skos:definition "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Specifically Dependent Continuant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000866 +cco:ont00000866 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Radio Broadcast"@en ; + skos:altLabel "Act of Radio Broadcasting"@en ; + skos:definition "An Act of Communciation by Media that is transmitted to an audience through a radio network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_network&oldid=1037183126"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000875 +cco:ont00000875 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:label "Act of Personal Communication"@en ; + skos:definition "An Act of Communication having a small audience."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000876 +cco:ont00000876 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000004 ; + rdfs:label "Loss of Dependent Continuant"@en ; + skos:definition "A Change in which some Independent Continuant ceases to be the bearer or carrier of some Dependent Continuant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000879 +cco:ont00000879 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Religious Group Affiliation"@en ; + skos:definition "An Act of Association wherein some Person belongs to some Religious Demonination or sub-Denomination."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000883 +cco:ont00000883 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001162 ; + rdfs:label "Act of Inviting"@en ; + skos:definition "An Act of Commissive Communication performed by requesting the presence or participation of the audience, and which may include offering an incentive or inducement."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/invite" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000884 +cco:ont00000884 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Loaning"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is given by an Agent (the Creditor) to another Agent (the Debtor) in order to receive Repayments from the Debtor which are of greater Financial Value."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000889 +cco:ont00000889 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000037 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000558 + ] ; + rdfs:label "Visible Observation"@en ; + skos:definition "An Act of Observation that involves visual perception."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000890 +cco:ont00000890 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Travel"@en ; + skos:definition "An Act of Location Change wherein one or more Persons move between relatively distant geographical locations for any purpose and any duration, with or without any means of transport."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Travel&oldid=1037229469"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000895 +cco:ont00000895 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000335 ; + rdfs:label "Married"@en ; + skos:altLabel "Married Stasis"@en ; + skos:definition "A Stasis of Generically Dependent Continuant that consists of a socially, culturally, or ritually recognized union or legal contract between spouses that establishes rights and obligations between them, between them and their children, and between them and their in-laws."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Marriage&oldid=1064076951"^^xsd:anyURI , + "Haviland, William A.; Prins, Harald E. L.; McBride, Bunny; Walrath, Dana (2011). Cultural Anthropology: The Human Challenge (13th ed.). Cengage Learning. ISBN 978-0-495-81178-7" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000902 +cco:ont00000902 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Facility Use"@en ; + skos:definition "An Act of Artifact Employment in which an Agent makes use of some Facility."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000908 +cco:ont00000908 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Artifact Processing"@en ; + skos:definition "A Planned Act of performing a series of mechanical or chemical operations on something in order to change or preserve it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000910 +cco:ont00000910 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Amplitude"@en ; + skos:definition "A Process Profile of an Oscillation Process that is the absolute value of the maximum displacement from a zero, equilibrium, or mean value during one cycle of the Oscillation Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000920 +cco:ont00000920 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Death"@en ; + skos:definition "A Natural Process in which all biological functions that sustain a living organism cease."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Death&oldid=1064114499"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000922 +cco:ont00000922 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Arrival"@en ; + skos:definition "An Act of Location Change that consists of the participating entity reaching its destination such that the larger Act of Location Change is completed."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000924 +cco:ont00000924 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001191 ; + rdfs:comment "A Beginning of Life Stasis (BoL) is a relatively brief Operational Stasis that is primarily of interest for the purpose of establishing a baseline for operational parameters to be compared to the designed specifications as well as the Artifact's performance throughout its operational life."@en ; + rdfs:label "Beginning of Life Stasis"@en ; + skos:definition "A Operational Stasis that holds during a Temporal Interval when an Artifact is first put into operational use such that its designed set of Artifact Functions is capable of operating at or near their designed peak performance levels."@en ; + cco:ont00001753 "BOL" , + "BoL" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000925 +cco:ont00000925 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000687 ; + rdfs:label "Act of Military Training Acquisition"@en ; + skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of Military Operations from an Agent or communication medium that realizes a capacity derived from its affiliation with a Military Organization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000926 +cco:ont00000926 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000123 ; + rdfs:label "Act of Apologizing"@en ; + skos:definition "An Act of Expressive Communication performed by acknowledging and expressing regret for a fault, shortcoming, or failure."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=apologizing" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000927 +cco:ont00000927 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Bass Frequency"@en ; + skos:definition "A Sonic Frequency that is between 60 and 250 Hz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000935 +cco:ont00000935 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Legal Instrument Use"@en ; + skos:definition "An Act of Artifact Employment in which some Agent uses some Legal Instrument."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000936 +cco:ont00000936 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001213 ; + rdfs:label "Deactivated Stasis"@en ; + skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact is not realizing any of its designed Artifact Functions (or at least not realizing any of its primary functions)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000948 +cco:ont00000948 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000455 ; + rdfs:label "Act of Religious Worship"@en ; + skos:definition "An Act of Ceremony wherein there occurs acts of religious devotion usually directed towards a deity."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Worship (Sense Key: Worship%2:42:00 or Worship%1:04:00::)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000949 +cco:ont00000949 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Consumption"@en ; + skos:definition "A Planned Act in which a resource is ingested or used up."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000950 +cco:ont00000950 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000970 ; + rdfs:label "Act of Maintenance"@en ; + skos:definition "An Act of Artifact Modification in which an Artifact is modified in order to preserve or restore one or more of its designed Qualities or Functions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000951 +cco:ont00000951 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000099 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000514 + ] ; + rdfs:label "Electromagnetic Wave Process"@en ; + skos:altLabel "Electromagnetic Radiation"@en ; + skos:definition "A Wave Process that is produced by charged particles, involves the periodic Oscillation of electric and magnetic fields at right angles to each other and the direction of wave propogation such that it has a Transverse Wave Profile, and which transfers electromagnetic radiant energy through a portion of space or matter."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000953 +cco:ont00000953 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000862 ; + rdfs:label "Pitch"@en ; + skos:definition "A Sound Process Profile that is characterized by the frequency of translated sound waves, typically on a continuum from low to high."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000955 +cco:ont00000955 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000278 ; + rdfs:label "Angular Momentum"@en ; + skos:definition "A Momentum that is the product of an object's moment of inertia and its Angular Velocity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Angular_momentum&oldid=1063992505"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000960 +cco:ont00000960 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001190 ; + rdfs:label "Fixed Line Network Telephone Call"@en ; + skos:definition "A Telephone Call transmitted over a telephone network where the telephones are wired into a single telephone exchange."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000964 +cco:ont00000964 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 1,000–100 m"@en ; + rdfs:label "Medium Frequency"@en ; + skos:altLabel "ITU Band Number 6"@en ; + skos:definition "A Radio Frequency that is between 300 kHz and 3 MHz."@en ; + cco:ont00001753 "MF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000970 +cco:ont00000970 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000908 ; + rdfs:comment "Excluded from this class are instances of role change or role creation such as the introduction of an artifact as a piece of evidence in a trial or the loading of artifacts onto a ship for transport."@en ; + rdfs:label "Act of Artifact Modification"@en ; + skos:definition "An Act of Artifact Processing in which an existing Artifact is acted upon in a manner that changes, adds, or removes one or more of its Qualities, Dispositions, or Functions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000971 +cco:ont00000971 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:label "Act of Deceptive Communication"@en ; + skos:definition "Ac Act of Communication intended to mislead the audience by distortion or falsification of evidence and induce a reaction that is prejudicial to the interests of the audience."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000977 +cco:ont00000977 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Publishing Mass Media Documentary"@en ; + skos:definition "An Act of Mass Media Communication involving the preparation and public issuance of information that provides a factual record or report."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000978 +cco:ont00000978 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000015 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001803 ; + owl:someValuesFrom obo:BFO_0000015 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000015 ; + rdfs:label "Cause"@en ; + skos:definition "A Process that is the cause of or one of the causes of some other Process."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000981 +cco:ont00000981 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000566 ; + rdfs:label "Act of Portion of Material Consumption"@en ; + skos:definition "An Act of Artifact Employment in which a Portion of Material is expended."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000982 +cco:ont00000982 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000543 ; + rdfs:label "Decrease of Function"@en ; + skos:definition "A Decrease of Disposition in which some Independent Continuant has a decrease of some Function that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000983 +cco:ont00000983 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001028 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000514 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001028 ; + rdfs:label "Shear Wave Process"@en ; + skos:definition "A Mechanical Wave that has a Transverse Wave Profile."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000989 +cco:ont00000989 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000732 ; + rdfs:comment "The corresponding Wavelength range is 100–10 mm"@en ; + rdfs:label "Super High Frequency"@en ; + skos:altLabel "ITU Band Number 10"@en ; + skos:definition "A Microwave Frequency that is between 3 and 30 GHz."@en ; + cco:ont00001753 "SHF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000999 +cco:ont00000999 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001213 ; + owl:disjointWith cco:ont00001191 ; + rdfs:label "Defunct Stasis"@en ; + skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact no longer maintains its designed set of Artifact Functions (or at least no longer maintains its primary functions)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001021 +cco:ont00001021 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000379 ; + rdfs:label "Act of Denying"@en ; + skos:definition "An Act of Representative Communication performed by either asserting that something is not true or real or refusing to satisfy a request or desire."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/denial" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001028 +cco:ont00001028 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000099 ; + rdfs:label "Mechanical Wave Process"@en ; + skos:definition "A Wave Process that involves Oscillation of a portion of matter such that energy is transferred through the material medium."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mechanical_wave&oldid=1057233679"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001031 +cco:ont00001031 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001162 ; + rdfs:label "Act of Volunteering"@en ; + skos:definition "An Act of Commissive Communication performed by voluntarily undertaking or expressing a willingness to undertake a service."@en ; + skos:example "entering into military service voluntarily" , + "rendering a service voluntarily" ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/volunteer" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001032 +cco:ont00001032 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001374 ; + rdfs:label "Act of Assignment"@en ; + skos:definition "An Act of Declarative Communication in which rights held by one party (the assignor) are transferred to another party (the assignee) with regard to a particular entity as specified by the details of the assignment, which is often prescribed by a contract."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Assignment_(law)&oldid=1056101591"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001039 +cco:ont00001039 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Repayment"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Debtor) to another Agent (the Creditor) to decrease the amount the Debtor owes to the Creditor from an earlier Act of Loaning."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001047 +cco:ont00001047 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 ; + rdfs:label "Frequency"@en ; + skos:altLabel "Temporal Frequency"@en ; + skos:definition "A Process Profile that is characterized by the number of repetitive processes during a particular time period."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Frequency&oldid=1062800545"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001048 +cco:ont00001048 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000004 ; + rdfs:label "Increase of Dependent Continuant"@en ; + skos:definition "A Change in which some Independent Continuant has an increase in the level of some Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001053 +cco:ont00001053 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000065 ; + rdfs:label "Act of Collision"@en ; + skos:definition "An Act of Location Change involving the movement of one object such that it collides with another object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001056 +cco:ont00001056 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:comment "Visible light overlaps with near infrared and near ultraviolet."@en ; + rdfs:label "Visible Light Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 400 and 800 terahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Light&oldid=1062630851"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001057 +cco:ont00001057 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Issuing Mass Media Press Release"@en ; + skos:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001066 +cco:ont00001066 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000250 ; + rdfs:label "Loss of Disposition"@en ; + skos:definition "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Disposition."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001068 +cco:ont00001068 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000395 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000019 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Quality"@en ; + skos:definition "A Gain of Specifically Dependent Continuant in which an Independent Continuant becomes the bearer of some Quality."@en ; + skos:example "A person becoming pregnant." ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001072 +cco:ont00001072 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000169 ; + rdfs:label "FM Radio Broadcast Frequency"@en ; + skos:altLabel "Frequency Modulation Radio Broadcast Frequency"@en ; + skos:definition "A Very High Frequency that is between 88 and 108 MHz."@en ; + cco:ont00001754 "International Telecommunication Union (ITU) Region 2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001074 +cco:ont00001074 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000687 ; + rdfs:label "Act of Educational Training Acquisition"@en ; + skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of a curriculum from an Agent or communication medium that realizes a capacity derived from its affiliation with some Educational Organization."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001075 +cco:ont00001075 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000234 ; + rdfs:label "Act of Training Instruction"@en ; + skos:definition "An Act of Training performed by an Agent by imparting knowledge to another Agent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001080 +cco:ont00001080 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001337 ; + rdfs:label "Far Infrared Light Frequency"@en ; + skos:definition "An Infrared Light Frequency that is between 300 gigahertz and 20 terahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001094 +cco:ont00001094 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001251 ; + rdfs:label "Act of Espionage"@en ; + skos:definition "An Act of Intelligence Gathering involving the obtaining of information that is considered secret or confidential without the permission of the holder of the information."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Espionage&oldid=1062702647"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001108 +cco:ont00001108 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000732 ; + rdfs:comment """The corresponding Wavelength range is 1–0.1 m. + +Note that the ITU definition of UHF is broader than the definition given by IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands, which sets the frequency range at 300 MHz to 1 GHz."""@en ; + rdfs:label "Ultra High Frequency"@en ; + skos:altLabel "ITU Band Number 9"@en ; + skos:definition "A Microwave Frequency that is between 300 MHz and 3 GHz."@en ; + cco:ont00001753 "UHF" ; + cco:ont00001754 "International Telecommunication Union (ITU)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001109 +cco:ont00001109 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000368 ; + rdfs:label "Counter-Clockwise Rotational Motion"@en ; + skos:altLabel "Anti-Clockwise Rotation"@en , + "CCW Rotational Motion"@en , + "Counter-Clockwise Rotation"@en ; + skos:definition "A Rotational Motion in which the direction of rotation is toward the left as seen relative to the designated side of the plane of rotation."@en ; + skos:example "the axial rotation of the Earth as seen from above the North Pole" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001111 +cco:ont00001111 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Low Midrange Frequency"@en ; + skos:definition "A Sonic Frequency that is between 250 and 500 Hz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001112 +cco:ont00001112 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000712 ; + rdfs:label "Proper Acceleration"@en ; + skos:definition "An Acceleration of an object relative to a free-fall, or inertial, observer who is momentarily at rest relative to the object being measured (hence, gravity does not cause Proper Acceleration)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Proper_acceleration&oldid=1058169867"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001115 +cco:ont00001115 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001190 ; + rdfs:label "Private Network Telephone Call"@en ; + skos:definition "A Telephone Call transmitted over a network where a closed group of telephones are connected primarily to each other and use a gateway to reach the outside world, usually used inside companies and call centers (a.k.a. private branch exchange (PBX))."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001120 +cco:ont00001120 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001075 ; + rdfs:label "Act of Religious Training Instruction"@en ; + skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Religious Organization by imparting knowledge of the tenets and/or practices of a religion to an Agent either directly or indirectly through some communication medium."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001122 +cco:ont00001122 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Radio Interference"@en ; + skos:definition "A Natural Process in which a radio signal is disrupted, whether unintentionally or as the result of an Act of Radio Jamming, Act of Radio Spoofing, or similar Planned Act."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001127 +cco:ont00001127 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000865 ; + rdfs:label "Loss of Quality"@en ; + skos:definition "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Quality."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001128 +cco:ont00001128 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000676 ; + rdfs:label "Act of Residing"@en ; + skos:definition "An Act of Inhabitancy in which a Person lives in a dwelling permanently or for an extended period of time."@en ; + cco:ont00001754 "http://www.thefreedictionary.com/reside" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001132 +cco:ont00001132 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000246 ; + rdfs:label "Stasis of Mission Capability"@en ; + skos:definition "A Stasis of Realizable Entity that holds during a temporal interval when a Continuant's capability (or lack thereof) to perform its intended Functions, tasks, or Objectives remains at a relatively constant level."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001133 +cco:ont00001133 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Motion"@en ; + skos:definition "A Natural Process in which a Continuant changes its Location or Spatial Orientation over some Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001136 +cco:ont00001136 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000008 ; + rdfs:label "Ultrasonic Frequency"@en ; + skos:definition "A Sound Frequency that is greater than 20 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001143 +cco:ont00001143 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Facsimile Transmission"@en ; + skos:altLabel "Act of Facsimile Transmission"@en , + "Act of Faxing"@en ; + skos:definition "An Act of Communication by Media in which the Information Content Entity that inheres in a Document is transmitted over a Telephone Network."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fax&oldid=1054674158"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001144 +cco:ont00001144 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Entertainment"@en ; + skos:definition "A Planned Act consisting of any activity which provides a diversion or permits people to amuse themselves."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001147 +cco:ont00001147 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Violence"@en ; + skos:definition "A Planned Act of causing harm to oneself or to another through the use of physical or verbal force."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Violence&oldid=1063681926"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001158 +cco:ont00001158 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000366 ; + rdfs:label "Act of Data Transformation"@en ; + skos:definition "An Act of Information Processing in which an algorithm is executed to act upon one or more input Information Content Entities into one or more output Information Content Entities."@en ; + skos:scopeNote "It is not a requirement that the output Information Content Entity(ies) be qualitatively distinct from the input(s) as a result of an Act of Data Transformation, though doing so is typically the goal of performing this Act. Consider, for example, selecting a column in an Excel spreadsheet then executing the \\\"Remove Duplicates\\\" Algorithm on it. The intent is to remove rows in that column containing duplicate content. If no duplicate values are present, the information in the column remains unchanged but an Act of Data Transformation was nonetheless performed."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001162 +cco:ont00001162 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:comment "Examples: agreeing, betting, guaranteeing, inviting, offering, promising, swearing, volunteering"@en ; + rdfs:label "Act of Commissive Communication"@en ; + skos:definition "An Act of Communication that commits a speaker to some future action."@en ; + cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001167 +cco:ont00001167 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Midrange Frequency"@en ; + skos:definition "A Sonic Frequency that is between 500 Hz and 2 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001170 +cco:ont00001170 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000490 ; + rdfs:label "Hard X-ray Frequency"@en ; + skos:definition "An X-Ray Frequency that is between 3 and 30 exahertz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001171 +cco:ont00001171 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001190 ; + rdfs:label "Wireless Network Telephone Call"@en ; + skos:definition "A Telephone Call transmitted over a network where the telephones are mobile and can move anywhere within the coverage area."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001184 +cco:ont00001184 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000368 ; + rdfs:label "Spinning Motion"@en ; + skos:definition "A Rotational Motion of an Object around an Axis of Rotation that passes through the Object's Center of Mass."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001190 +cco:ont00001190 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000517 ; + rdfs:label "Telephone Call"@en ; + skos:altLabel "Act of Telephone Calling"@en ; + skos:definition "An Act of Communciation by Media transmitted over a telephone network to two or more Persons."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001191 +cco:ont00001191 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001213 ; + rdfs:label "Operational Stasis"@en ; + skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact maintains its designed set of Artifact Functions (or at least maintains its primary functions)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001194 +cco:ont00001194 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000642 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000057 ; + owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000196 ; + owl:someValuesFrom obo:BFO_0000023 + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the occurs_on property) that the Entity bears the Role."@en ; + rdfs:label "Gain of Role"@en ; + skos:definition "A Gain of Realizable Entity in which some Independent Continuant becomes bearer of some Role."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001196 +cco:ont00001196 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000908 ; + rdfs:comment "Many Acts of Manufacturing and Construction involve one or more Acts of Artifact Assembly, but Acts of Artifact Assembly can also occur in isolation from these activities."@en ; + rdfs:label "Act of Artifact Assembly"@en ; + skos:definition "An Act of Artifact Processing wherein a new Artifact is created by fitting component parts together."@en ; + skos:example "putting together a piece of furniture purchased from Ikea" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001208 +cco:ont00001208 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000150 ; + rdfs:comment "The corresponding Wavelength range is 100–10 m"@en ; + rdfs:label "High Frequency"@en ; + skos:altLabel "ITU Band Number 7"@en ; + skos:definition "A Radio Frequency that is between 3 and 30 MHz."@en ; + cco:ont00001753 "HF" ; + cco:ont00001754 "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001213 +cco:ont00001213 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000246 ; + rdfs:label "Stasis of Artifact Operationality"@en ; + skos:definition "A Stasis of Realizable Entity that holds during a Temporal Interval when an Artifact's designed set of Artifact Functions (or at least its primary functions) or the realizations of those functions remain unchanged."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001214 +cco:ont00001214 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001048 ; + rdfs:label "Increase of Specifically Dependent Continuant"@en ; + skos:definition "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Specifically Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001215 +cco:ont00001215 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000455 ; + rdfs:label "Funeral"@en ; + skos:altLabel "Act of Funeral Ceremony"@en ; + skos:definition "An Act of Ceremony in which the Life of a Person who has died is celebrated, sanctified, or remembered."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Funeral&oldid=1060270978"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001219 +cco:ont00001219 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000144 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000763 + ] ; + rdfs:comment "Delta-v is not equivalent to and should not be confused with Acceleration, which is the rate of change of Velocity."@en ; + rdfs:label "Delta-v"@en ; + skos:altLabel "Change in Velocity"@en , + "DeltaV"@en ; + skos:definition "A Process Profile that is the total change in Velocity of an object's Motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001226 +cco:ont00001226 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000433 ; + rdfs:label "Act of Employment"@en ; + skos:definition "An Act of Association wherein an Organization assigns a set of activities to some Person to be performed in exchange for financial compensation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001227 +cco:ont00001227 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000752 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001857 ; + owl:someValuesFrom cco:ont00001028 + ] ; + rdfs:label "Longitudinal Wave Profile"@en ; + skos:altLabel "Compression Wave"@en , + "Longitudinal Wave"@en ; + skos:definition "A Wave Process Profile in which the displacement of participating particles is parallel to the direction of the Wave Process' propogation such that the particles alternate between participating in processes of compression and rarefaction as they participate in individual Wave Processes."@en ; + cco:ont00001754 "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001231 +cco:ont00001231 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000530 ; + rdfs:label "Brilliance Frequency"@en ; + skos:definition "A Sonic Frequency that is between 6 and 20 kHz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001232 +cco:ont00001232 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:comment "In all cases, to possess something, an agent must have an intention to possess it."@en ; + rdfs:label "Act of Possession"@en ; + skos:definition "A Planned Act in which an agent intentionally exercises control towards a thing."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Possession_(law)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001236 +cco:ont00001236 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001147 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001803 ; + owl:someValuesFrom cco:ont00000920 + ] ; + rdfs:label "Act of Suicide"@en ; + skos:altLabel "Suicide"@en ; + skos:definition "An Act of Violence in which some Agent intentionally and voluntarily causes their own death."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/suicide" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001237 +cco:ont00001237 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000007 ; + rdfs:label "Birth"@en ; + skos:definition "A Natural Process of bringing forth offspring."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Birth&oldid=1063718655"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001244 +cco:ont00001244 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Issuing Mass Media Article"@en ; + skos:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation a non-fictional essay, especially one included with others in a newspaper, magazine, or journal."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001246 +cco:ont00001246 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000847 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000566 + ] ; + rdfs:label "Under Active Control"@en ; + skos:definition "An Active Stasis during which an Artifact participates in an Act of Artifact Employment."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001251 +cco:ont00001251 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Act of Intelligence Gathering"@en ; + skos:definition "A Planned Act of producing and/or gathering information by a government or other Organization to guide decisions and actions by answering questions or obtaining advance warning of events and movements deemed to be important or otherwise relevant."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Intelligence_(information_gathering)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001261 +cco:ont00001261 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000379 ; + rdfs:label "Act of Identifying"@en ; + skos:definition "An Act of Representative Communication performed by asserting who or what a particular person or thing is."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/identify" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001263 +cco:ont00001263 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000588 ; + rdfs:label "Act of Issuing Mass Media Documentary"@en ; + skos:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation information that provides a factual record or report."@en ; + cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001266 +cco:ont00001266 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001075 ; + rdfs:label "Act of Vocational Training Instruction"@en ; + skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider by imparting skills required for a specific occupation in industry, agriculture or trade to an Agent either directly or indirectly through some communication medium."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001267 +cco:ont00001267 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000971 ; + rdfs:label "Act of Propaganda"@en ; + skos:definition "An Act of Deceptive Communication Propaganda intended to influence the attitude of a mass audience toward some cause or position by presenting facts selectively (thus possibly lying by omission) or by using loaded messages to produce an emotional rather than rational response to the information presented."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propaganda&oldid=1062472484"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001269 +cco:ont00001269 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000133 ; + rdfs:label "Act of Warning"@en ; + skos:definition "An Act of Directive Communication performed by indicating a possible or impending danger, problem, or other unpleasant situation."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/warning" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001272 +cco:ont00001272 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000191 ; + rdfs:label "Act of Murder"@en ; + skos:definition "An Act of Homicide with malice aforethought."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001274 +cco:ont00001274 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000008 ; + rdfs:label "Infrasonic Frequency"@en ; + skos:definition "A Sound Frequency that is below 20 Hz."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001279 +cco:ont00001279 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001133 ; + rdfs:label "Vibration Motion"@en ; + skos:altLabel "Mechanical Oscillation"@en , + "Oscillation Motion"@en , + "Vibration"@en ; + skos:definition "A Motion wherein some participant repetitively deviates from a central location to two surrounding locations."@en ; + cco:ont00001754 "https://physicsabout.com/motion/"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001285 +cco:ont00001285 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000368 ; + rdfs:label "Revolving Motion"@en ; + skos:definition "A Rotational Motion of an Object around an Axis of Rotation that is located externally to the Site occupied by the Object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001286 +cco:ont00001286 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000752 ; + rdfs:label "Waveform"@en ; + skos:definition "A Wave Process Profile that is the shape of the Wave Cycles of the Wave Process when depicted in a visual graph."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001289 +cco:ont00001289 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000135 ; + rdfs:label "Damaged Stasis"@en ; + skos:altLabel "Compromised"@en , + "Damaged"@en , + "Injured"@en ; + skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to a previous action or event such that the Independent Continuant is now of lesser value, usefulness, or functionality."@en ; + skos:scopeNote "This class can be used to instantiate instances that might otherwise be treated by defined classes such as Damaged Vehicle or Wounded Person. The Independent Continuant and Quality or Realizable Entity are participants of the stasis which can in turn be related to the temporal interval via the occurs on property. "@en ; + cco:ont00001754 "http://www.thefreedictionary.com/damaged" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001305 +cco:ont00001305 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001066 ; + rdfs:label "Loss of Function"@en ; + skos:definition "A Loss of Disposition in which some Independent Continuant ceases to be the bearer of some Function."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001314 +cco:ont00001314 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Legal System Act"@en ; + skos:definition "A Planned Act performed by an Agent that realizes their role within the context of a legal system of some jurisdiction."@en ; + cco:ont00001754 "http://www.id.uscourts.gov/glossary.htm" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001322 +cco:ont00001322 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000726 ; + rdfs:comment "For the most part Generically Dependent Continuants do not inhere in their bearers over some continuous scale. The primary exception is religion and this class allows annotation of those cases where an Agent is described as becoming less religious. Other cases would include the decrease of an organization's bearing of some objective."@en ; + rdfs:label "Decrease of Generically Dependent Continuant"@en ; + skos:definition "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in the level of a Generically Dependent Continuant that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001325 +cco:ont00001325 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001334 ; + rdfs:label "Act of Renting"@en ; + skos:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Renter) as a payment to acquire temporary possession or use of a good or property that is owned or controlled by another Agent (the Seller)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001327 +cco:ont00001327 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000228 ; + rdfs:label "Social Act"@en ; + skos:definition "A Planned Act having an objective that affects, is performed by, or is performed on behalf of, a community or group of Persons."@en ; + cco:ont00001754 "http://en.wiktionary.org/wiki/commually" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001330 +cco:ont00001330 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000110 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000345 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001777 ; + owl:someValuesFrom cco:ont00000517 + ] ; + rdfs:label "Telemetry Process"@en ; + skos:definition "A Mechanical Process that is highly automated and in which measurements are made or other data is collected and transmitted to receiving equipment to facilitate the monitoring of environmental conditions or equipment parameters at a remote or inaccessible location."@en ; + skos:example "using a GPS tag to track a shark's migratory pattern" , + "using a portable cardiac monitor to remotely collect data on a patient's heart activity (biotelemetry)" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telemetry&oldid=1061697851"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001332 +cco:ont00001332 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000610 ; + rdfs:label "Extreme Ultraviolet Light Frequency"@en ; + skos:definition "An Ultraviolet Light Frequency that is between 3 and 30 petahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001334 +cco:ont00001334 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000836 ; + rdfs:label "Act of Purchasing"@en ; + skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is used by an Agent (the Purchaser) to acquire a good or service from another Agent (the Provider)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Purchasing&oldid=1050163120"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001336 +cco:ont00001336 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001232 ; + rdfs:comment "The relation between the owner and property may be private, collective, or common and the property may be objects, land, real estate, or intellectual property."@en ; + rdfs:label "Act of Ownership"@en ; + skos:definition "An Act of Possession that includes an agent having certain rights and duties over the property owned."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ownership&oldid=1058224617"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001337 +cco:ont00001337 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000754 ; + rdfs:label "Infrared Light Frequency"@en ; + skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 300 gigahertz and 430 tetrahertz."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Infrared&oldid=1064111319"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001338 +cco:ont00001338 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000862 ; + rdfs:label "Timbre"@en ; + skos:definition "A Sound Process Profile that is characterized by the variation, spectrum, or envelope of translated sound waves, typically on a continuum from dull or dark to bright."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001339 +cco:ont00001339 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000890 ; + rdfs:label "Act of Walking"@en ; + skos:definition "An Act of Travel that proceeds by foot."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001347 +cco:ont00001347 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000005 ; + rdfs:label "Behavior"@en ; + skos:definition "An Act in which an Independent Continuant participates as an Agent in response to external or internal stimuli and following some pattern which is dependent upon some combination of that Independent Continuant's internal state and external conditions."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/GO_0007610" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001356 +cco:ont00001356 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000611 ; + rdfs:label "Increase of Disposition"@en ; + skos:definition "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Disposition that it bears."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001359 +cco:ont00001359 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000908 ; + rdfs:comment "An Act of Manufacturing typically involves the mass production of goods."@en ; + rdfs:label "Act of Manufacturing"@en ; + skos:definition "An Act of Artifact Processing wherein Artifacts are created in a Facility for the purpose of being sold to consumers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001374 +cco:ont00001374 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000402 ; + rdfs:comment "Examples: Baptism, Sentencing a person to imprisonment, Pronouncing a couple husband and wife, Declaring war"@en ; + rdfs:label "Act of Declarative Communication"@en ; + skos:definition "An Act of Communication that changes the reality in accord with the proposition of the declaration."@en ; + cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001376 +cco:ont00001376 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000570 ; + rdfs:label "Torque"@en ; + skos:altLabel "Moment of Force"@en ; + skos:definition "A Force that is applied to an object in a direction that would tend to cause the object to rotate around an Axis of Rotation and is the rate of change of an object's Angular Momentum."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Torque&oldid=1063339484"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ExtendedRelationOntology.ttl b/src/cco-iris/ExtendedRelationOntology.ttl new file mode 100644 index 00000000..b6133481 --- /dev/null +++ b/src/cco-iris/ExtendedRelationOntology.ttl @@ -0,0 +1,644 @@ +@prefix : . +@prefix cco: . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent many of the relations (i.e. object properties) that hold between entities at the level of the mid-level Common Core Ontologies."@en ; + rdfs:label "Extended Relation Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/created +dcterms:created rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator +dcterms:creator rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote +skos:editorialNote rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001735 +cco:ont00001735 rdf:type owl:AnnotationProperty ; + rdfs:label "query text"@en ; + skos:definition "The text of a query that is associated with a class"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001737 +cco:ont00001737 rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal definition"@en ; + skos:definition "A Definition that is taken directly from a Doctrinal Source."@en ; + skos:scopeNote "There is only one definition for any given term in an ontology; however, a Doctrinal Definition may be provided in addition to the asserted Definition if the preservation of this information is important. When both a Definition and a Doctrinal Definition are provided for a term, the Definition takes precedence."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf skos:definition . + + +### https://www.commoncoreontologies.org/ont00001739 +cco:ont00001739 rdf:type owl:AnnotationProperty ; + rdfs:label "ordinal measurement annotation"@en ; + skos:definition "An ordinal measurement value of an instance of a quality, realizable or process profile"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001746 . + + +### https://www.commoncoreontologies.org/ont00001741 +cco:ont00001741 rdf:type owl:AnnotationProperty ; + rdfs:label "nominal measurement annotation"@en ; + skos:definition "A nominal measurement value of an instance of a quality, realizable or process profile"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001746 . + + +### https://www.commoncoreontologies.org/ont00001742 +cco:ont00001742 rdf:type owl:AnnotationProperty ; + rdfs:label "term creator"@en ; + skos:definition "The name of the Term Editor who added the term to the ontology."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001762 . + + +### https://www.commoncoreontologies.org/ont00001743 +cco:ont00001743 rdf:type owl:AnnotationProperty ; + rdfs:label "content license"@en ; + skos:definition "The name and description of the license under which the ideas, concepts and other informational content expressed in the .owl file are released."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001744 +cco:ont00001744 rdf:type owl:AnnotationProperty ; + rdfs:label "copyright"@en ; + skos:definition "An assertion of copyright"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001745 +cco:ont00001745 rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal source"@en ; + skos:definition "A Definition Source that consists of a formalized doctrine in which the term is authoritatively defined."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001754 . + + +### https://www.commoncoreontologies.org/ont00001746 +cco:ont00001746 rdf:type owl:AnnotationProperty ; + rdfs:label "measurement annotation"@en ; + skos:definition "A measurement value of an instance of a quality, realizable or process profile"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001747 +cco:ont00001747 rdf:type owl:AnnotationProperty ; + rdfs:label "ratio measurement annotation"@en ; + skos:definition "A ratio measurement value of an instance of a quality, realizable or process profile"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001746 . + + +### https://www.commoncoreontologies.org/ont00001748 +cco:ont00001748 rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal label"@en ; + skos:definition "An Alternative Label that consists of the preferred term or phrase used by a Doctrinal Source to denote the entity."@en ; + skos:scopeNote "When the cco:doctrinal_label is identical to the rdfs:label, the cco:doctrinal_label annotation is superfluous. As a subclass of 'alternative label', 'doctrinal label' is intended to be used to provide additional information about the entity when its preferred doctrinal designator is ambiguous or otherwise inappropriate for use as the rdfs:label."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf skos:altLabel . + + +### https://www.commoncoreontologies.org/ont00001749 +cco:ont00001749 rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal acronym"@en ; + skos:definition "An Acronym that is used by a Doctrinal Source to denote the entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001753 . + + +### https://www.commoncoreontologies.org/ont00001752 +cco:ont00001752 rdf:type owl:AnnotationProperty ; + rdfs:label "has token unit"@en ; + skos:definition "A relation between an information content entity and a widely used measurement unit of the token used to express it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001753 +cco:ont00001753 rdf:type owl:AnnotationProperty ; + rdfs:label "acronym"@en ; + skos:definition "An Alternative Label that consists of a shortened or abbreviated form of the rdfs:label and is used to denote the entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf skos:altLabel . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty ; + rdfs:label "definition source"@en ; + skos:definition "A citation of where all or some of the information used to create the term's Definition was acquired from."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001756 +cco:ont00001756 rdf:type owl:AnnotationProperty ; + rdfs:label "interval measurement annotation"@en ; + skos:definition "A interval measurement value of an instance of a quality, realizable or process profile "@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001746 . + + +### https://www.commoncoreontologies.org/ont00001757 +cco:ont00001757 rdf:type owl:AnnotationProperty ; + rdfs:label "designator annotation"@en ; + skos:definition "A name or other identifier that is used to designate an individual."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001758 +cco:ont00001758 rdf:type owl:AnnotationProperty ; + rdfs:label "http query string"@en ; + skos:definition "The text of an HTTP request that can be sent to a SPARQL Protocol service."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001759 +cco:ont00001759 rdf:type owl:AnnotationProperty ; + rdfs:label "code license"@en ; + skos:definition "The name and description of the license under which the .owl file is released."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty ; + rdfs:label "is curated in ontology"@en ; + skos:definition "An annotation property that links a class, property, or named individual to the URI of the ontology where it is located."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001761 +cco:ont00001761 rdf:type owl:AnnotationProperty ; + rdfs:label "is tokenized by"@en ; + skos:definition "A relation between an information content entity and a widely used token used to express it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001762 +cco:ont00001762 rdf:type owl:AnnotationProperty ; + rdfs:label "term editor"@en ; + skos:definition "The name of a person who contributed to the development or enhancement of the term."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000199 +obo:BFO_0000199 owl:inverseOf cco:ont00001874 . + + +### https://www.commoncoreontologies.org/ont00001775 +cco:ont00001775 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001928 ; + rdfs:domain obo:BFO_0000004 ; + rdfs:range obo:BFO_0000004 ; + rdfs:label "is successor of"@en ; + skos:definition "A continuant c2 is a successor of some continuant c1 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1. Inverse of is predecessor. "@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001777 +cco:ont00001777 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000117 ; + owl:inverseOf cco:ont00001857 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "has process part"@en ; + skos:definition "x has_process_part y iff x and y are instances of Process, such that y occurs during the temporal interval of x, and y either provides an input to x or receives an output of x, or both."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001778 +cco:ont00001778 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + owl:inverseOf cco:ont00001936 ; + rdfs:label "has object"@en ; + skos:definition "If p is a process and c is a continuant, then p has object c if and only if p is performed by an agent and c is part of the projected state that agent intends to achieve by performing p."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001782 +cco:ont00001782 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001832 ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "has all members located in"@en ; + skos:definition "x has all members located in y iff x is an instance of Object Aggregate and y is an instance of independent continuant but not a spatial region, and every member of x is located in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001799 +cco:ont00001799 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001809 ; + rdfs:domain obo:BFO_0000023 ; + rdfs:range obo:BFO_0000027 ; + rdfs:label "role of aggregate"@en ; + skos:definition "x role_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Role, and x inheres_in_aggregate y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001803 +cco:ont00001803 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001819 ; + rdfs:domain obo:BFO_0000003 ; + rdfs:range obo:BFO_0000003 ; + rdfs:label "is cause of"@en ; + skos:definition "x is_cause_of y iff x and y are instances of Occurrent, and y is a consequence of x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001805 +cco:ont00001805 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001888 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "is disrupted by"@en ; + skos:definition "Inverse of disrupts." ; + skos:prefLabel "is disrupted by"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001809 +cco:ont00001809 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001836 ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000020 + obo:BFO_0000031 + ) + ] ; + rdfs:range obo:BFO_0000027 ; + rdfs:label "inheres in aggregate"@en ; + skos:definition "x inheres_in_aggregate y iff x is an instance of Specifically Dependent Continuant and y is an instance of Object Aggregate and z is an instance of Object, such that z bearer_of x, and all other members of y are bearers of a unique instance of the same type as x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001816 +cco:ont00001816 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + owl:inverseOf cco:ont00001986 ; + rdfs:domain obo:BFO_0000002 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "is output of"@en ; + skos:definition "x is_output_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001819 +cco:ont00001819 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000003 ; + rdfs:range obo:BFO_0000003 ; + rdfs:label "caused by"@en ; + skos:definition "x caused_by y iff x and y are instances of Occurrent, and x is a consequence of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001829 +cco:ont00001829 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001809 ; + owl:inverseOf cco:ont00001956 ; + rdfs:domain obo:BFO_0000016 ; + rdfs:range obo:BFO_0000027 ; + rdfs:label "disposition of aggregate"@en ; + skos:definition "x disposition_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Disposition, and x inheres_in_aggregate y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001830 +cco:ont00001830 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + owl:inverseOf cco:ont00001895 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000040 ; + rdfs:label "has accomplice"@en ; + skos:definition "A Processual Entity p1 has_accomplice some agent a1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001832 +cco:ont00001832 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf owl:topObjectProperty ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 + [ rdf:type owl:Class ; + owl:complementOf obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "has some member located in"@en ; + skos:definition "x has some member located in y iff x is an instance of Object Aggregate and y is an instance of independent continuant but not a spatial region, and at least one member of x is located in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001834 +cco:ont00001834 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + owl:inverseOf cco:ont00001886 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000002 ; + rdfs:label "affects"@en ; + skos:definition "x affects y iff x is an instance of Process and y is an instance of Continuant, and x influences y in some manner, most often by producing a change in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001836 +cco:ont00001836 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000020 + obo:BFO_0000031 + ) + ] ; + rdfs:label "aggregate bearer of"@en ; + skos:definition "x aggregate_bearer_of y iff x is an instance of Object Aggregate and y is an instance of Specifically Dependent Continuant and z is an instance of Object, such that z bearer of y, and all other members of x are bearers of a unique instance of the same type as y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001841 +cco:ont00001841 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + owl:inverseOf cco:ont00001921 ; + rdfs:domain obo:BFO_0000002 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "is input of"@en ; + skos:definition "x is_input_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001845 +cco:ont00001845 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000183 ; + owl:inverseOf cco:ont00001918 ; + rdfs:domain obo:BFO_0000029 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "is site of"@en ; + skos:definition "x is_site_of y iff x is an instance of Site and y is an instance of Process, such that y occurs in x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001852 +cco:ont00001852 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + owl:inverseOf cco:ont00001949 ; + rdfs:domain obo:BFO_0000040 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "accessory in"@en ; + skos:definition "y is_accessory_in x iff x is an instance of Process and y is an instance of Agent, such that y assists another agent in the commission of x, and y was not located at the location of x when x occurred, and y was not an agent_in x."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001857 +cco:ont00001857 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000132 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "is part of process"@en ; + skos:definition "x is_part_of_process y iff x and y are instances of Process, such that x occurs during the temporal interval of y, and x either provides an input to y or receives an output of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001861 +cco:ont00001861 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001991 ; + rdfs:domain obo:BFO_0000030 ; + rdfs:range obo:BFO_0000030 ; + rdfs:label "is material of"@en ; + skos:definition "An object m is material of an object o when m is the material of which o consists and that material does not undergo a change of kind during the creation of o"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001874 +cco:ont00001874 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000008 ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( obo:BFO_0000015 + obo:BFO_0000035 + ) + ] ; + rdfs:label "is temporal region of"@en ; + skos:definition "t is temporal region of p iff p occupies temporal region t."@en ; + skos:editorialNote "Leaving this is in ERO for now since BFO2020 has no inverse of occupies-temporal-region yet."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001886 +cco:ont00001886 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + rdfs:domain obo:BFO_0000002 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "is affected by"@en ; + skos:definition "x is_affected_by y iff x is an instance of Continuant and y is an instance of Process, and y influences x in some manner, most often by producing a change in x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001888 +cco:ont00001888 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "disrupts"@en ; + skos:definition "A relation where one process disrupts another process from occurring as it would have."@en ; + skos:editorialNote "To lower the grade of a process is to lower the quality of a process according to some standard, for example when realizing a capability or a function."@en ; + skos:prefLabel "disrupts"@en ; + skos:scopeNote "A process can disrupt another process from occurring as it would have by 1) preventing a disposition or role from being realized by that process, 2) lowering the grade of the process, or 3) stopping the process from continuing to occur."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001895 +cco:ont00001895 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + rdfs:domain obo:BFO_0000040 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "accomplice in"@en ; + skos:definition "An agent a1 is accomplice_in some Processual Entity p1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001901 +cco:ont00001901 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001836 ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range obo:BFO_0000023 ; + rdfs:label "aggregate has role"@en ; + skos:definition "x aggregate_has_role y iff x is an instance of Object Aggregate and y is an instance of Role, such that x aggregate_bearer_of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001907 +cco:ont00001907 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001836 ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range obo:BFO_0000019 ; + rdfs:label "aggregate has quality"@en ; + skos:definition "x aggregate_has_quality y iff x is an instance of Object Aggregate and y is an instance of Quality, such that x aggregate_bearer_of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001918 +cco:ont00001918 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000066 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000029 ; + rdfs:label "occurs at"@en ; + skos:definition "x occurs_at y iff x is an instance of Process and y is an instance of Site, such that x occurs in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001921 +cco:ont00001921 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000002 ; + rdfs:label "has input"@en ; + skos:definition "y has_input x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001928 +cco:ont00001928 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000004 ; + rdfs:range obo:BFO_0000004 ; + rdfs:label "is predecessor of"@en ; + skos:definition "A continuant c1 is a predecessor of some continuant c2 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1."@en ; + skos:scopeNote "More informally, c1 is a predecessor of c2 iff c1 has been followed or replaced by c2."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001933 +cco:ont00001933 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001803 ; + owl:inverseOf cco:ont00001962 ; + rdfs:label "process starts"@en ; + skos:definition "x process_starts y iff x and y are instances of processes, and x is_cause_of y, and i is an instance of a temporal instant, and r is an instance of a temporal interval, and y has starting instance i, and x occurs on r, and r has inside instant i."@en ; + skos:scopeNote "A process x starts another process y when x causes y while x is still occurring."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001936 +cco:ont00001936 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000056 ; + rdfs:label "is object of"@en ; + skos:definition "If p is a process and c is a continuant, then c is object of p if and only if the c is part of the projected state that the agent intends to achieve by performing p."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001947 +cco:ont00001947 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001809 ; + rdfs:domain obo:BFO_0000019 ; + rdfs:range obo:BFO_0000027 ; + rdfs:label "quality of aggregate"@en ; + skos:definition "x quality_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Quality, and x inheres_in_aggregate y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001949 +cco:ont00001949 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000040 ; + rdfs:label "has accessory"@en ; + skos:definition "x has_accessory y iff x is an instance of Process and y is an instance of Agent, such that y assists another agent in the commission of x, and y was not located at the location of x when x occurred, and y was not an agent_in x."@en ; + cco:ont00001754 "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001956 +cco:ont00001956 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001836 ; + rdfs:domain obo:BFO_0000027 ; + rdfs:range obo:BFO_0000016 ; + rdfs:label "aggregate has disposition"@en ; + skos:definition "x aggregate_has_disposition y iff x is an instance of Object Aggregate and y is an instance of Disposition, such that x aggregate_bearer_of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001959 +cco:ont00001959 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001970 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "inhibits"@en ; + skos:definition "x inhibits y iff x and y are non-identical Processes, d is a Decrease of Realizable Entity, and x is_cause_of d, and r is a Realizable Entity, and d has_participant r, and r realized_in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001962 +cco:ont00001962 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001819 ; + rdfs:label "process started by"@en ; + skos:definition "x process_started_by y iff x and y are instances of processes, and x is caused_by y, and i is an instance of a temporal instant, and r is an instance of a temporal interval, and x has starting instance i, and y occurs on r, and r has inside instant i."@en ; + skos:scopeNote "A process x is started by another process y when y causes x while y is still occurring."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001970 +cco:ont00001970 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + rdfs:label "inhibited by"@en ; + skos:definition "y inhibited_by x iff x and y are non-identical Processes, d is a Decrease of Realizable Entity, and x is_cause_of d, and r is a Realizable Entity, and d has_participant r, and r realized_in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001986 +cco:ont00001986 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000057 ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000002 ; + rdfs:label "has output"@en ; + skos:definition "y has_output x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=IPO_model&oldid=1024398398"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001991 +cco:ont00001991 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf owl:topObjectProperty ; + rdfs:domain obo:BFO_0000030 ; + rdfs:range obo:BFO_0000030 ; + rdfs:label "is made of"@en ; + skos:definition "An object o is made of an object m when m is the material that o consists of and that material does not undergo a change of kind during the creation of o"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/FacilityOntology.ttl b/src/cco-iris/FacilityOntology.ttl new file mode 100644 index 00000000..ad1809bc --- /dev/null +++ b/src/cco-iris/FacilityOntology.ttl @@ -0,0 +1,872 @@ +@prefix : . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent buildings and campuses that are designed to serve some specific purpose and which are common to multiple domains."@en ; + rdfs:label "Facility Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 +cco:ont00001753 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000032 +cco:ont00000032 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000052 ; + rdfs:label "Church"@en ; + skos:definition "A Religious Facility that is designed for Christian worship and prayer."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Church_(building)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000040 +cco:ont00000040 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001102 ; + rdfs:label "Grocery Store"@en ; + skos:definition "A Commercial Facility that is designed to sell food."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Grocery_store&oldid=1060022873"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000041 +cco:ont00000041 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000410 ; + rdfs:label "Hostel"@en ; + skos:definition "A Residential Facility that is designed to temporarily lodge guests in a sociable environment for relatively low costs."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hostel&oldid=1057812930"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000045 +cco:ont00000045 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Petroleum Depot"@en ; + skos:definition "A Storage Facility that is designed to store petroleum, oil, or lubricants."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000052 +cco:ont00000052 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Religious Facility"@en ; + skos:definition "A Facility that is designed for worship and prayer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000055 +cco:ont00000055 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Healthcare Facility"@en ; + skos:definition "A Facility that is designed for the diagnosis, treatment, and prevention of disease."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Medicine&oldid=1062226814"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000060 +cco:ont00000060 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000639 ; + rdfs:label "Open Pit Mine"@en ; + skos:definition "A Mine that is designed to support the extraction of materials from the ground directly without using tunnels."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Open-pit_mining&oldid=1059271938"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000094 +cco:ont00000094 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000946 ; + rdfs:label "Seat of National Government"@en ; + skos:definition "A Government Building that is designed for the administration of a sovereign nation."@en ; + skos:example "Parliament of Canada" , + "United States Capitol" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000104 +cco:ont00000104 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000639 ; + rdfs:label "Underwater Mine"@en ; + skos:definition "A Mine that is designed to support the extraction of materials from the ocean floor."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Naval_mine&oldid=1062538523"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000108 +cco:ont00000108 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000226 ; + rdfs:label "Rail Facility"@en ; + skos:definition "A Transportation Facility that is designed for transferring people or cargo to and from Trains."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Train_station&oldid=1063922802"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000172 +cco:ont00000172 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000483 ; + rdfs:label "Base of Operations"@en ; + skos:altLabel "Main Operating Base"@en ; + skos:definition "A Military Base with permanently stationed operating forces, robust Infrastructure, and strengthened force protection measures such that it is designed to launch and support large-scale operations, support smaller or less-permanent bases, and organize supply facilities."@en ; + cco:ont00001753 "MOB" ; + cco:ont00001754 "http://www.jcs.mil/Portals/36/Documents/Doctrine/pubs/dictionary.pdf?ver=2018-08-27-122235-653" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000180 +cco:ont00000180 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000410 ; + rdfs:label "Hotel"@en ; + skos:definition "A Residential Facility that is designed to provide lodging that is paid for on a short-term basis."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hotel&oldid=1063583593"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000192 +cco:ont00000192 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000195 +cco:ont00000195 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001078 ; + rdfs:label "Heliport"@en ; + skos:definition "An Airport that is designed for launching, receiving, and housing Rotorcraft."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Heliport&oldid=1049937701"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000220 +cco:ont00000220 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Ammunition Depot"@en ; + skos:definition "A Storage Facility that is designed to store Portions of Ammunition."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ammunition_dump&oldid=1044466765"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000226 +cco:ont00000226 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Transportation Facility"@en ; + skos:definition "A Facility that is designed for commencing or concluding the transportation of transportation artifacts, or for housing transportation artifacts."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transport&oldid=1063526665"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000232 +cco:ont00000232 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000677 ; + rdfs:label "Pumping Station"@en ; + skos:definition "A Product Transport Facility that is designed to pump fluids from one place to another."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pumping_station&oldid=1045678418"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000245 +cco:ont00000245 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Petroleum Manufacturing Facility"@en ; + skos:definition "A Factory that is designed to manufacture petroleum-based products."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Petroleum&oldid=1062956217"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000248 +cco:ont00000248 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Chemical Manufacturing Facility"@en ; + skos:definition "A Factory that is designed to manufacture or process chemicals."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Chemical_industry&oldid=1061177027"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000262 +cco:ont00000262 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001102 ; + rdfs:label "Shop"@en ; + skos:definition "A Commercial Facility designed to sell small lots of goods to consumers."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000270 +cco:ont00000270 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Educational Facility"@en ; + skos:definition "A Facility that is designed for facilitating learning, or the acquisition of knowledge, skills, values, beliefs, and habits."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000271 +cco:ont00000271 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000639 ; + rdfs:label "Underground Mine"@en ; + skos:definition "A Mine that is designed to support the extraction of materials from the ground using underground tunnels and shafts."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Underground_mining_(hard_rock)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000330 +cco:ont00000330 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001076 ; + rdfs:label "Thermal Power Plant"@en ; + skos:definition "An Electric Power Station that is designed to convert heat energy into electrical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Thermal_power_station&oldid=1062208548"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000331 +cco:ont00000331 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000410 ; + rdfs:label "House"@en ; + skos:definition "A Residential Facility that is designed to provide a self-standing, permanent residence for an individual, family, household, multiple families, or similar-sized group."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=House&oldid=1062818553"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000332 +cco:ont00000332 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Training Camp"@en ; + skos:definition "A Facility that is designed for rigorous and focused training in order to learn or improve skills, usually involving physical actions."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Training_camp&oldid=1059977631"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000336 +cco:ont00000336 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000410 ; + rdfs:label "Apartment Building"@en ; + skos:definition "A Residential Facility that is designed to contain multiple permanent residences comprised of a suite of rooms."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Apartment&oldid=1064019048"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000339 +cco:ont00000339 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Agricultural Facility"@en ; + skos:definition "A Facility that is designed as a building or campus for agricultural processes with the aim of cultivating animals, plants, or fungi for food, fiber, biofuel, medicinal plants, or other products to sustain and enhance human life."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Agriculture&oldid=1063222666"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000349 +cco:ont00000349 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000479 ; + rdfs:label "Police Station"@en ; + skos:definition "A Public Safety Facility that is designed for the professional and clerical processes of a local police force."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Police_station&oldid=1056208781"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000375 +cco:ont00000375 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Warehouse"@en ; + skos:definition "A Storage Facility that is designed to store commercial goods."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Warehouse&oldid=1063721454"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000381 +cco:ont00000381 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Weapon Manufacturing Facility"@en ; + skos:definition "A Factory that is designed to produce or assemble weapons."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Arms_industry&oldid=1063811497"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000410 +cco:ont00000410 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Residential Facility"@en ; + skos:definition "A Facility that is designed to house one or more Persons."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000421 +cco:ont00000421 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000330 ; + rdfs:label "Nuclear Power Plant"@en ; + skos:definition "A Thermal Power Plant that is designed to produce heat by means of a nuclear reactor, which is then converted to electrical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nuclear_power_plant&oldid=1062752651"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000423 +cco:ont00000423 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Motor Vehicle Manufacturing Facility"@en ; + skos:definition "A Factory that is designed to manufacture automobiles."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Automotive_industry&oldid=1061661751"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000432 +cco:ont00000432 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Missile Launch Site"@en ; + skos:definition "A Military Facility that is designed for storing and launching missiles."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Missile_launch_facility&oldid=1062709375"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000468 +cco:ont00000468 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001102 ; + rdfs:label "Office Building"@en ; + skos:definition "A Commercial Facility that is designed as an environment for conducting commercial, professional, or bureaucratic work."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Office&oldid=1063508719"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000479 +cco:ont00000479 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Public Safety Facility"@en ; + skos:definition "A Facility that is designed for the prevention of and protection from events that could endanger, injure, or damage the general public."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000483 +cco:ont00000483 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Military Base"@en ; + skos:definition "A Military Facility that is designed to shelter military equipment and personnel and to facilitate training and operations."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military_base&oldid=1047077734"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000510 +cco:ont00000510 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000052 ; + rdfs:label "Mosque"@en ; + skos:definition "A Religious Facility that is designed for Islamic worship and prayer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mosque&oldid=1062609892"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000531 +cco:ont00000531 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Communications Facility"@en ; + skos:definition "A Facility that is designed to support processes of receiving or transmitting information."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000545 +cco:ont00000545 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000946 ; + rdfs:label "Seat of Local Government"@en ; + skos:altLabel "City Hall"@en , + "Town Hall"@en ; + skos:definition "A Government Building that is designed for the administration of a local community."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000583 +cco:ont00000583 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000180 ; + rdfs:label "Motel"@en ; + skos:definition "A Hotel that is designed to accommodate motor vehicles along with their occupants."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Motel&oldid=1063898961"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000639 +cco:ont00000639 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Mine"@en ; + skos:definition "A Facility that is designed to support the extraction of minerals or other geological materials from an orebody, lode, vein, seam, reef, or placer deposit within the earth."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mining&oldid=1062844924"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000641 +cco:ont00000641 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Entertainment Facility"@en ; + skos:definition "A Facility that is designed to host activities that are intended to hold the interest of, or give pleasure or delight to, an audience."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000655 +cco:ont00000655 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Mailing Facility"@en ; + skos:definition "A Facility that is designed for the systematic physical transportation of documents and packages."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000664 +cco:ont00000664 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000531 ; + rdfs:label "Radio Relay Station"@en ; + skos:definition "A Communications Facility that is designed to support the receiving and re-transmitting of radio signals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000667 +cco:ont00000667 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Combat Outpost"@en ; + skos:definition "A Military Facility that is designed to support the conduction of combat operations of limited scope or size."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Outpost_(military)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000670 +cco:ont00000670 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001258 ; + rdfs:label "Distribution Port"@en ; + skos:definition "A Port that is designed with the cargo handling equipment necessary for the loading and unloading of Watercraft"@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000677 +cco:ont00000677 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Product Transport Facility"@en ; + skos:definition "A Facility that is designed to transport some product."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000680 +cco:ont00000680 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Medical Depot"@en ; + skos:definition "A Storage Facility that is designed to store medical supplies."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000705 +cco:ont00000705 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000677 ; + rdfs:label "Power Transmission Line"@en ; + skos:definition "A Product Transport Facility that is designed to transmit electricity over distance via a system of above ground wires including their supports."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electric_power_transmission&oldid=1062551058"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000708 +cco:ont00000708 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Water Tower"@en ; + skos:definition "A Facility that is the bearer of functions realized in processes of storing water in an elevated container."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Water_tower&oldid=1059754959"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000710 +cco:ont00000710 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Command Post Facility"@en ; + skos:definition "A Military Facility that is designed to support the command and control of Military Operations or Forces."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/command-post" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000717 +cco:ont00000717 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001076 ; + rdfs:label "Fossil Fuel Power Plant"@en ; + skos:definition "An Electric Power Station that is designed to convert fossil fuels (e.g. coal, natural gas, or petroleum) into electrical energy."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fossil_fuel&oldid=1062298144"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000737 +cco:ont00000737 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000483 ; + rdfs:label "Forward Operations Base"@en ; + skos:altLabel "Forward Operating Base"@en ; + skos:definition "A Military Base that is located relatively close to an offensive Area of Operations, is supported by the Base of Operations, and is designed to support local strategic objectives and tactical operations."@en ; + cco:ont00001753 "FOB" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Forward_operating_base&oldid=1059263624"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000757 +cco:ont00000757 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000052 ; + rdfs:label "Synagogue"@en ; + skos:definition "A Religious Facility that is designed for Judaic worship and prayer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Synagogue&oldid=1063773298"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000761 +cco:ont00000761 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000226 ; + rdfs:label "Pier"@en ; + skos:definition "A Transportation Facility that is designed to partially enclose a harbor and form a landing place for Watercraft."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pier&oldid=1057802753"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000778 +cco:ont00000778 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Chemical Depot"@en ; + skos:definition "A Storage Facility that is designed to store chemicals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000782 +cco:ont00000782 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Factory"@en ; + skos:definition "A Facility that is designed for manufacturing or refining material products."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Factory&oldid=1064125324"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000802 +cco:ont00000802 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000641 ; + rdfs:label "Stage"@en ; + skos:definition "An Entertainment Facility that is designed to provide a space upon which entertaining performances or productions can occur."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Stage_(theatre)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000814 +cco:ont00000814 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Water Treatment Facility"@en ; + skos:definition "A Facility that is designed for making water more acceptable for a specific end-use."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Water_treatment&oldid=1061706931"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000846 +cco:ont00000846 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001076 ; + rdfs:label "Hydroelectric Power Plant"@en ; + skos:definition "An Electric Power Station that is designed to convert hydropower into electrical power."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hydroelectricity&oldid=1062438236"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000867 +cco:ont00000867 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000677 ; + rdfs:label "Pipeline"@en ; + skos:definition "A Product Transport Facility that is designed to transport goods or materials through a pipe."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pipeline&oldid=1024308788"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000881 +cco:ont00000881 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Storage Facility"@en ; + skos:definition "A Facility that is designed to store materials or goods."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Storage&oldid=1048222564"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000882 +cco:ont00000882 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001076 ; + rdfs:label "Wind Farm"@en ; + skos:definition "An Electric Power Station that is designed to convert the wind's kinetic energy into electrical power by means of wind turbines."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wind_farm&oldid=1062817899"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000901 +cco:ont00000901 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001375 ; + rdfs:label "Decontamination Facility"@en ; + skos:definition "A Washing Facility that is designed to wash personnel or equipment after (potential) contamination by radioactive, biological, or chemical material."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Decontamination&oldid=1049850150"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000905 +cco:ont00000905 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000655 ; + rdfs:label "Post Office"@en ; + skos:definition "A Mailing Facility that is designed for serving customers of the national postal system."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Post_office&oldid=1063684373"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000946 +cco:ont00000946 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Government Building"@en ; + skos:definition "A Facility that is designed for the administration of a community."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Administration_(government)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000957 +cco:ont00000957 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Reservoir"@en ; + skos:definition "A Storage Facility that is designed to store water in a man-made open enclosure or area."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reservoir&oldid=1055068000"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001052 +cco:ont00001052 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Military Facility"@en ; + skos:definition "A Facility that is designed to support a Military Force."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001076 +cco:ont00001076 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Electric Power Station"@en ; + skos:altLabel "Power Plant"@en ; + skos:definition "A Facility that is designed to generate electrical power."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_station&oldid=1052973815"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001078 +cco:ont00001078 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000226 ; + rdfs:label "Airport"@en ; + skos:definition "A Transportation Facility that is designed for launching, receiving, and housing Aircraft."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Airport&oldid=1063243963"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001089 +cco:ont00001089 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001283 ; + rdfs:label "Petrochemical Refinery"@en ; + skos:definition "A Refinery that is designed for refining crude oil, intermediate petroleum products, or synthetic petroleum into products of value."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Petrochemical&oldid=1060574535"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001091 +cco:ont00001091 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Fort"@en ; + skos:definition "A Military Facility that is designed to support the defense of or solidification of rule over some Geospatial Region and its inhabitants."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fortification&oldid=1060156408"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001098 +cco:ont00001098 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000055 ; + rdfs:label "Hospital"@en ; + skos:definition "A Healthcare Facility that is designed to provide patient treatment with specialized staff and equipment."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hospital&oldid=1063047817"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001102 +cco:ont00001102 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Commercial Facility"@en ; + skos:definition "A Facility that is designed for buying and selling goods and services, especially on a large scale."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Commerce&oldid=1063120985"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001107 +cco:ont00001107 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001315 ; + rdfs:label "Landfill"@en ; + skos:definition "A Waste Management Facility that is designed for disposing of waste by burial."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Landfill&oldid=1058364420"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001165 +cco:ont00001165 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000332 ; + rdfs:label "Terrorist Training Camp"@en ; + skos:definition "A Training Camp designed to teach students methods of terrorism."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Terrorist_training_camp&oldid=1037856600"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001257 +cco:ont00001257 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Nuclear Storage Depot"@en ; + skos:definition "A Storage Facility that is designed to store nuclear material."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001258 +cco:ont00001258 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000226 ; + rdfs:label "Port"@en ; + skos:definition "A Transportation Facility that is designed to contain harbors for docking Watercraft and for transfering people or cargo to and from land."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001283 +cco:ont00001283 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Refinery"@en ; + skos:definition "A Factory that is designed for refining raw materials into products of value."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Refinery&oldid=1027092124"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001287 +cco:ont00001287 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Maintenance Facility"@en ; + skos:definition "A Facility that is designed to be used to perform actions to maintain or improve the state of some property or equipment."@en ; + cco:ont00001754 "http://www.dictionary.com/browse/maintain" ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001295 +cco:ont00001295 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Financial Facility"@en ; + skos:definition "A Facility that is designed to support the management of money."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001297 +cco:ont00001297 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001052 ; + rdfs:label "Military Headquarters Facility"@en ; + skos:definition "A Military Facility that is designed for military administration and coordination."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Headquarters&oldid=1046429636"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001308 +cco:ont00001308 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001315 ; + rdfs:label "Sewage Treatment Facility"@en ; + skos:definition "A Waste Management Facility that is designed for removing contaminants from wastewater, especially sewage."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sewage_treatment&oldid=1062966352"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001311 +cco:ont00001311 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000782 ; + rdfs:label "Aircraft Manufacturing Facility"@en ; + skos:definition "A Factory that is designed to manufacture Aircraft."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aerospace_manufacturer&oldid=1059223410"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001315 +cco:ont00001315 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Waste Management Facility"@en ; + skos:definition "A Facility that is designed for managing waste for some portion of the waste's existence."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001344 +cco:ont00001344 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000881 ; + rdfs:label "Biological Depot"@en ; + skos:definition "A Storage Facility that is designed to store biological agents."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001358 +cco:ont00001358 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000270 ; + rdfs:label "School"@en ; + skos:definition "An Education Facility that is designed to provide learning space and environments for teaching of students under the direction of teachers."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=School&oldid=1063515394"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001362 +cco:ont00001362 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001283 ; + rdfs:label "Gas Processing Facility"@en ; + skos:definition "A Refinery that is designed for refining natural gas into products of value."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Natural-gas_processing&oldid=1056700541"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001375 +cco:ont00001375 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000192 ; + rdfs:label "Washing Facility"@en ; + skos:definition "A Facility that is designed to wash personnel or equipment."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Washing&oldid=1035998791"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001380 +cco:ont00001380 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000339 ; + rdfs:label "Farm"@en ; + skos:definition "An Agricultural Facility that is designed to produce food and other crops."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Farm&oldid=1058311769"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001383 +cco:ont00001383 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000479 ; + rdfs:label "Fire Station"@en ; + skos:altLabel "Fire Hall"@en , + "Fire House"@en ; + skos:definition "A Public Safety Facility that is designed for the storage of firefighting apparatus."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fire_station&oldid=1060666629"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/GeospatialOntology.ttl b/src/cco-iris/GeospatialOntology.ttl new file mode 100644 index 00000000..ba61fdb5 --- /dev/null +++ b/src/cco-iris/GeospatialOntology.ttl @@ -0,0 +1,684 @@ +@prefix : . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent sites, spatial regions, and other entities, especially those that are located near the surface of Earth, as well as the relations that hold between them."@en ; + rdfs:label "Geospatial Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/created +dcterms:created rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator +dcterms:creator rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel +skos:prefLabel rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001791 +cco:ont00001791 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001810 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "coincides with"@en ; + skos:definition "An immaterial entity im1 coincides with some immaterial entity im2 iff im1 is a spatial part of im2 and im2 is a spatial part of im1."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive and symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001796 +cco:ont00001796 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001944 ; + owl:inverseOf cco:ont00001909 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "tangential part of"@en ; + skos:definition "An immaterial entity im1 is a tangential part of some immaterial entity im2 iff im1 is a spatial part of im2 and there exists some immaterial entity im3 such that im3 externally connects with im1 and im3 externally connects with im2."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001797 +cco:ont00001797 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001810 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "partially overlaps with"@en ; + skos:definition "An immaterial entity im1 partially overlaps with some immaterial entity im2 iff im1 overlaps with im2 and im1 is not a spatial part of im2 and im2 is not a spatial part of im1."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001810 +cco:ont00001810 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "connected with"@en ; + skos:definition "An immaterial entity im1 is connected with some immaterial entity im2 iff there exists some immaterial entity im3 that is common to both im1 and im2."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001827 +cco:ont00001827 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001944 ; + owl:inverseOf cco:ont00001989 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "nontangential part of"@en ; + skos:definition "An immaterial entity im1 is a nontangential part of some immaterial entity im2 iff im1 is a spatial part of im2 and there does not exist an immaterial entity im3 such that im3 externally connects with im1 and im3 externally connects with im2."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001838 +cco:ont00001838 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "disconnected with"@en ; + skos:definition "An immaterial entity im1 is disconnected with some immaterial entity im2 iff there does not exist some immaterial entity im3 that is common to both im1 and im2."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001855 +cco:ont00001855 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000178 , + cco:ont00001810 ; + owl:inverseOf cco:ont00001944 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "has spatial part"@en ; + skos:definition "y has_spatial_part x iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001909 +cco:ont00001909 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001855 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "has tangential part"@en ; + skos:definition "x has_tangential_part y iff x, y, and z are instances of Immaterial Entity, and x has_spatial_part y, such that z externally connects with both x and y."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001931 +cco:ont00001931 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001810 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "externally connects with"@en ; + skos:definition "An immaterial entity im1 externally connects with some immaterial entity im2 iff im1 connects with im2 and im1 does not overlap with im2."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001944 +cco:ont00001944 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000176 , + cco:ont00001810 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:comment "in the sense used here, spatial part of is elsewhere referred to as proper spatial part of"@en ; + rdfs:label "spatial part of"@en ; + skos:definition "x spatial_part_of y iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001989 +cco:ont00001989 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001855 ; + rdfs:domain obo:BFO_0000141 ; + rdfs:range obo:BFO_0000141 ; + rdfs:label "has nontangential part"@en ; + skos:definition "x has_nontangential_part y iff x and y are instances of Immaterial Entity, and x has_spatial_part y, such that there does not exist another instance of an Immaterial Entity which externally connects with both x and y."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +################################################################# +# Data properties +################################################################# + +### http://www.opengis.net/ont/geosparql#asWKT + rdf:type owl:DatatypeProperty ; + rdfs:comment "ISO 19162:2015"@en ; + rdfs:label "as WKT"@en ; + skos:definition "A Data Property that has as its range a string formated according to the Well-known text standardization for geometric objects."@en ; + skos:example "Polygon ((10 10, 10 20, 20 20, 20 15, 10 10))" ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001763 +cco:ont00001763 rdf:type owl:DatatypeProperty ; + rdfs:comment "Altitude values typically use kilometers as the Unit of Measurement."@en ; + rdfs:label "has altitude value"@en ; + skos:scopeNote "This data property can be used along with has_latitude_value and has_longitude_value to connect three-dimensional spatial data to a single Information Bearing Entity to specify the location of an entity in a Geospatial Region."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001764 +cco:ont00001764 rdf:type owl:DatatypeProperty ; + rdfs:range xsd:decimal ; + rdfs:label "has longitude value"@en ; + skos:definition "A Data Property that has as its range the longitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001766 +cco:ont00001766 rdf:type owl:DatatypeProperty ; + rdfs:range xsd:decimal ; + rdfs:label "has latitude value"@en ; + skos:definition "A Data Property that has as its range the latitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000017 +cco:ont00000017 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Minor Axis"@en ; + skos:definition "A One-Dimensional Spatial Region that is the longest line segment perpendicular to the Major Axis that connects two points on the edge of an Ellipse."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Semi-major_and_semi-minor_axes&oldid=1047911304"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000031 +cco:ont00000031 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001081 ; + rdfs:label "Atmospheric Feature"@en ; + skos:definition "A Geographic Feature that is part of the atmosphere (including the atmosphere itself as a non-proper part) having a relatively stable lifecycle and which has a location that can be distinguished from the surrounding portion of the atmosphere."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000068 +cco:ont00000068 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000028 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001855 ; + owl:someValuesFrom cco:ont00001348 + ] ; + rdfs:label "Three-Dimensional Path"@en ; + skos:definition "A Three-Dimensional Spatial Region that encompasses the spatial region through which some Object travels."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000070 +cco:ont00000070 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000018 ; + rdfs:label "Ground Track Point"@en ; + skos:definition "A Zero-Dimensional Spatial Region that is an idealized point located on the surface of an Astronomical Body directly below an Object Track Point."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000072 +cco:ont00000072 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000224 ; + rdfs:label "Low Density Residential Area"@en ; + skos:definition "A Populated Place where houses are on lots of more than one acre."@en ; + cco:ont00001754 "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000125 +cco:ont00000125 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000373 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000176 ; + owl:someValuesFrom cco:ont00000358 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000373 ; + rdfs:label "Bounding Box Point"@en ; + skos:definition "A Geospatial Position that is a proper part of some Geospatial Region Bounding Box."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000161 +cco:ont00000161 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Coordinate System Axis"@en ; + skos:definition "A One-Dimensional Spatial Region defined by a Coordinate System for the purpose of identifying the position of entities along one dimension of the Coordinate System's spatial framework."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000163 +cco:ont00000163 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000161 ; + rdfs:label "z-Axis"@en ; + skos:definition "A Coordinate System Axis designated by the variable 'z'."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000170 +cco:ont00000170 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000018 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001944 ; + owl:someValuesFrom cco:ont00000205 + ] ; + rdfs:label "Object Track Point"@en ; + skos:definition "A Zero-Dimensional Spatial Region that is an idealized point where an Object is or was located during some motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000188 +cco:ont00000188 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Ground Track"@en ; + skos:altLabel "Ground Trace"@en ; + skos:definition "A One-Dimensional Spatial Region defined by the line formed on the surface of an Astronomical Body by projecting an imaginary line from the center of the tracked Object to the center of the Astronomical Body as the Object travels above the surface."@en ; + skos:scopeNote "The Ground Track is the line on the surface of the Earth or other Astronomical Body that is located directly below the Object Track."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ground_track&oldid=1058025510"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000205 +cco:ont00000205 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001855 ; + owl:someValuesFrom cco:ont00000170 + ] ; + rdfs:comment "The exact line of the Object Track may be drawn based on the Center of Mass of the Object or another reference point, such as the location of a transponder beacon or the center of a radar cross-section, depending on the Object being tracked."@en ; + rdfs:label "Object Track"@en ; + skos:definition "A One-Dimensional Spatial Region that consists of the idealized line along which an Object has traversed during some motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000207 +cco:ont00000207 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000142 ; + rdfs:label "One-Dimensional Geospatial Boundary"@en ; + skos:definition "A Fiat Line that is a boundary of some Geospatial Region."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000213 +cco:ont00000213 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000472 ; + rdfs:label "Subcontinent"@en ; + skos:definition "A Geospatial Region that is bounded by a large, relatively self-contained landmass forming a subdivision of a Continent."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Continent&oldid=1064057312"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000218 +cco:ont00000218 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Major Axis"@en ; + skos:definition "A One-Dimensional Spatial Region that is the longest line segment that connects two points on the edge of an Ellipse."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000221 +cco:ont00000221 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Semi-Minor Axis"@en ; + skos:definition "A One-Dimensional Spatial Region that is equal to half the length of the Minor Axis of an Ellipse."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000224 +cco:ont00000224 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001197 ; + rdfs:label "Populated place"@en ; + skos:definition "An Anthropogenic Feature at which people live or have lived."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Human_settlement&oldid=1060418164"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000251 +cco:ont00000251 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000472 ; + rdfs:label "Continent"@en ; + skos:definition "A Geospatial Region that is bounded by any of the Earth's main continuous expanses of land."@en ; + cco:ont00001754 "JC3IEDM version 3.0.2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000297 +cco:ont00000297 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Portion of Hydrosphere"@en ; + skos:definition "A fiat object part of the combined mass of water found on, under, and above the surface of a natural satellite"@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hydrosphere&oldid=1128848972"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000358 +cco:ont00000358 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001130 ; + rdfs:label "Geospatial Region Bounding Box"@en ; + skos:definition "A Geospatial Polygon that has some Geospatial Region as a non-tangential proper part."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000365 +cco:ont00000365 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000161 ; + rdfs:label "x-Axis"@en ; + skos:definition "A Coordinate System Axis designated by the variable 'x'."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000373 +cco:ont00000373 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000147 ; + rdfs:label "Geospatial Position"@en ; + skos:definition "A Fiat Point that is at or near the surface of the Earth and fixed according to some Geospatial Coordinate Reference System."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000387 +cco:ont00000387 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Axis of Rotation"@en ; + skos:altLabel "Rotational Axis"@en ; + skos:definition "A One-Dimensional Spatial Region defined by the line around which a spinning body rotates."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000393 +cco:ont00000393 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000387 ; + rdfs:label "Yaw Axis"@en ; + skos:altLabel "Vertical Axis"@en ; + skos:definition "An Axis of Rotation that passes through the center of an object's Mass from the top to the bottom and is perpendicular to the direction of the object's motion. For objects in Orbit, the Yaw Axis passes through the Barycenter of its Orbit."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000400 +cco:ont00000400 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001197 ; + rdfs:label "Park"@en ; + skos:definition "An Anthropogenic Feature that is a bounded area of land, or water, usually in its natural or semi-natural (landscaped) state and set aside for some purpose, usually to do with recreation or conservation."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Park&oldid=1061073992"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000472 +cco:ont00000472 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000029 ; + rdfs:label "Geospatial Region"@en ; + skos:definition "A Site that is at or near the surface of the Earth."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000487 +cco:ont00000487 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000472 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000124 ; + owl:someValuesFrom obo:BFO_0000001 + ] ; + rdfs:label "Geospatial Location"@en ; + skos:definition "A Geospatial Region that is at which an Entity or Event is located."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000489 +cco:ont00000489 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000224 ; + rdfs:label "High Density Residential Area"@en ; + skos:definition "A Populated Place which is characterized by densely contained multiple-unit living structures."@en ; + cco:ont00001754 "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000505 +cco:ont00000505 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000018 ; + rdfs:label "Center of Mass"@en ; + skos:definition "A Zero-Dimensional Spatial Region that is the point where the weighted position vectors of the distributed Mass of a Material Entity relative to this point sum to zero."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Center_of_mass&oldid=1059976491"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000563 +cco:ont00000563 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001081 ; + rdfs:label "Hydrographic Feature"@en ; + skos:definition "A Geographic Feature associated with water."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000574 +cco:ont00000574 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000040 ; + rdfs:label "Environmental Feature"@en ; + skos:definition "A Material Entity that is either a natural or man-made feature of the environment."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000722 +cco:ont00000722 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000146 ; + rdfs:label "Sea Level"@en ; + skos:definition "A Fiat Surface that divides the spheroid composed of Earth and its atmosphere at some point that corresponds to the mean level of calm water in the Earth’s oceans."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000755 +cco:ont00000755 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Zenith"@en ; + skos:definition "A One-Dimensional Spatial Region that extends from a given location upward along the local vertical direction pointing in the direction opposite the apparent Gravitational Force at that location."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Zenith&oldid=1052625030"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000779 +cco:ont00000779 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Portion of Cryosphere"@en ; + skos:definition "A fiat object part of the frozen part of a natural satellite's hydosphere"@en ; + cco:ont00001754 "https://oceanservice.noaa.gov/facts/cryosphere.html (accessed 03/06/2023)"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000794 +cco:ont00000794 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000207 ; + rdfs:label "Geospatial Ellipse"@en ; + skos:definition "A One-Dimensional Geospatial Boundary that is formed by following a symmetric arc between four vertices which are connected to the center point of the ellipse via a straight line."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000801 +cco:ont00000801 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000161 ; + rdfs:label "y-Axis"@en ; + skos:definition "A Coordinate System Axis designated by the variable 'y'."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000817 +cco:ont00000817 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000207 ; + rdfs:label "Geospatial Line String"@en ; + skos:definition "A One-Dimensional Geospatial Boundary that has two or more Geospatial Positions as vertices, where each vertex is connected to only one other vertex by a straight line."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000873 +cco:ont00000873 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001081 ; + rdfs:label "Physiographic Feature"@en ; + skos:definition "A Geographic Feature that is a geomorphological unit characterized by its surface form and location in the landscape."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Landform&oldid=1060439172"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000911 +cco:ont00000911 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Semi-Major Axis"@en ; + skos:definition "A One-Dimensional Spatial Region that is equal to half the length of the Major Axis of an Ellipse."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000939 +cco:ont00000939 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000817 ; + rdfs:label "Geospatial Line"@en ; + skos:definition "A Geospatial Line String that has only two vertices."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001016 +cco:ont00001016 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Portion of Lithosphere"@en ; + skos:definition "A fiat object part of the rigid, outermost rocky shell of a natural satellite."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lithosphere&oldid=1143215085"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001035 +cco:ont00001035 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000387 ; + rdfs:label "Pitch Axis"@en ; + skos:altLabel "Lateral Axis"@en ; + skos:definition "An Axis of Rotation that passes through the center of an object's Mass and is perpendicular both to the direction of the object's motion and to the object's Yaw Axis."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001037 +cco:ont00001037 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001197 ; + rdfs:label "Constructed Feature"@en ; + skos:definition "An Anthropogenic Feature that has been constructed by deliberate human effort."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001040 +cco:ont00001040 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000026 ; + rdfs:label "Nadir"@en ; + skos:definition "A One-Dimensional Spatial Region that extends from a given location downward along the local vertical direction pointing in the direction of the apparent Gravitational Force at that location."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nadir&oldid=1057007248"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001081 +cco:ont00001081 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000574 ; + rdfs:label "Geographic Feature"@en ; + skos:definition "An Environmental Feature that is a natural (i.e. not human made) topographical feature having a (relatively) stable location in some Geospatial Region which can be designated by location-specific data."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001106 +cco:ont00001106 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000387 ; + rdfs:label "Roll Axis"@en ; + skos:altLabel "Longitudinal Axis"@en ; + skos:definition "An Axis of Rotation that passes through the center of an object's Mass from the front to the back of the object as defined by the direction of the object's motion."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001130 +cco:ont00001130 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000817 ; + rdfs:label "Geospatial Polygon"@en ; + skos:definition "A Geospatial Line String that has at least three vertices where the connecting lines form a closed loop."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001195 +cco:ont00001195 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000207 ; + rdfs:label "Geospatial Error Region"@en ; + skos:definition "A One-Dimensional Geospatial Boundary that bounds some Geospatial Region according to probability estimations for locating some object within it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001197 +cco:ont00001197 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000574 ; + rdfs:label "Anthropogenic Feature"@en ; + skos:definition "An Environmental Feature that is related to or is the result of the influence of human beings on the environment."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/anthropogenic" ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001259 +cco:ont00001259 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Portion of Atmosphere"@en ; + skos:definition "A fiat object part of the layer of gas or layers of gases that envelop a natural satellite."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Atmosphere&oldid=1135486662"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001341 +cco:ont00001341 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + rdfs:label "Portion of Geosphere"@en ; + skos:definition "A fiat object part that is composed of one or more portions of the atmosphere, cryosphere, hydrosphere, or lithosphere"@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Geosphere&oldid=1137306949"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001348 +cco:ont00001348 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000028 ; + rdfs:comment "For an object in motion, its Three-Dimensional Position is part of its Three-Dimensional Path."@en ; + rdfs:label "Three-Dimensional Position"@en ; + skos:definition "A Three-Dimensional Spatial Region that encompasses the (minimal) spatial region in which some object is located at a particular time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/InformationEntityOntology.ttl b/src/cco-iris/InformationEntityOntology.ttl new file mode 100644 index 00000000..0dd88556 --- /dev/null +++ b/src/cco-iris/InformationEntityOntology.ttl @@ -0,0 +1,2269 @@ +@prefix : . +@prefix cco: . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports cco:GeospatialOntology , + cco:TimeOntology ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent generic types of information as well as the relationships between information and other entities."@en ; + rdfs:label "Information Entity Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 +cco:ont00001753 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001801 +cco:ont00001801 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001808 ; + rdfs:range cco:ont00000958 ; + rdfs:label "is subject of"@en ; + skos:definition "A primitive relationship between an instance of an Entity and an instance of an Information Content Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001808 +cco:ont00001808 rdf:type owl:ObjectProperty ; + rdfs:domain cco:ont00000958 ; + rdfs:range obo:BFO_0000001 ; + rdfs:label "is about"@en ; + skos:definition "A primitive relationship between an Information Content Entity and some Entity."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000136" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001811 +cco:ont00001811 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001966 ; + owl:inverseOf cco:ont00001963 ; + rdfs:domain cco:ont00001010 ; + rdfs:label "is a ordinal measurement of"@en ; + skos:definition "x is_a_ordinal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale ordered by rank."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001824 +cco:ont00001824 rdf:type owl:ObjectProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00000253 ; + rdfs:label "is excerpted from"@en ; + skos:definition "An Information Bearing Entity b1 is excerpted from another Information Bearing Entity B2 iff b1 is part of some Information Bearing Entity B1 that is carrier of some Information Content Entity C1, B2 is carrier of some Information Content Entity C2, C1 is not identical with C2, b1 is carrier of some Information Content Entity c1, b2 is an Information Bearing Entity that is part of B2 and b2 is carrier of c1 (i.e. the same Information Content Entity as borne by b1)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001837 +cco:ont00001837 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000084 ; + owl:inverseOf cco:ont00001908 ; + rdfs:domain cco:ont00000829 ; + rdfs:range cco:ont00000253 ; + rdfs:label "time zone identifier used by"@en ; + skos:definition "x time_zone_identifier_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Time Zone Identifier, such that x designates the spatial region associated with the time zone mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001863 +cco:ont00001863 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000101 ; + owl:inverseOf cco:ont00001961 ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00000120 ; + rdfs:label "uses measurement unit"@en ; + skos:definition "y uses_measurement_unit x iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001868 +cco:ont00001868 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001966 ; + owl:inverseOf cco:ont00001914 ; + rdfs:domain cco:ont00000293 ; + rdfs:label "is a nominal measurement of"@en ; + skos:definition "x is_a_nominal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001873 +cco:ont00001873 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001801 ; + owl:inverseOf cco:ont00001938 ; + rdfs:range cco:ont00001069 ; + rdfs:comment "See notes for inverse property." ; + rdfs:label "represented by"@en ; + skos:definition "y represented_by x iff x is an instance of Information Content Entity, and y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001877 +cco:ont00001877 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001966 ; + owl:inverseOf cco:ont00001964 ; + rdfs:domain cco:ont00001364 ; + rdfs:label "is a interval measurement of"@en ; + skos:definition "x is_a_interval_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ; + skos:example "a measurement of air temperature on the Celsius scale." ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001878 +cco:ont00001878 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001919 ; + rdfs:label "is mention of"@en ; + skos:definition "x is_mention_of y iff x is an instance Information Bearing Entity and y is an instance Entity, such that x is used as a reference to y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001879 +cco:ont00001879 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001801 ; + owl:inverseOf cco:ont00001916 ; + rdfs:range cco:ont00000686 ; + rdfs:label "designated by"@en ; + skos:definition "x designated_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that given some context, y uniquely distinguishes x from other entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001884 +cco:ont00001884 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001801 ; + owl:inverseOf cco:ont00001980 ; + owl:propertyChainAxiom ( cco:ont00001917 + obo:BFO_0000176 + ) ; + rdfs:label "condition described by"@en ; + skos:definition "c condition_described_by p iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001899 +cco:ont00001899 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001942 ; + owl:inverseOf cco:ont00001976 ; + rdfs:domain cco:ont00001175 ; + rdfs:range cco:ont00000253 ; + rdfs:label "language used in"@en ; + skos:definition "x language_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Language, such that the literal value of y is a string that is encoded according to the syntax of x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001900 +cco:ont00001900 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001997 ; + owl:inverseOf cco:ont00001913 ; + rdfs:domain cco:ont00000469 ; + rdfs:range cco:ont00000253 ; + rdfs:label "is geospatial coordinate reference system of"@en ; + skos:definition "x is_geospatial_coordinate_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001904 +cco:ont00001904 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001917 ; + owl:inverseOf cco:ont00001966 ; + rdfs:range cco:ont00001163 ; + rdfs:label "is measured by"@en ; + skos:definition "y is_measured_by x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001908 +cco:ont00001908 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000101 ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00000829 ; + rdfs:label "uses time zone identifier"@en ; + skos:definition "x uses_time_zone_identifier y iff x is an instance of Information Bearing Entity and y is an instance of Time Zone Identifier, such that y designates the spatial region associated with the time zone mentioned in x."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001912 +cco:ont00001912 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000101 ; + owl:inverseOf cco:ont00001997 ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00000398 ; + rdfs:label "uses reference system"@en ; + skos:definition "y uses_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001913 +cco:ont00001913 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001912 ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00000469 ; + rdfs:label "uses geospatial coordinate reference system"@en ; + skos:definition "y uses_geospatial_coordinate_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001914 +cco:ont00001914 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001904 ; + rdfs:range cco:ont00000293 ; + rdfs:label "is measured by nominal"@en ; + skos:definition "y is_measured_by_nominal x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001916 +cco:ont00001916 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001808 ; + rdfs:domain cco:ont00000686 ; + rdfs:label "designates"@en ; + skos:definition "x designates y iff x is an instance of an Information Content Entity, and y is an instance of an Entity, such that given some context, x uniquely distinguishes y from other entities."@en ; + skos:example "a URL designates the location of a Web Page on the internet" , + "a person's name designates that person" , + "a vehicle identification number designates some vehicle" ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001917 +cco:ont00001917 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001801 ; + owl:inverseOf cco:ont00001982 ; + rdfs:range cco:ont00000853 ; + rdfs:label "described by"@en ; + skos:definition "x described_by y iff y is an instance of Information Content Entity, and x is an instance of Entity, such that y is about the characteristics by which y can be recognized or visualized."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001919 +cco:ont00001919 rdf:type owl:ObjectProperty ; + rdfs:label "is mentioned by"@en ; + skos:definition "y is_mention_by x iff x is an instance Information Bearing Entity and y is an instance Entity, such that x is used as a reference to y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001920 +cco:ont00001920 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001801 ; + owl:inverseOf cco:ont00001942 ; + rdfs:range cco:ont00000965 ; + rdfs:label "prescribed by"@en ; + skos:definition "x prescribed_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that y serves as a rule or guide for x if x is an Occurrent, or y serves as a model for x if x is a Continuant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001938 +cco:ont00001938 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001808 ; + rdfs:domain cco:ont00001069 ; + rdfs:comment "Isomorphism between the carrier of x and the represented entity can be via a direct similarity relation, e.g., grooves in a vinyl record corresponding to sound waves, or linguistic convention, e.g., a court stenographer's transcription of spoken words, as well as others, such as encoding processes for images."@en ; + rdfs:label "represents"@en ; + skos:definition "x represents y iff x is an instance of Information Content Entity, y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en , + "The relationship that is being defined here is that between the content of a photographic image and its object, between the content of a video and its objects and events, between the content of an audio recording and the sounds or events generating those sounds, or between the content of a written transcript and the verbal event that it transcribes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001942 +cco:ont00001942 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001808 ; + rdfs:domain cco:ont00000965 ; + rdfs:label "prescribes"@en ; + skos:definition "x prescribes y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x serves as a rule or guide for y if y an Occurrent, or x serves as a model for y if y is a Continuant."@en ; + skos:example "A blueprint prescribes some artifact or facility by being a model for it." , + "A professional code of conduct prescribes some realizations of a profession (role) by giving rules for how the bearer should act in those realizations." , + "An operations plan prescribes an operation by enumerating the tasks that need to be performed in order to achieve the objectives of the operation." ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001961 +cco:ont00001961 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000084 ; + rdfs:domain cco:ont00000120 ; + rdfs:range cco:ont00000253 ; + rdfs:label "is measurement unit of"@en ; + skos:definition "x is_measurement_unit_of y iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001963 +cco:ont00001963 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001904 ; + rdfs:range cco:ont00001010 ; + rdfs:label "is measured by ordinal"@en ; + skos:definition "y is_measured_by_ordinal x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale ordered by rank."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001964 +cco:ont00001964 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001904 ; + rdfs:range cco:ont00001364 ; + rdfs:label "is measured by interval"@en ; + skos:definition "y is_measured_by_interval x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001965 +cco:ont00001965 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001904 ; + owl:inverseOf cco:ont00001983 ; + rdfs:range cco:ont00001022 ; + rdfs:label "is measured by ratio"@en ; + skos:definition "y is_measured_by_ratio x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001966 +cco:ont00001966 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001982 ; + rdfs:domain cco:ont00001163 ; + rdfs:comment "This object property, as well as all of its children are typified as functional properties. This means that for instances x, y, and z if x is a measurement of y and x is a measurement of z, then y = z."@en ; + rdfs:label "is a measurement of"@en ; + skos:definition "x is_a_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ; + skos:scopeNote "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001976 +cco:ont00001976 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001920 ; + rdfs:domain cco:ont00000253 ; + rdfs:range cco:ont00001175 ; + rdfs:label "uses language"@en ; + skos:definition "x uses_language y iff x is an instance of an Information Bearing Entity and y is an instance of a Language such that the literal value of x is a string that is encoded according to the syntax of y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001980 +cco:ont00001980 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001808 ; + owl:propertyChainAxiom ( obo:BFO_0000178 + cco:ont00001982 + ) ; + rdfs:label "describes condition"@en ; + skos:definition "p describes_condition c iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001982 +cco:ont00001982 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001808 ; + rdfs:domain cco:ont00000853 ; + rdfs:comment "It is possible that this relation should be a functional property, that is for all x, y, z if x describes y and x describes z then y = z. For example, if a financial report x describes the quarterly results of a company y and that same financial report describes the quarterly results of a company z, then it should be inferred that companies y and z are the same. We refrained from classifying the relation as a functional property on the concern that descriptions are multifaceted and so consequently it may be that the same report would contain descriptions of multiple entities."@en ; + rdfs:label "describes"@en ; + skos:definition "x describes y iff x is an instance of Information Content Entity, and y is an instance of Entity, such that x is about the characteristics by which y can be recognized or visualized."@en ; + skos:example "the content of a newspaper article describes some current event" , + "the content of a visitor's log describes some facility visit" , + "the content of an accident report describes some accident" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001983 +cco:ont00001983 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001966 ; + rdfs:domain cco:ont00001022 ; + rdfs:label "is a ratio measurement of"@en ; + skos:definition "x is_a_ratio_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001997 +cco:ont00001997 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf obo:BFO_0000084 ; + rdfs:domain cco:ont00000398 ; + rdfs:range cco:ont00000253 ; + rdfs:label "is reference system of"@en ; + skos:definition "x is_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001765 +cco:ont00001765 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:label "has text value"@en ; + skos:definition "A data property that has as its range a string value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001767 +cco:ont00001767 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:dateTime ; + rdfs:label "has datetime value"@en ; + skos:definition "A data property that has as its value a datetime value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001768 +cco:ont00001768 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:anyURI ; + rdfs:label "has URI value"@en ; + skos:definition "A data property that has as its range a URI value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001769 +cco:ont00001769 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:decimal ; + rdfs:label "has decimal value"@en ; + skos:definition "A data property that has as its range a decimal value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001770 +cco:ont00001770 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:double ; + rdfs:label "has double value"@en ; + skos:definition "A data property that has as its range a double value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001771 +cco:ont00001771 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:label "has date value"@en ; + skos:definition "A data property that has as its range a date value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001772 +cco:ont00001772 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:boolean ; + rdfs:label "has boolean value"@en ; + skos:definition "A data property that has as its range a boolean value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001773 +cco:ont00001773 rdf:type owl:DatatypeProperty ; + rdfs:domain cco:ont00000253 ; + rdfs:range xsd:integer ; + rdfs:label "has integer value"@en ; + skos:definition "A data property that has as its range an integer value."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000003 +cco:ont00000003 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000686 ; + owl:disjointWith cco:ont00000649 ; + rdfs:label "Designative Name"@en ; + skos:altLabel "Name"@en ; + skos:definition "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified cultural or social namespace and which is typically a word or phrase in a natural language that has an accepted cultural or social significance."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000029 +cco:ont00000029 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000745 ; + rdfs:label "Median Point Estimate Information Content Entity"@en ; + skos:altLabel "Median"@en ; + skos:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to either the middle value or the average of the two values which separate the set into two equally populated upper and lower sets."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000067 +cco:ont00000067 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001328 ; + rdfs:comment "In traditional astronomical usage, civil time is mean solar time as calculated from midnight as the beginning of the Civil Day."@en , + "Note that Civil Time Reference System is more accurately represented as a Temporal Reference System that participates in an act of usage that is sanctioned by an appropriate civil authority. As such, it should be represented as a defined class."@en ; + rdfs:label "Civil Time Reference System"@en ; + skos:definition "A Temporal Reference System that is a statutory time scale as designated by civilian authorities to determine local time(s)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000073 +cco:ont00000073 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000399 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom obo:BFO_0000038 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000399 ; + rdfs:label "Temporal Interval Identifier"@en ; + skos:altLabel "One-Dimensional Temporal Region Identifier"@en ; + skos:definition "A Temporal Region Identifier that designates some Temporal Interval."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000077 +cco:ont00000077 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000649 ; + owl:disjointWith cco:ont00000923 ; + rdfs:label "Code Identifier"@en ; + skos:altLabel "Code ID"@en , + "ID Code"@en , + "Identifier Code"@en ; + skos:definition "A Non-Name Identifier that consists of a string of characters that was created and assigned according to an encoding system such that metadata can be derived from the identifier."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000080 +cco:ont00000080 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000827 ; + rdfs:label "Standard Time of Day Identifier"@en ; + skos:definition "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using the Hours, Minutes, and Seconds of the Day that preceded the Temporal Instant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000087 +cco:ont00000087 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000894 ; + rdfs:comment "An Ordinal Date Identifier may or may not also contain a number indicating a specific Year. If both numbers are included, the ISO 8601 ordinal date format stipulates that the two numbers be formatted as YYYY-DDD or YYYYDDD where [YYYY] indicates a year and [DDD] is the day of that year, from 001 through 365 (or 366 in leap years)."@en ; + rdfs:label "Ordinal Date Identifier"@en ; + skos:altLabel "Ordinal Date"@en ; + skos:definition "A Decimal Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since the beginning of the Year."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ordinal_date&oldid=1061989434"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000120 +cco:ont00000120 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000853 ; + rdfs:label "Measurement Unit"@en ; + skos:definition "A Descriptive Information Content Entity that describes a definite magnitude of a physical quantity, defined and adopted by convention and/or by law, that is used as a standard for measurement of the same physical quantity."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Unit_of_measurement&oldid=1061038125"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000124 +cco:ont00000124 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001328 ; + rdfs:label "Solar Time Reference System"@en ; + skos:definition "A Temporal Reference System that is based on the position of the Sun in the sky."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000127 +cco:ont00000127 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001980 ; + owl:someValuesFrom obo:BFO_0000001 + ] ; + rdfs:label "Performance Specification"@en ; + skos:definition "A Directive Information Content Entity that prescribes some aspect of the behavior of a participant in a Process given one or more operating conditions."@en ; + skos:example "Maximum Speed at high altitude; Rate of Ascent at 10 degrees celsius with nominal payload." ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000146 +cco:ont00000146 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001175 ; + owl:disjointWith cco:ont00000496 ; + rdfs:label "Artificial Language"@en ; + skos:definition "A Language that is developed through conscious planning and premeditation, rather than one that was developed through use and repetition."@en ; + skos:example "Esperanto" , + "Python Programming Language" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Constructed_language&oldid=1062733589"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000154 +cco:ont00000154 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000745 ; + rdfs:comment "While there is always at least one Mode for every set of data, it is possible for any given set of data to have multiple Modes. The Mode is typically most useful when the members of the set are all Nominal Measurement Information Content Entities."@en ; + rdfs:label "Mode Point Estimate Information Content Entity"@en ; + skos:altLabel "Mode"@en , + "Statistical Mode"@en ; + skos:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the value or values that occur most often in the set."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000164 +cco:ont00000164 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001010 ; + rdfs:label "Minimum Ordinal Measurement Information Content Entity"@en ; + skos:definition "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the smallest or having the least amount relative to a nominally described set of like entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000186 +cco:ont00000186 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001010 ; + rdfs:label "Artifact Version Ordinality"@en ; + skos:definition "An Ordinal Measurement Information Content Entity that is about the form of an Artifact which differs in some respects from previous or future forms of that Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000203 +cco:ont00000203 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000293 ; + rdfs:label "Event Status Nominal Information Content Entity"@en ; + skos:definition "A Nominal Measurement Information Content Entity that is a measurement of the current state of a process."@en ; + skos:example "proposed, approved, planned, in progress, completed, failed, or successful" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000223 +cco:ont00000223 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000253 +cco:ont00000253 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000030 + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000101 ; + owl:someValuesFrom cco:ont00000958 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000030 ; + rdfs:label "Information Bearing Entity"@en ; + skos:altLabel "IBE"@en ; + skos:definition "An Object upon which an Information Content Entity generically depends."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000178"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000263 +cco:ont00000263 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001328 ; + rdfs:comment "A single Clock Time System does not provide a complete means for identifying or measuring times. Depending on the particular Clock Time System, it may be compatible for use with one or more other Temporal Reference Systems."@en ; + rdfs:label "Clock Time System"@en ; + skos:definition "A Temporal Reference System that is a convention for keeping and displaying the Time of Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000275 +cco:ont00000275 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000398 ; + rdfs:comment "Note that, while reference systems and reference frames are treated as synonyms here, some people treat them as related but separate entities. See: http://www.ggos-portal.org/lang_en/GGOS-Portal/EN/Topics/GeodeticApplications/GeodeticReferenceSystemsAndFrames/GeodeticReferenceSystemsAndFrames.html"@en ; + rdfs:label "Spatial Reference System"@en ; + skos:altLabel "Coordinate System"@en , + "Spatial Coordinate System"@en , + "Spatial Reference Frame"@en ; + skos:definition "A Reference System that describes a set of standards for uniquely identifying the position of an entity or the direction of a vector within a defined spatial region by means of measurements along one or more Coordinate System Axes."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Coordinate_system&oldid=1060461397"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000276 +cco:ont00000276 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000891 ; + rdfs:label "Solar Calendar System"@en ; + skos:definition "A Calendar System that is designed to organize and identify dates based on the cycles of an Astronomical Body's Orbit around the Sun."@en ; + skos:scopeNote "Unless otherwise specified, a Solar Calendar System is assumed to be relative to the Orbit of the Earth around the Sun."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Solar_calendar&oldid=1058016588"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000293 +cco:ont00000293 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001868 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001163 ; + owl:disjointWith cco:ont00001010 , + cco:ont00001022 , + cco:ont00001364 ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Nominal Measurement Information Content Entity"@en ; + skos:definition "A Measurement Information Content Entity that consists of a symbol that classifies Entities according to some shared, possibly arbitrary, characteristic."@en ; + skos:example "The sentence \"January 20, 1985 was a cold day in Chicago, IL\" is the carrier of a nominal measurement."@en , + "a measurement that classifies automobiles as sedans, coupes, hatchbacks, or convertibles" , + "a measurement that classifies military intelligence as strategic, operational, or tactical" , + "a measurement that classifies rocks as igneous, sedimentary, or metamorphic" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000314 +cco:ont00000314 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000197 ; + owl:someValuesFrom cco:ont00000253 + ] ; + rdfs:comment "Typically, an IQE will be a complex pattern made up of multiple qualities joined together spatially."@en ; + rdfs:label "Information Quality Entity"@en ; + skos:altLabel "IQE"@en ; + skos:definition "A Quality that concretizes some Information Content Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000359 +cco:ont00000359 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000369 +cco:ont00000369 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001010 ; + rdfs:label "Priority Measurement Information Content Entity"@en ; + skos:altLabel "Criticality Measurement"@en , + "Importance Measurement"@en , + "Priority Measurement"@en ; + skos:definition "An Ordinal Measurement Information Content Entity that is a measurement of the relative importance of an entity."@en ; + skos:example "low, normal, high, urgent, or immediate priority" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000390 +cco:ont00000390 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom obo:BFO_0000006 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000686 ; + rdfs:label "Spatial Region Identifier"@en ; + skos:definition "A Designative Information Content Entity that designates some Spatial Region."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000398 +cco:ont00000398 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000853 ; + rdfs:label "Reference System"@en ; + skos:definition "A Descriptive Information Content Entity that describes a set of standards for organizing and understanding data of the specified type or domain."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000399 +cco:ont00000399 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom obo:BFO_0000008 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000686 ; + rdfs:label "Temporal Region Identifier"@en ; + skos:definition "A Designative Information Content Entity that designates some Temporal Region."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000406 +cco:ont00000406 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Geocoordinate"@en ; + skos:definition "A Measurement Unit specifying the geospatial coordinates of a location."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000419 +cco:ont00000419 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000077 ; + rdfs:label "Part Number"@en ; + skos:definition "A Code Identifier that designates a type of part whose instances are designed to be part of some Artifact."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000469 +cco:ont00000469 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000275 ; + rdfs:label "Geospatial Coordinate Reference System"@en ; + skos:altLabel "Geographic Coordinate System"@en ; + skos:definition "A Spatial Reference System that is used to determine and identify the location of a point or object at or near the surface of the Earth."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000496 +cco:ont00000496 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001175 ; + rdfs:label "Natural Language"@en ; + skos:definition "A Language that is developed and evolves through use and repetition, rather than through conscious planning or premeditation."@en ; + skos:example "English" , + "Mandarin (Chinese)" , + "Spanish" ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Natural_language&oldid=1060890461"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000498 +cco:ont00000498 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000529 +cco:ont00000529 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000073 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00000800 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000073 ; + rdfs:label "Date Identifier"@en ; + skos:altLabel "Day Identifier"@en ; + skos:definition "A Temporal Interval Identifier that designates some Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000539 +cco:ont00000539 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001022 ; + rdfs:label "Count Measurement Information Content Entity"@en ; + skos:definition "A Ratio Measurement Information Content Entity that is a measurement of the number of members of some aggregate."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000540 +cco:ont00000540 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000399 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom obo:BFO_0000203 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000399 ; + rdfs:label "Temporal Instant Identifier"@en ; + skos:altLabel "Zero-Dimensional Temporal Region Identifier"@en ; + skos:definition "A Temporal Region Identifier that designates some Temporal Instant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000589 +cco:ont00000589 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000973 ; + rdfs:label "Julian Date Fraction"@en ; + skos:altLabel "Julian Date Time Identifier"@en , + "Julian Day Fraction"@en ; + skos:definition "A Decimal Time of Day Identifier that designates an approximate Temporal Instant that is part of some Julian Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000592 +cco:ont00000592 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en , + "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information ('Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."@en ; + rdfs:label "Veracity Measurement Information Content Entity"@en ; + skos:altLabel "Accuracy of Information"@en , + "Trueness Measurement"@en , + "Veracity Measurement"@en ; + skos:definition "A Measurement Information Content Entity that is a measurement of the extent to which a description conforms to the reality it describes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000604 +cco:ont00000604 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001010 ; + rdfs:label "Maximum Ordinal Measurement Information Content Entity"@en ; + skos:definition "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the largest or having the greatest amount relative to a nominally described set of like entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000605 +cco:ont00000605 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000003 ; + rdfs:label "Abbreviated Name"@en ; + skos:definition "A Designative Name that is a shortened form of a Proper Name."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000626 +cco:ont00000626 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000853 ; + rdfs:comment "Since predictions are inherently about not-yet-existant things, the Modal Relation Ontology term 'describes' (i.e. mro:describes) should be used (instead of the standard cco:describes) to relate instances of Predictive Information Content Entity to the entities they are about."@en ; + rdfs:label "Predictive Information Content Entity"@en ; + skos:altLabel "Prediction"@en , + "Prediction Information Content Entity"@en ; + skos:definition "A Descriptive Information Content Entity that describes an uncertain future event."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000630 +cco:ont00000630 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000124 ; + rdfs:label "Universal Time Reference System"@en ; + skos:definition "A Solar Time Reference System that is based on the average speed of the Earth's rotation and which uses the prime meridian at 0° longitude as a reference point."@en ; + cco:ont00001753 "UT" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000649 +cco:ont00000649 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000686 ; + rdfs:label "Non-Name Identifier"@en ; + skos:altLabel "ID"@en , + "Identifier"@en ; + skos:definition "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified namespace or context, is not a Designative Name, may be automatically or randomly generated, and typically has no preexisting cultural or social significance."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000653 +cco:ont00000653 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Algorithm"@en ; + skos:definition "A Directive Information Content Entity that prescribes some Process and contains a finite sequence of unambiguous instructions in order to achieve some Objective."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000064"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000669 +cco:ont00000669 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001022 ; + rdfs:label "Distance Measurement Information Content Entity"@en ; + skos:definition "A Ratio Measurement Information Content Entity that is a measurement of a One-Dimensional Extent inhering in some Site that is externally connected to two Independent Continuants."@en ; + skos:scopeNote "Displacement (vector) is the shortest possible distance (scalar) between two points. Further thought is needed to adequately handle measurements of distance traveled along a path, e.g., a circuitous path or an arc (such as the surface of a planet), versus the simple case of a direct, straight line between two points."@en , + "Distance is a measure between two reference points, which are located on or in, or in some manner part of, the two obejcts for which the length of the extent between is sought. For exmple, the center point of the indentation of a ball in the sand and the edge of the foul line, the forwardmost point on a car's bumper and the closest point on the 2-dimensional plane that serves as the fiat boundary of a crosswalk, the center of an antenna array and closest point on ground."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000683 +cco:ont00000683 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000605 ; + rdfs:label "Diminutive Name"@en ; + skos:definition "An Abbreviated Name that is a familiar form of a Proper Name."@en ; + skos:example "Alex, Bob, Cathy" ; + skos:scopeNote "\"Familiar form of a Proper Name\" means: that the name is (originally) a short, affectionate version of the fuller name, used (originally) by family or friends."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000686 +cco:ont00000686 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000958 ; + owl:disjointWith cco:ont00000853 , + cco:ont00000965 ; + rdfs:label "Designative Information Content Entity"@en ; + skos:altLabel "Designative ICE"@en ; + skos:definition "An Information Content Entity that consists of a set of symbols that designate some Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000692 +cco:ont00000692 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:comment "Every probability measurement is made within a particular context given certain background assumptions."@en ; + rdfs:label "Probability Measurement Information Content Entity"@en ; + skos:altLabel "Likelihood Measurement"@en , + "Probability Measurement"@en ; + skos:definition "A Measurement Information Content Entity that is a measurement of the likelihood that a Process or Process Aggregate occurs."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Probability&oldid=1059657543"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000729 +cco:ont00000729 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000275 ; + rdfs:label "Spherical Coordinate System"@en ; + skos:definition "A Spatial Reference System for three-dimensional spatial regions that identifies each point using an ordered triple of numerical coordinates that consist of the radial distance of the point of interest from a fixed origin, its polar angle measured from a fixed zenith direction, and the azimuth angle of its orthogonal projection measured from a fixed direction on a reference plane that passes through the origin and is orthogonal to the zenith."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Spherical_coordinate_system&oldid=1061029174"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000731 +cco:ont00000731 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en , + "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations ('Deviation Measurement Information Content Entity')."@en ; + rdfs:label "Deviation Measurement Information Content Entity"@en ; + skos:altLabel "Conformance Measurement"@en , + "Degree of Conformance"@en , + "Degree of Deviation"@en , + "Deviation Measurement"@en ; + skos:definition "A Measurement Information Content Entity that is a measurement of the extent to which an entity conforms to how it is expected or supposed to be."@en ; + skos:example "a missile impact deviates from its target location by 100 feet" , + "a satellite deviaties from its predicted orbital path by 5 kilometers" , + "an overweight piece of luggage deviates from an airline's maximum allowed weight by +10 pounds" ; + skos:scopeNote "In order for a Deviation to exist, an entity must first be expected, represented, prescribed, or predicted as being a certain way. Then, at a future time, this value can be compared to its actual, reported, or measured value to determine the Deviation between these values."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000735 +cco:ont00000735 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000406 ; + rdfs:label "Geospatial Region Bounding Box Identifier List"@en ; + skos:definition "A Measurement Unit of Geocoordinate that is comprised of 4 pairs of coordinates, one for each of the 4 defining points (North, West, South, East) of a Geospatial Region Bounding Box."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000745 +cco:ont00000745 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001176 ; + rdfs:label "Point Estimate Information Content Entity"@en ; + skos:altLabel "Best Estimate"@en , + "Point Estimate"@en , + "Point Estimate Measurement Information Content Entity"@en ; + skos:definition "An Estimate Information Content Entity that consists of a single value for the measured entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000749 +cco:ont00000749 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000894 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00000498 + ] ; + rdfs:label "Julian Day Number"@en ; + skos:definition "A Decimal Date Identifier that designates some Julian Day by using a number to indicate the sequential ordering of the Day since the Julian Date epoch."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000800 +cco:ont00000800 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000827 +cco:ont00000827 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000540 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00000223 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000540 ; + rdfs:label "Time of Day Identifier"@en ; + skos:definition "A Temporal Instant Identifier that designates some Time of Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000829 +cco:ont00000829 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000390 ; + rdfs:comment """Standards of date, time, and time zone data formats: +ISO/WD 8601-2 (http://www.loc.gov/standards/datetime/iso-tc154-wg5_n0039_iso_wd_8601-2_2016-02-16.pdf) +W3C (https://www.w3.org/TR/NOTE-datetime)"""@en , + "There is no class 'Time Zone' (the region), only 'Time Zone Identifier' (the designator for some region). Instances of 'Time Zone Identifier' should be related to instances of 'Information Bearing Entity' by means of the object properites 'uses time zone identifier' and 'time zone identifier used by' as appropriate. This is supposed to be analogous to the way we represent the relationship between measurement values and measurement units, where the relevant instance of Information Bearing Entity 'uses measurement unit' some instance of Measurement Unit (i.e., an instance of Information Content Entity)."@en ; + rdfs:label "Time Zone Identifier"@en ; + skos:definition "A Spatial Region Identifier that designates the region associated with some uniform standard time for legal, commercial, or social purposes."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000833 +cco:ont00000833 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000973 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00000589 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000178 ; + owl:someValuesFrom cco:ont00000749 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001916 ; + owl:someValuesFrom cco:ont00000359 + ] ; + rdfs:label "Julian Date Identifier"@en ; + skos:definition "A Decimal Time of Day Identifier that designates a Julian Date and is composed of both a Julian Day Number and a Julian Date Fraction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000845 +cco:ont00000845 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001022 ; + rdfs:comment "A percentage is one way to express a proportional measure where the decimal expression of the proportion is multiplied by 100, thus giving the proportional value with respect to a whole of 100. E.g., the ratio of pigs to cows on a farm is 44 to 79 (44:79 or 44/79). The proportion of pigs to total animals is 44 to 123 or 44/123. The percentage of pigs is the decimal equivalent of the proportion (0.36) multiplied by a 100 (36%). The percentage can be expressed as a proportion where the numerator value is transformed for a denominator of 100, i.e., 36 of a 100 animals are pigs (36/100)."@en , + "We may want to add either a subclass for Percentage or a data property (has percentage value) that links the percentage expression for a proportion to the relevant IBE."@en ; + rdfs:label "Proportional Ratio Measurement Information Content Entity"@en ; + skos:definition "A Ratio Measurement Information Content Entity that is a measurement of a portion of a whole (described by the numerator) compared against that whole (described by the denominator) where the whole is a nominally described set of like entities."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000853 +cco:ont00000853 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001982 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000958 ; + owl:disjointWith cco:ont00000965 ; + rdfs:label "Descriptive Information Content Entity"@en ; + skos:altLabel "Descriptive ICE"@en ; + skos:definition "An Information Content Entity that consists of a set of propositions that describe some Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000891 +cco:ont00000891 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001328 ; + rdfs:label "Calendar System"@en ; + skos:definition "A Temporal Reference System that is designed to organize and identify dates."@en ; + skos:scopeNote "Calendars typically organize dates through the use of naming and temporal conventions based on Days, Weeks, Months, and Years."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000894 +cco:ont00000894 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000529 ; + rdfs:label "Decimal Date Identifier"@en ; + skos:definition "A Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since a specified Reference Time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000896 +cco:ont00000896 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000745 ; + rdfs:label "Mean Point Estimate Information Content Entity"@en ; + skos:altLabel "Arithmetic Mean"@en , + "Average"@en , + "Mean"@en ; + skos:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the sum of all the values in the set divided by the total number of values in the set."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000915 +cco:ont00000915 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000605 ; + rdfs:label "Acronym"@en ; + skos:definition "An Abbreviated Name that combines the initial letters of a Designative Name and which is pronounced as a word."@en ; + skos:example "Wi-Fi, ASCII, OPSEC" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000916 +cco:ont00000916 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000891 ; + rdfs:label "Lunar Calendar System"@en ; + skos:definition "A Calendar System that is designed to organize and identify dates based on the cycles of the Moon's phases."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lunar_calendar&oldid=1055396837"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000923 +cco:ont00000923 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000649 ; + rdfs:label "Arbitrary Identifier"@en ; + skos:altLabel "Arbitrary ID"@en ; + skos:definition "A Non-Name Identifier that consists of a string of characters that does not follow an encoding system."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000958 +cco:ont00000958 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000031 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001808 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf obo:BFO_0000031 ; + rdfs:label "Information Content Entity"@en ; + skos:altLabel "ICE"@en ; + skos:definition "A Generically Dependent Continuant that generically depends on some Information Bearing Entity and stands in relation of aboutness to some Entity."@en ; + skos:scopeNote "Information Content Entity is here intended to be a class of Entities whose instances are the informational content of Information Bearing Entities. For example, three instances of information bearers -- such as a bar chart, color-coded map, and a written report -- each of which lists the GDP of Countries for the year 2010 are each different carriers of the same information content. It is this content that is generically dependent upon its carrier. This treatment of Informational Content Entity (cf. the Information Artifact Ontology) leads to a principle of subtyping based upon the relationship that ICE's have with the Entity they are about rather than characteristics such as format, language, measurement scale, or media. The latter are treated here as being Qualities of bearers."@en ; + cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000030" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000965 +cco:ont00000965 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001942 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000958 ; + rdfs:label "Prescriptive Information Content Entity"@en ; + skos:altLabel "Directive ICE"@en ; + skos:definition "An Information Content Entity that consists of a set of propositions or images (as in the case of a blueprint) that prescribe some Entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000973 +cco:ont00000973 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000827 ; + rdfs:label "Decimal Time of Day Identifier"@en ; + skos:altLabel "Fractional Time of Day Identifier"@en ; + skos:definition "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using a decimal value for the portion of the Day that preceded the Temporal Instant."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000990 +cco:ont00000990 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000003 ; + rdfs:label "Nickname"@en ; + skos:definition "A Designative Name that is a familiar or humorous substitute for an entity's Proper Name."@en ; + skos:example "Ike, Chief, P-Fox" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001010 +cco:ont00001010 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001811 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001163 ; + owl:disjointWith cco:ont00001022 , + cco:ont00001364 ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Ordinal Measurement Information Content Entity"@en ; + skos:definition "A Measurement Information Content Entity that consists of a symbol that places an Entity into some rank order."@en ; + skos:example "The sentence \"The coldest day in history in Chicago, IL. is January 20, 1985.\" is the carrier of an ordinal measurment."@en , + "a measurement that places Geospatial Regions into a rank order of small, medium, large" , + "a measurement that places military units onto a readiness rank order of red, yellow, green" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001014 +cco:ont00001014 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000003 ; + rdfs:label "Proper Name"@en ; + skos:definition "A Designative Name that is an official name for a particular entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001022 +cco:ont00001022 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001983 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001163 ; + owl:disjointWith cco:ont00001364 ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Ratio Measurement Information Content Entity"@en ; + skos:definition "A Measurement Information Content Entity that consists of a symbol that places a Quality of an Entity onto an interval scale having a true zero value."@en ; + skos:example "The sentence \"The temperature reached 240.372 degrees Kelvin on January 20, 1985 in Chicago, IL.\" is the carrier of a ratio measurement as 0 degrees on the Kelvin scale does describe absolute zero."@en , + "a measurement of the barometric pressure at 1,000 feet above sea level" , + "a measurement of the measure of air temperature on the Kelvin scale" , + "a measurement of the number of members in an Organization" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001041 +cco:ont00001041 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001010 ; + rdfs:label "Sequence Position Ordinality"@en ; + skos:definition "An Ordinal Measurement Information Content Entity that is about the position of some entity in some ordered sequence."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001069 +cco:ont00001069 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001938 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000958 ; + owl:disjointWith cco:ont00001163 ; + rdfs:label "Representational Information Content Entity"@en ; + skos:definition "An Information Content Entity that represents some Entity."@en ; + skos:example "the content of a court transcript represents a courtroom proceeding" , + "the content of a photograph of the Statue of Liberty represents the Statue of Liberty" , + "the content of a video of a sporting event represents that sporting event" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001101 +cco:ont00001101 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001176 ; + rdfs:label "Interval Estimate Information Content Entity"@en ; + skos:altLabel "Interval Estimate"@en , + "Interval Estimate Measurement Information Content Entity"@en ; + skos:definition "An Estimate Information Content Entity that consists of an interval of possible (or probable) values for the measured entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001146 +cco:ont00001146 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001328 ; + rdfs:comment "Sidereal Time is the angle measured from an observer's meridian along the celestial equator to the Great Circle that passes through the March equinox and both poles. This angle is usually expressed in Hours, Minutes, and Seconds."@en ; + rdfs:label "Sidereal Time Reference System"@en ; + skos:definition "A Temporal Reference System that is based on Earth's rate of rotation measured relative to one or more fixed Stars (rather than the Sun)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001149 +cco:ont00001149 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001101 ; + rdfs:label "Data Range Interval Estimate Information Content Entity"@en ; + skos:definition "A Ratio Measurement Information Content Entity that is a measurement of a set of values and is equal to the absolute difference between the largest value and the smallest value in the set."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001163 +cco:ont00001163 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00000853 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001966 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00000853 ; + rdfs:label "Measurement Information Content Entity"@en ; + skos:altLabel "Measurement ICE"@en ; + skos:definition "A Descriptive Information Content Entity that describes the extent, dimensions, quantity, or quality of an Entity relative to some standard."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001175 +cco:ont00001175 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000965 ; + rdfs:label "Language"@en ; + skos:definition "A Directive Information Content Entity that prescribes a canonical format for communication."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001176 +cco:ont00001176 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:label "Estimate Information Content Entity"@en ; + skos:altLabel "Estimate"@en , + "Estimate Measurement Information Content Entity"@en , + "Estimated Value"@en ; + skos:definition "A Measurement Information Content Entity that is a measurement of an entity based on partial information about that entity or an appropriately similar entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001205 +cco:ont00001205 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000398 ; + rdfs:label "Priority Scale"@en ; + skos:definition "A Reference System that is designed to be used to rank or identify the importance of entities of the specified type."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001235 +cco:ont00001235 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000829 ; + rdfs:label "Military Time Zone Identifier"@en ; + skos:definition "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Zulu time, which has no offset from Coordinated Universal Time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001238 +cco:ont00001238 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000605 ; + rdfs:label "Initialism"@en ; + skos:definition "An Abbreviated Name that consists of the initial letters of some words (or syllables) in a Designative Name, and in which each letter is pronounced separately."@en ; + skos:example "USA, CPU, BBC" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001256 +cco:ont00001256 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:comment "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance ('Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."@en ; + rdfs:label "Reliability Measurement Information Content Entity"@en ; + skos:altLabel "Accuracy of Process"@en , + "Reliability Measurement"@en ; + skos:definition "A Measurement Information Content Entity that is a measurement of the extent to which an entity can consistently produce an outcome."@en ; + skos:scopeNote "Reliability concerns both a measure of past performance and the expectation that future performance will conform to the range of past performances."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Reliability_(statistics)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001309 +cco:ont00001309 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000077 ; + rdfs:label "Lot Number"@en ; + skos:definition "A Code Identifier that designates a particular quantity or lot of material from a single manufacturer."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lot_number&oldid=1061846325"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001328 +cco:ont00001328 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000398 ; + rdfs:label "Temporal Reference System"@en ; + skos:altLabel "Temporal Reference Frame"@en , + "Time Scale"@en ; + skos:definition "A Reference System that describes a set of standards for measuring time as well as understanding the context of and organizing temporal data."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001331 +cco:ont00001331 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001014 ; + rdfs:label "Legal Name"@en ; + skos:definition "A Proper Name that is an official name for the designated entity as determined by a Government or court of law."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001340 +cco:ont00001340 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000529 ; + rdfs:label "Calendar Date Identifier"@en ; + skos:definition "A Date Identifier that designates some Day by using a combination of Day, Week, Month, or Year Identifiers formatted according to an implementation of a Calendar System."@en ; + skos:example "January 1, 2018; 1 January 2018; 01/01/18; 01Jan18" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001351 +cco:ont00001351 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000275 ; + rdfs:label "Cartesian Coordinate System"@en ; + skos:altLabel "Rectangular Coordinate System"@en ; + skos:definition "A Spatial Reference System that identifies each point in a spatial region of n-dimensions using an ordered n-tuple of numerical coordinates that are the signed (i.e. positive or negative) distances measured in the same unit of length from the zero point where the fixed perpendicular Coordinate System Axes meet."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cartesian_coordinate_system&oldid=1058613323"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001352 +cco:ont00001352 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000829 ; + rdfs:comment "Greenwich Mean Time (GMT) is the mean solar time at the Royal Observatory in Greenwich, London and has been superseded by Coordinated Universal Time (UTC)."@en ; + rdfs:label "Greenwich Mean Time Zone Identifier"@en ; + skos:definition "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Greenwich Mean Time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001364 +cco:ont00001364 rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001877 ; + owl:someValuesFrom obo:BFO_0000001 + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:ont00001163 ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Interval Measurement Information Content Entity"@en ; + skos:definition "A Measurement Information Content Entity that places a Quality of an Entity onto some interval scale having no true zero value."@en ; + skos:example "The sentence \"The temperature reached -27 degrees Fahrenheit on January 20, 1985 in Chicago, IL.\" is the carrier of an interval measurement as 0 degrees on the Fahrenheit scale does not describe absolute zero."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001392 +cco:ont00001392 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-8"@en ; + skos:altLabel "PST"@en , + "Pacific Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001395 +cco:ont00001395 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-3:30"@en ; + skos:altLabel "Newfoundland Standard Time"@en ; + cco:ont00001753 "NST" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001398 +cco:ont00001398 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:label "Global Area Reference System"@en ; + cco:ont00001753 "GARS" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001403 +cco:ont00001403 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+2"@en ; + rdfs:label "Bravo Time Zone"@en ; + cco:ont00001753 "B" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001405 +cco:ont00001405 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-2"@en ; + skos:altLabel "BET"@en , + "Brazil Eastern Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001406 +cco:ont00001406 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+9:30"@en ; + skos:altLabel "Australian Central Standard Time"@en ; + cco:ont00001753 "ACST" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001408 +cco:ont00001408 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-11"@en ; + rdfs:label "X-ray Time Zone"@en ; + cco:ont00001753 "X" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001412 +cco:ont00001412 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+0"@en ; + rdfs:label "GMT"@en ; + skos:altLabel "Greenwich Mean Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001414 +cco:ont00001414 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment "TT is an astronomical time standard that is a theoretical ideal designed to be free of the irregularities in Earth's rotation and is primarily used for time measurements of astronomical observations made from the surface of Earth. It was formerly called Terrestrial Dynamical Time (TDT), which was formulated to replace Ephemeris Time (ET)."@en ; + rdfs:label "Terrestrial Time"@en ; + cco:ont00001753 "TT" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001417 +cco:ont00001417 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment "ET is an astronomical time scale that was adopted as a standard in 1952 by the IAU but has since been superseded and is no longer actively used. ET is based on the ephemeris second, which was defined as a fraction of the tropical year for 1900 January 01 as calculated using Newcomb's 1895 tables of the Sun. ET was designed to avoid problems caused by variations in Earth's rotational period and was used for Solar System ephemeris calculations until being replaced by Terrestrial Dynamical Time (TDT) in 1979."@en ; + rdfs:label "Ephemeris Time"@en ; + cco:ont00001753 "ET" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001419 +cco:ont00001419 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+5"@en ; + skos:altLabel "PLT"@en , + "Pakistan Lahore Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001421 +cco:ont00001421 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-6"@en ; + rdfs:label "Sierra Time Zone"@en ; + cco:ont00001753 "S" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001424 +cco:ont00001424 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+1"@en ; + rdfs:label "Alpha Time Zone"@en ; + cco:ont00001753 "A" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001430 +cco:ont00001430 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+6"@en ; + rdfs:label "Foxtrot Time Zone"@en ; + cco:ont00001753 "F" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001431 +cco:ont00001431 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-10"@en ; + rdfs:label "Whiskey Time Zone"@en ; + cco:ont00001753 "W" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001434 +cco:ont00001434 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+1"@en ; + skos:altLabel "ECT"@en , + "European Central Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001436 +cco:ont00001436 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:label "Universal Time 1 D"@en ; + cco:ont00001753 "UT1D" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001439 +cco:ont00001439 rdf:type owl:NamedIndividual , + cco:ont00000263 ; + rdfs:label "Twenty-Four-Hour Clock Time System"@en ; + skos:altLabel "24-Hour Clock"@en , + "24-Hour Clock Time System"@en , + "Military Time"@en , + "Military Time System"@en , + "Twenty-Four Hour Clock Time System"@en , + "Twenty-Four-Hour Clock"@en ; + skos:definition "A Clock Time System for time keeping in which the Day runs from midnight to midnight and is divided into 24 Hours, indicated by the Hours passed since midnight, from 0 to 23."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=24-hour_clock&oldid=1063744105"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001440 +cco:ont00001440 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-9"@en ; + skos:altLabel "AST"@en , + "Alaska Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001446 +cco:ont00001446 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Mike Time Zone is the same local time as Yankee Time Zone, but is 1 Day (i.e. 24 Hours) ahead of Yankee Time Zone as they are on opposite sides of the International Date Line."@en , + "Offset from Universal Coordinated Time = UTC+12"@en ; + rdfs:label "Mike Time Zone"@en ; + cco:ont00001753 "M" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001454 +cco:ont00001454 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+11"@en ; + rdfs:label "Lima Time Zone"@en ; + cco:ont00001753 "L" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001457 +cco:ont00001457 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-4"@en ; + rdfs:label "Quebec Time Zone"@en ; + cco:ont00001753 "Q" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001461 +cco:ont00001461 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment "TDB is a linear scaling of Barycentric Coordinate Time (TCB) and is a relativistic coordinate time scale used in astronomy as a time standard that accounts for time dilation when calculating Orbits and Ephemerides of Astronomical Bodies and interplanetary Spacecraft in the Solar System. TDB is a successor of Ephemeris Time (ET) and is nearly equivalent to the time scale Teph used for DE405 planetary and lunar ephemerides generated by the Jet Propulsion Laboratory."@en ; + rdfs:label "Barycentric Dynamical Time"@en ; + cco:ont00001753 "TDB" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001467 +cco:ont00001467 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-4"@en ; + skos:altLabel "PRT"@en , + "Puerto Rico and US Virgin Islands Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001468 +cco:ont00001468 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+10"@en ; + skos:altLabel "AET"@en , + "Australia Eastern Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001476 +cco:ont00001476 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+4"@en ; + skos:altLabel "NET"@en , + "Near East Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001480 +cco:ont00001480 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+9"@en ; + rdfs:label "India Time Zone"@en ; + cco:ont00001753 "I" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001488 +cco:ont00001488 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-7"@en ; + rdfs:label "Tango Time Zone"@en ; + cco:ont00001753 "T" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001491 +cco:ont00001491 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:label "Universal Time 1 A"@en ; + cco:ont00001753 "UT1A" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001500 +cco:ont00001500 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+5"@en ; + rdfs:label "Echo Time Zone"@en ; + cco:ont00001753 "E" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001506 +cco:ont00001506 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:label "Universal Time 1 F"@en ; + cco:ont00001753 "UT1F" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001516 +cco:ont00001516 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-2"@en ; + rdfs:label "Oscar Time Zone"@en ; + cco:ont00001753 "O" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001524 +cco:ont00001524 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-11"@en ; + skos:altLabel "MIT"@en , + "Midway Islands Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001527 +cco:ont00001527 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+8"@en ; + rdfs:label "Hotel Time Zone"@en ; + cco:ont00001753 "H" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001529 +cco:ont00001529 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment """\"TCG is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to precession, nutation, the Moon, and artificial satellites of the Earth. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the center of the Earth: that is, a clock that performs exactly the same movements as the Earth but is outside the Earth's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Earth.\" +From: (https://en.wikipedia.org/wiki/Geocentric_Coordinate_Time)"""@en ; + rdfs:label "Geocentric Coordinate Time"@en ; + cco:ont00001753 "TCG" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001534 +cco:ont00001534 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+7"@en ; + skos:altLabel "VST"@en , + "Vietnam Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001537 +cco:ont00001537 rdf:type owl:NamedIndividual , + cco:ont00000067 , + cco:ont00000630 ; + rdfs:comment "UTC is a variant of Universal Time that is calculated by combining Universal Time 1 with International Atomic Time by occasionally adding leap seconds to TAI in order to maintain UTC within 0.9 seconds of UT1. The difference between UTC and UT1 is called DUT1 and always has a value between -0.9 seconds and +0.9 seconds. Coordinated Universal Time is the current basis for civil time and is the reference time for time zones, whose local times are defined based on an offset from UTC."@en ; + rdfs:label "Coordinated Universal Time"@en ; + cco:ont00001753 "UTC" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001541 +cco:ont00001541 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+12"@en ; + skos:altLabel "NST"@en , + "New Zealand Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001548 +cco:ont00001548 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:comment "UT1R is a variant of Universal Time that is a smoothed version of UT1 by filtering out periodic variations due to tidal waves."@en ; + rdfs:label "Universal Time 1 R"@en ; + cco:ont00001753 "UT1R" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001550 +cco:ont00001550 rdf:type owl:NamedIndividual , + cco:ont00000276 ; + rdfs:comment "The Julian Calendar was proposed by Julius Caesar as a reform of the Roman Calendar, took effect on 1 January 46 BC, and was the predominant Calendar System in Europe until being largely replaced by the Gregorian Calendar."@en ; + rdfs:label "Julian Calendar"@en ; + skos:definition "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years such that the average length of a Julian Year is 365.25 Days."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Julian_calendar&oldid=1063127575"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001553 +cco:ont00001553 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+6"@en ; + skos:altLabel "BST"@en , + "Bangladesh Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001554 +cco:ont00001554 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-10"@en ; + skos:altLabel "HST"@en , + "Hawaii Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001565 +cco:ont00001565 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-5"@en ; + skos:altLabel "EST"@en , + "Eastern Standard Time"@en , + "IET"@en , + "Indiana Eastern Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001570 +cco:ont00001570 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+2"@en ; + skos:altLabel "EET"@en , + "Eastern European Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001580 +cco:ont00001580 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-3"@en ; + rdfs:label "Papa Time Zone"@en ; + cco:ont00001753 "P" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001581 +cco:ont00001581 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:comment """The ITRS definition fulfills the following conditions: +1. It is geocentric, the center of mass being defined for the whole earth, including oceans and atmosphere. +2. The unit of length is the metre (SI). This scale is consistent with the TCG time coordinate for a geocentric local frame, in agreement with IAU and IUGG (1991) resolutions. This is obtained by appropriate relativistic modelling. +3. Its orientation was initially given by the BIH orientation at 1984.0. +4. The time evolution of the orientation is ensured by using a no-net-rotation condition with regards to horizontal tectonic motions over the whole earth. +From: (https://www.iers.org/IERS/EN/Science/ITRS/ITRS.html)"""@en ; + rdfs:label "International Terrestrial Reference System"@en ; + cco:ont00001753 "ITRS" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001582 +cco:ont00001582 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:label "Universal Transverse Mercator Reference System"@en ; + cco:ont00001753 "UTM" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001584 +cco:ont00001584 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:label "World Geographic Reference System"@en ; + cco:ont00001753 "WGRS" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001588 +cco:ont00001588 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+9"@en ; + skos:altLabel "JST"@en , + "Japan Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001590 +cco:ont00001590 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment "TAI is a time standard the values of which are generated by calculating the weighted average of the measurements of more than 400 atomic clocks and is based on the International System of Units (SI) definition of one second equals the time it takes a Cesium-133 atom at the ground state to oscillate exactly 9,192,631,770 times. TAI is extremely precise, but does not perfectly synchronize with Earth times, which is why TAI and UT1 are both used to determine UTC. TAI serves as the main realization of TT."@en ; + rdfs:label "International Atomic Time"@en ; + cco:ont00001753 "TAI" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001591 +cco:ont00001591 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-8"@en ; + rdfs:label "Uniform Time Zone"@en ; + cco:ont00001753 "U" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001597 +cco:ont00001597 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+11"@en ; + skos:altLabel "SST"@en , + "Solomon Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001599 +cco:ont00001599 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+3:30"@en ; + skos:altLabel "Iran Standard Time"@en , + "Iran Time"@en ; + cco:ont00001753 "IRST" , + "IT" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001603 +cco:ont00001603 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-1"@en ; + rdfs:label "November Time Zone"@en ; + cco:ont00001753 "N" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001607 +cco:ont00001607 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-9"@en ; + rdfs:label "Victor Time Zone"@en ; + cco:ont00001753 "V" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001615 +cco:ont00001615 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-7"@en ; + skos:altLabel "MST"@en , + "Mountain Standard Time"@en , + "PNT"@en , + "Phoenix Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001624 +cco:ont00001624 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+7"@en ; + rdfs:label "Golf Time Zone"@en ; + cco:ont00001753 "G" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001625 +cco:ont00001625 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:comment "UT0 is a variant of Universal Time that is measured by observing the diurnal motion of stars or extragalactic radio sources at a specific location on Earth. It does not take into consideration distorting factors, in particular polar motion, such that its value will differ based on the location it is measured at."@en ; + rdfs:label "Universal Time 0"@en ; + cco:ont00001753 "UT0" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001626 +cco:ont00001626 rdf:type owl:NamedIndividual , + cco:ont00000263 ; + rdfs:label "Twelve-Hour Clock Time System"@en ; + skos:altLabel "12-Hour Clock"@en , + "12-Hour Clock Time System"@en , + "Twelve Hour Clock"@en , + "Twelve Hour Clock Time System"@en , + "Twelve-Hour Clock"@en ; + skos:definition "A Clock Time System for keeping the Time of Day in which the Day runs from midnight to midnight and is divided into two intervals of 12 Hours each, where: the first interval begins at midnight, ends at noon, and is indicated by the suffix 'a.m.'; the second interval begins at noon, ends at midnight, and is indicated by the suffix 'p.m.'; and the midnight and noon Hours are numbered 12 with subsequent Hours numbered 1-11."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=12-hour_clock&oldid=1057602523"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001628 +cco:ont00001628 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-12"@en , + "Yankee Time Zone is the same local time as Mike Time Zone, but is 1 Day (i.e. 24 Hours) behind Mike Time Zone as they are on opposite sides of the International Date Line."@en ; + rdfs:label "Yankee Time Zone"@en ; + cco:ont00001753 "Y" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001630 +cco:ont00001630 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:comment """\"WGS 84 is an Earth-centered, Earth-fixed terrestrial reference system and geodetic datum. WGS 84 is based on a consistent set of constants and model parameters that describe the Earth's size, shape, and gravity and geomagnetic fields. WGS 84 is the standard U.S. Department of Defense definition of a global reference system for geospatial information and is the reference system for the Global Positioning System (GPS). It is compatible with the International Terrestrial Reference System (ITRS).\" +From: (http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf)"""@en ; + rdfs:label "World Geodetic System 1984"@en ; + cco:ont00001753 "WGS 84" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001634 +cco:ont00001634 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-1"@en ; + skos:altLabel "CAT"@en , + "Central African Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001648 +cco:ont00001648 rdf:type owl:NamedIndividual , + cco:ont00000469 , + cco:ont00001351 ; + rdfs:label "Earth-Centered Earth-Fixed Coordinate System"@en ; + skos:altLabel "Conventional Terrestrial Coordinate System"@en , + "ECEF"@en , + "ECR"@en , + "Earth Centered Earth Fixed"@en , + "Earth Centered Rotational Coordinate System"@en , + "Earth-Centered Earth-Fixed"@en , + "Earth-Centered, Earth-Fixed"@en ; + skos:definition "A Geospatial and Cartesian Coordinate System that identifies positions using an x-axis, y-axis, and z-axis coordinate where the zero point is the center of the Earth, the z-Axis extends toward the North Pole but does not always coincide exactly with the Earth's Axis of Rotation, the x-Axis extends through the intersection of the Prime Meridian and the Equator, the y-Axis completes the right-handed system, and all three axes are fixed to the Earth such that they rotate along with the Earth."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Earth-centered,_Earth-fixed_coordinate_system&oldid=1062678600"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001658 +cco:ont00001658 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment "Teph (the 'eph' is written as subscript) is an ephemeris time argument developed and calculated at the Jet Propulsion Laboratory (JPL) and implemented in a series of numerically integrated Development Ephemerides (DE), including the currently used DE405. Teph is characterized as a relativistic coordinate time that is nearly equivalent to the IAU's definition of TCB, though Teph is not currently an IAU time standard. Teph is used by the JPL to generate the ephemerides it publishes to support spacecraft navigation and astronomy."@en ; + rdfs:label "Jet Propulsion Laboratory Ephemeris Time Argument"@en ; + skos:altLabel "JPL Ephemeris Time"@en ; + cco:ont00001753 "Teph" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001660 +cco:ont00001660 rdf:type owl:NamedIndividual , + cco:ont00000469 ; + rdfs:comment "This global main field model provides magnetic field values for any location on Earth, e.g. for navigational purposes (declination) or as a standard for core field subtraction for aeromagnetic surveys. An updated version is adopted by International Association of Geomagnetism and Aeronomy (IAGA) every 5 years)."@en ; + rdfs:label "International Geomagnetic Reference Field"@en ; + cco:ont00001754 "Alken, P., Thébault, E., Beggan, C.D. et al. International Geomagnetic Reference Field: the thirteenth generation. Earth Planets Space 73, 49 (2021). https://doi.org/10.1186/s40623-020-01288-x , https://www.iaga-aiga.org/" . + + +### https://www.commoncoreontologies.org/ont00001661 +cco:ont00001661 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+8"@en ; + skos:altLabel "CTT"@en , + "China Taiwan Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001666 +cco:ont00001666 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment """\"Barycentric Coordinate Time (TCB, from the French Temps-coordonnée barycentrique) is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to orbits of planets, asteroids, comets, and interplanetary spacecraft in the Solar system. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the barycenter of the Solar system: that is, a clock that performs exactly the same movements as the Solar system but is outside the system's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Sun and the rest of the system.\" +From: (https://en.wikipedia.org/wiki/Barycentric_Coordinate_Time)"""@en ; + rdfs:label "Barycentric Coordinate Time"@en ; + cco:ont00001753 "TCB" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001674 +cco:ont00001674 rdf:type owl:NamedIndividual , + cco:ont00000276 ; + rdfs:comment "The Gregorian Calendar was instituted by Pope Gregory XIII via papal bull on 24 February 1582 as a reform of the Julian Calendar to stop the drift of the calendar with respect to the equinoxes and solstices. The Gregorian Calendar is currently the most widely used civil Calendar System in the world and is 13 days ahead of the Julian Calendar Date."@en ; + rdfs:label "Gregorian Calendar"@en ; + skos:definition "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years except Years that are evenly divisible by 100 but not 400 such that there are 97 leap Years every 400 Years and the average length of a Gregorian Year is 365.2425 Days (365 Days 5 Hours 49 Minutes 12 Seconds)."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gregorian_calendar&oldid=1062360692"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001691 +cco:ont00001691 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-6"@en ; + skos:altLabel "CST"@en , + "Central Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001692 +cco:ont00001692 rdf:type owl:NamedIndividual , + cco:ont00001328 ; + rdfs:comment """Unix Time is a Temporal Reference System for describing a point in time, defined as the number of seconds that have elapsed since 00:00:00 Coordinated Universal Time (UTC) Thursday, 1 January 1970 minus the number of leap seconds that have taken place since then. +(See: https://en.wikipedia.org/wiki/Unix_time)"""@en ; + rdfs:label "Unix Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001693 +cco:ont00001693 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+0"@en ; + rdfs:label "Zulu Time Zone"@en ; + cco:ont00001753 "Z" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001695 +cco:ont00001695 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:comment "UT2 is a variant of Universal Time that smooths UT1 by accounting for both polar motion and variations in Earth's rotation due to seasonal factors, such as changes in vegetation and water or snow distribution."@en ; + rdfs:label "Universal Time 2"@en ; + cco:ont00001753 "UT2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001700 +cco:ont00001700 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Juliet time is used as an indexical to refer to local time without otherwise specifying the time zone."@en ; + rdfs:label "Juliet Time Zone"@en ; + cco:ont00001753 "J" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001701 +cco:ont00001701 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT-3"@en ; + skos:altLabel "AGT"@en , + "Argentina Standard Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001702 +cco:ont00001702 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+5:30"@en ; + skos:altLabel "Indian Standard Time"@en , + "Sri Lanka Standard Time"@en ; + cco:ont00001753 "IST" , + "SLST" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001704 +cco:ont00001704 rdf:type owl:NamedIndividual , + cco:ont00001352 ; + rdfs:label "GMT+3"@en ; + skos:altLabel "EAT"@en , + "Eastern African Time"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001712 +cco:ont00001712 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-5"@en ; + rdfs:label "Romeo Time Zone"@en ; + cco:ont00001753 "R" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001716 +cco:ont00001716 rdf:type owl:NamedIndividual , + cco:ont00000630 ; + rdfs:comment "UT1 is a derivation of UT0 that takes into account distortions caused by polar motion and is proportional to the rotation angle of the Earth with respect to distant quasars, specifically, the International Celestial Reference Frame (ICRF). UT1 is currently the most widely used variant of Universal Time and has the same value everywhere on Earth."@en ; + rdfs:label "Universal Time 1"@en ; + skos:altLabel "Astronomical Time"@en ; + cco:ont00001753 "UT1" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001723 +cco:ont00001723 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+4"@en ; + rdfs:label "Delta Time Zone"@en ; + cco:ont00001753 "D" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001727 +cco:ont00001727 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+10"@en ; + rdfs:label "Kilo Time Zone"@en ; + cco:ont00001753 "K" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001732 +cco:ont00001732 rdf:type owl:NamedIndividual , + cco:ont00001235 ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+3"@en ; + rdfs:label "Charlie Time Zone"@en ; + cco:ont00001753 "C" ; + cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.26.2023-07-17T20:34:13Z) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/QualityOntology.ttl b/src/cco-iris/QualityOntology.ttl new file mode 100644 index 00000000..861bcf6e --- /dev/null +++ b/src/cco-iris/QualityOntology.ttl @@ -0,0 +1,991 @@ +@prefix : . +@prefix cco: . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent a range of attributes of entities especially qualities, realizable entities, and process profiles."@en ; + rdfs:label "Quality Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation +dcterms:bibliographicCitation rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000009 +cco:ont00000009 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Mass Density"@en ; + skos:altLabel "Density"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of that bearer's mass per unit volume."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000042 +cco:ont00000042 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Semicircular"@en ; + skos:definition "A Shape quality inhering in a bearer in virtue of the bearer having the shape of half a circle."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000082 +cco:ont00000082 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Green"@en ; + skos:definition "A Color that is between Yellow and Cyan with a wavelength in the visible spectrum, typically between 520 to 560 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000105 +cco:ont00000105 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001369 ; + rdfs:label "Square"@en ; + skos:definition "A Rectangular shape which has four equal length sides and four 90 degree angles."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000112 +cco:ont00000112 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001384 ; + rdfs:label "Translucent"@en ; + skos:definition "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit some but not all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs some but not all electromagnetic radiation of that frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000119 +cco:ont00000119 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000145 ; + rdfs:label "Spatial Orientation"@en ; + skos:altLabel "Attitude"@en ; + skos:definition "A Relational Quality that is the angle of Rotation of an Object relative to one or more Plane of Reference or Axis of Rotation."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Orientation_(geometry)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000185 +cco:ont00000185 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Blunt"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer not having a sharp edge or point."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000196 +cco:ont00000196 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Purple"@en ; + skos:definition "A Color that is aproximately midway between Red and Blue."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000257 +cco:ont00000257 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000620 ; + rdfs:label "Radiopaque"@en ; + skos:altLabel "Radiodense"@en ; + skos:definition "A Radiopacity that inheres in a bearer in virtue of its capacity to prevent most X-rays from passing through it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000281 +cco:ont00000281 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001137 ; + rdfs:label "Albedo"@en ; + skos:definition "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of its surface to reflect incident electromagnetic radiation of a particular wavelength."@en ; + skos:scopeNote "Albedo is a reflection coefficient and is measured as the ratio of radiation reflected from the surface to the incident radiation. Albedo is dimensionless, can be expressed as a percentage, and is measured on a scale from 0 for no reflection to 1 for perfect reflection of a surface. Albedo depends on the wavelength of the radiation; when no wavelength is specified, it typically refers to some appropriate average across the spectrum of visible light."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Albedo&oldid=1063352646"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000283 +cco:ont00000283 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001360 ; + rdfs:label "Cylindrical"@en ; + skos:altLabel "Columnar"@en ; + skos:definition "A Three Dimensional Shape inhering in a bearer in virtue of the bearer having an elongated shape with round bases."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000284 +cco:ont00000284 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000017 ; + rdfs:label "Strength"@en ; + skos:definition "A Realizable Entity that is realized when its bearer exerts or resists some power, influence, or force."@en ; + skos:scopeNote "Strength is intended to be understood broadly here. Physical strength is only one type of Strength. Other subtypes of Strength may include military strength, psychological strength, emotional strength, political strength, technological strength, and so on."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000295 +cco:ont00000295 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Wetness"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the degree to which the bearer is covered by a liquid, typically on a continuum of dry to wet."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000324 +cco:ont00000324 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Width"@en ; + skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a horizontal direction."@en ; + cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000327 +cco:ont00000327 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Texture"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the size, shape, and distribution of features on its surface, typically on a continuum from smooth to rough."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000378 +cco:ont00000378 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000784 ; + rdfs:label "Color"@en ; + skos:definition "An Optical Property that inheres in a bearer in virtue of that bearer's Color Hue, Color Saturation and Color Brightness."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000385 +cco:ont00000385 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Wide"@en ; + skos:altLabel "Broad"@en , + "Fat"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly larger in proportion to its length or height."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000424 +cco:ont00000424 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Sharp"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a fine point or thin edge."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000439 +cco:ont00000439 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Black"@en ; + skos:definition "A Color that lacks any hues as parts."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000441 +cco:ont00000441 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Temperature"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of its thermal energy."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000442 +cco:ont00000442 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Radioactive"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of that bearer exhibiting or being caused by radioactivity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000446 +cco:ont00000446 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001293 ; + rdfs:label "Circumference"@en ; + skos:definition "A Perimeter that inheres in a circle or ellipse."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000447 +cco:ont00000447 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Triangular"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of it having exactly three angles and exactly three sides."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000450 +cco:ont00000450 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Silver Color"@en ; + skos:definition "A Color that resembles Grey with the added feature of having a metallic shine."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000459 +cco:ont00000459 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001126 ; + rdfs:label "Fluorescence"@en ; + skos:definition "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light while absorbing shorter wavelength radiation, but not after."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fluorescence&oldid=1061358510"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000464 +cco:ont00000464 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Oblong"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having an long thin shape with approximately parallel sides."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000474 +cco:ont00000474 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Curved"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having borders which are smoothly rounded."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000478 +cco:ont00000478 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001360 ; + rdfs:label "Cuboidal"@en ; + skos:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having six Rectangular faces."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000484 +cco:ont00000484 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Concave Shape"@en ; + skos:definition "A Shape Quality that inheres in a bearer in virtue of the bearer having one or more cavities, such that at least one line connecting a pair of points on the surface of the bearer will lie outside."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000494 +cco:ont00000494 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Serrated"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having multiple sharp points along a edge."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000512 +cco:ont00000512 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000628 ; + rdfs:label "Radiation Emissivity"@en ; + skos:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to emit electromagnetic radiation of a given frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000525 +cco:ont00000525 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001384 ; + rdfs:label "Transparent"@en ; + skos:definition "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit all or nearly all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs little or no electromagnetic radiation of that frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000528 +cco:ont00000528 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "White"@en ; + skos:definition "A Color of maximum brightness, the color of objects that reflect nearly all wavelengths of the visible light spectrum, thus considered achromatic."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000541 +cco:ont00000541 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Diameter"@en ; + skos:definition "A One Dimensional Extent that inheres in a circle in virtue of the extent of a straight line that passes through the center of the circle and starts and ends on the circle's boundary."@en ; + cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000548 +cco:ont00000548 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000997 ; + dcterms:bibliographicCitation "Vulnerability | Definition of Vulnerability by Oxford Dictionary on Lexico.Com Also Meaning of Vulnerability. https://web.archive.org/web/20210118111731/https://www.lexico.com/en/definition/vulnerability. Accessed 19 Dec. 2022. " ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Vulnerability"@en ; + skos:definition "A Disrupting Disposition the realization of which would disrupt a process that the bearer of the Disrupting Disposition has an interest in."@en ; + skos:editorialNote "This is defined class. A Vulnerability is indexed by the interest_in object property. A disposition can be a Vulnerability according to one index and not a Vulnerability according to another index." ; + skos:prefLabel "Vulnerability"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000560 +cco:ont00000560 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001360 ; + rdfs:label "Cone Shape"@en ; + skos:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having a Round base that tapers smoothly to an apex."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cone&oldid=1058362269"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000565 +cco:ont00000565 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000478 ; + rdfs:label "Cube Shape"@en ; + skos:definition "A Cuboidal shape inhering in a bearer in virtue of it having six Square faces."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000578 +cco:ont00000578 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Sloped"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border which is not level."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000579 +cco:ont00000579 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Thin"@en ; + skos:altLabel "Narrow"@en , + "Slender"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly smaller in proportion to its length or height."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000590 +cco:ont00000590 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Convex Shape"@en ; + skos:definition "A Shape Quality that inheres in a bearer in virtue of the bearer not having a cavity, such that no line connecting a pair of points on the surface of the bearer will lie outside."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000607 +cco:ont00000607 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000892 ; + rdfs:label "Thickness"@en ; + skos:definition "A Depth that inheres in a bearer in virtue of it extending inward through an object."@en ; + cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000614 +cco:ont00000614 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:comment "'Matter' here can also refer to the inertial energy of an object."@en , + "Typical unit of measure is the kilogram or pound."@en ; + rdfs:label "Mass"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the amount of matter in that bearer."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000620 +cco:ont00000620 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001384 ; + rdfs:label "Radiopacity"@en ; + skos:altLabel "Radiodensity"@en ; + skos:definition "An Opacity that inheres in a bearer in virtue of its capacity to allow or prevent X-rays to pass through it."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radiodensity&oldid=1048274724"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000628 +cco:ont00000628 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + rdfs:label "Electromagnetic Radiation Property"@en ; + skos:definition "A Disposition that inheres in an bearer in virtue of how that bearer interacts with electromagnetic radiation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000632 +cco:ont00000632 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + rdfs:label "Magnetism"@en ; + skos:definition "A Disposition that is realized when its bearer exerts a magnetic force on another entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000633 +cco:ont00000633 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:comment "When an object is \"weighed\", in the typical case, it is done so by taking into account the local force of gravity to determine the object's mass, whose standard of measure is the kilogram. The actual unit of measure of weight is the newton."@en ; + rdfs:label "Weight"@en ; + skos:definition "A Quality that inheres in some material entity with a mass in virtue of its location in some gravitational field."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000648 +cco:ont00000648 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000784 ; + rdfs:label "Color Brightness"@en ; + skos:altLabel "Color Intensity"@en ; + skos:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect or radiate light."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000695 +cco:ont00000695 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000620 ; + rdfs:label "Radiolucent"@en ; + skos:altLabel "Hypodense"@en , + "Transradiance"@en ; + skos:definition "A Radiopacity that inheres in a bearer in virtue of its capacity to permit most X-rays to pass through it."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000733 +cco:ont00000733 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001360 ; + rdfs:label "Spherical"@en ; + skos:definition "A Three Dimensional Shape inhering in a bearer in virtue of all of its cross sections being round."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000738 +cco:ont00000738 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Length"@en ; + skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's greatest extent in one direction."@en ; + cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000759 +cco:ont00000759 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000784 ; + rdfs:label "Color Saturation"@en ; + skos:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect high intensity light distributed across fewer wavelengths, typically considered on a continuum of purity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000766 +cco:ont00000766 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Hardness"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the degree to which it can be turned, bowed, or twisted without breaking."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000768 +cco:ont00000768 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Amount"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the total, aggregate or sum of a number of discrete items or material the entity contains as parts."@en ; + cco:ont00001754 "http://en.wiktionary.org/wiki/amount" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000784 +cco:ont00000784 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000628 ; + rdfs:label "Optical Property"@en ; + skos:definition "An Electromagnetic Radiation Property that is realized when its bearer interacts with electromagnetic waves within the visible light spectrum."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000787 +cco:ont00000787 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000967 ; + rdfs:label "Altitude"@en ; + skos:definition "A Height that inheres in a Site that externally connects an Independent Continuant to either the surface of the Earth or the Earth's mean Sea Level."@en ; + cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000797 +cco:ont00000797 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Hazel"@en ; + skos:definition "A Color that is a combination of Brown and Green, typically associated with eye color."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000803 +cco:ont00000803 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Round"@en ; + skos:altLabel "Circular"@en ; + skos:definition "A Shape Quality that inheres in a bearer in virtue of every point along its circumference being equidistant from the center."@en ; + cco:ont00001754 "http://www.merriam-webster.com/dictionary/round" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000805 +cco:ont00000805 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Coiled"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer being wound in concentric rings or spirals."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000815 +cco:ont00000815 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Folded"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of one part of the bearer being layered over another connected part."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000818 +cco:ont00000818 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Orange"@en ; + skos:definition "A Color that is between Red and Yellow with a wavelength in the visible spectrum typically between 590 to 635 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000826 +cco:ont00000826 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001137 ; + rdfs:label "Refractivity"@en ; + skos:definition "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of that bearer to change the direction of a propagating wave when passing through it."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Refractive_index&oldid=1062519140"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000835 +cco:ont00000835 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Body Shape"@en ; + skos:definition "A Shape Quality inhering in a Person's body by virtue of the body's general outline or figure."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000861 +cco:ont00000861 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Split"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a linear opening, or having been divided into parts."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000872 +cco:ont00000872 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Brown"@en ; + skos:definition "A Color that consists of dark orange and red, and of very low intensity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000885 +cco:ont00000885 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Wavy"@en ; + skos:altLabel "Undulate"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of it having a sinuous or rippled border."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000892 +cco:ont00000892 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Depth"@en ; + skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a downward, backward, or inward direction."@en ; + cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000912 +cco:ont00000912 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001360 ; + rdfs:label "Pyramidal"@en ; + skos:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having a polygonal base with vertices that all connect to the same apex to form triangular faces."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Pyramid_(geometry)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000913 +cco:ont00000913 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Maroon"@en ; + skos:definition "A Color consisting of purple and brown hue."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000941 +cco:ont00000941 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001126 ; + rdfs:label "Phosphorescence"@en ; + skos:definition "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light after absorbing shorter wavelength radiation, and to continue emitting after the absorbing process has ceased."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Phosphorescence&oldid=1060815719"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000967 +cco:ont00000967 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Height"@en ; + skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a vertical direction."@en ; + cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000975 +cco:ont00000975 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Cyan"@en ; + skos:definition "A Color that is between Green and Blue with a wavelength in the visible spectrum typically between 490 and 520 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000979 +cco:ont00000979 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Closure"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the degree to which that bearer affords passage or sightline through it via an opening, aperture, orifice, or vent."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000991 +cco:ont00000991 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Bent"@en ; + skos:altLabel "Angular"@en , + "Kinked"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having one or more angles along its border."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000997 +cco:ont00000997 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Disrupting Disposition"@en ; + skos:definition "A disposition the realization of which would disrupt a process some entity has an interest in."@en ; + skos:editorialNote "This is a defined class. A Disrupting Disposition is indexed by the interest_in object property. A disposition can be a Disrupting Disposition according to one index and not a Disrupting Disposition according to another index." ; + skos:prefLabel "Threat"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001001 +cco:ont00001001 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Drooping"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a border that hangs downwards."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001026 +cco:ont00001026 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000119 ; + rdfs:label "Pointing Orientation"@en ; + skos:altLabel "Facing Orientation"@en ; + skos:definition "A Spatial Orientation of a Material Entity in which one or more of its designated components are oriented toward a specified direction."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001055 +cco:ont00001055 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Branched"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having subdivisions or offshoots."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 +cco:ont00001059 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Shape Quality"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the ratios between dimensions of external features of that bearer."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001063 +cco:ont00001063 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Straight"@en ; + skos:altLabel "Linear"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer not having curves, bends, or angles along its borders."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001065 +cco:ont00001065 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001202 ; + rdfs:label "Two Dimensional Extent"@en ; + skos:altLabel "Area"@en ; + skos:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in two dimensions."@en ; + cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001079 +cco:ont00001079 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Blond"@en ; + skos:definition "A Color that ranges from nearly white to a light greyish yellow"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001113 +cco:ont00001113 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Magenta"@en ; + skos:definition "A Color consisting of red and blue hues."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001118 +cco:ont00001118 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + rdfs:label "Surface Tension"@en ; + skos:definition "A Disposition that inheres in a liquid and is realized when the cohesive forces of the molecules in the bearer at the surface are greater than the adhesive forces of the molecules in the surrounding air."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Surface_tension&oldid=1062753527"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001126 +cco:ont00001126 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000784 ; + rdfs:comment "There are a variety of photometric measurements, such as luminous flux/power or luminous intensity, whose units are lumen and candela respectively, which attempt to describe properties associated with the perception of light. These are weighted measurements, typically by the luminosity function, as thus exist on the side of information content. It is a point of further development to add the needed intrinsic properties of radiation that such measurements are about."@en ; + rdfs:label "Luminescent Property"@en ; + skos:definition "An Optical Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light, but which isn't the result of the bearer being heated."@en ; + cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Luminescence&oldid=1050169944"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001137 +cco:ont00001137 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000628 ; + rdfs:label "Radiation Reflectivity"@en ; + skos:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to scatter or reflect electromagnetic radiation of a given frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001142 +cco:ont00001142 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Violet"@en ; + skos:definition "A Color that is lower than Blue with a wavelength in the visible spectrum typically between 400 and 450 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001177 +cco:ont00001177 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000119 ; + rdfs:label "Roll Orientation"@en ; + skos:altLabel "Roll"@en ; + skos:definition "A Spatial Orientation of an Object relative to its Roll Axis."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001182 +cco:ont00001182 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000145 ; + rdfs:label "Phase Angle"@en ; + skos:altLabel "Orbital Phase Angle"@en ; + skos:definition "A Relational Quality that is the angle between the light incident onto an observed Object and the light reflected from the Object."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Phase_angle_(astronomy)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001186 +cco:ont00001186 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000784 ; + rdfs:label "Color Hue"@en ; + skos:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect a dominant wavelength of the visible light spectrum, which is typically divided up into 6 to 8 ranges."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001189 +cco:ont00001189 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Blue"@en ; + skos:definition "A Color that is between Cyan and Violet with a wavelength in the visible spectrum typically between 450 to 490 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001193 +cco:ont00001193 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000017 ; + rdfs:label "Fatigability"@en ; + skos:definition "A Realizable Entity that is realized when its bearer loses strength and tires quickly."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001199 +cco:ont00001199 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Protruding"@en ; + skos:definition "A Shape Quality inhering in a part of an object in virtue of the part extending out above or beyond the surface of the object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001202 +cco:ont00001202 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000019 ; + rdfs:label "Size Quality"@en ; + skos:definition "A Quality that inheres in a bearer in virtue of the bearer's extension in one or more dimensions."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001220 +cco:ont00001220 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001384 ; + rdfs:label "Opaque"@en ; + skos:definition "An Opacity that inheres in a bearer in virtue of that bearer's incapacity to transmit electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs all electromagnetic radiation of that frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001225 +cco:ont00001225 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Yellow"@en ; + skos:definition "A Color that is between Orange and Green with a wavelength in the visible spectrum typically between 560 to 590 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001277 +cco:ont00001277 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Red"@en ; + skos:definition "A Color that is above Orange with a wavelength in the visible spectrum typically between 635 to 700 nanometers."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001280 +cco:ont00001280 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Flat"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border without a significant deviation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001291 +cco:ont00001291 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000628 ; + rdfs:label "Radiation Absorptivity"@en ; + skos:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to absorb electromagnetic radiation of a given frequency."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001293 +cco:ont00001293 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001367 ; + rdfs:label "Perimeter"@en ; + skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the extent of a boundary which encloses the bearer."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001294 +cco:ont00001294 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001202 ; + rdfs:label "Three Dimensional Extent"@en ; + skos:altLabel "Volume"@en ; + skos:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in three dimensions."@en ; + cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001296 +cco:ont00001296 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000119 ; + rdfs:label "Pitch Orientation"@en ; + skos:altLabel "Pitch"@en ; + skos:definition "A Spatial Orientation of an Object relative to its Pitch Axis."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001318 +cco:ont00001318 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000119 ; + rdfs:label "Yaw Orientation"@en ; + skos:altLabel "Yaw"@en ; + skos:definition "A Spatial Orientation of an Object relative to its Yaw Axis."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001333 +cco:ont00001333 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Rosy"@en ; + skos:definition "A Color consisting of red hue and yellow hue and high brightness."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001349 +cco:ont00001349 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Grey"@en ; + skos:definition "A Color between white and black colors."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001354 +cco:ont00001354 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Vermilion"@en ; + skos:definition "A Color consisting of red and orange hue with a slight amount of gray."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001360 +cco:ont00001360 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Three Dimensional Shape"@en ; + skos:definition "A Shape Quality that inheres only in a three dimensional entity."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001367 +cco:ont00001367 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001202 ; + rdfs:comment "Subclasses of one dimensional extent are included for usability. It is doubtful any of them can be objectively distinguished (on the side of the bearing entity) without some reference to external properties such as orientation and perspective."@en ; + rdfs:label "One Dimensional Extent"@en ; + skos:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in one dimension."@en ; + cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001369 +cco:ont00001369 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00001059 ; + rdfs:label "Rectangular"@en ; + skos:definition "A Shape Quality inhering in a bearer in virtue of having four sides and four 90 degree angles."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001377 +cco:ont00001377 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000378 ; + rdfs:label "Gold Color"@en ; + skos:definition "A Color that resembles a yellow-orange Hue with the added feature of having a metallic shine."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001384 +cco:ont00001384 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000628 ; + rdfs:comment "Note that it is important to specify the frequency of electromagnetic radiation when representing a bearer's Opacity since a bearer may be Opaque with respect to electromagnetic radiation of one frequency, but be transparent with respect to electromagnetic radiation of another frequency. Unless otherwise stated, statements about a bearer's Opacity are assumed to be about electromagnetic radiation with a frequency in the visible spectrum."@en ; + rdfs:label "Opacity"@en ; + skos:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of that bearer's capacity to transmit electromagnetic radiation of a given frequency through the bearer instead of reflecting, scattering, or absorbing electromangentic radiation of that frequency."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Opacity_(optics)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.25.2023-02-15T19:15:49Z) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/TimeOntology.ttl b/src/cco-iris/TimeOntology.ttl new file mode 100644 index 00000000..5c28f6db --- /dev/null +++ b/src/cco-iris/TimeOntology.ttl @@ -0,0 +1,645 @@ +@prefix : . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent temporal regions and the relations that hold between them."@en ; + rdfs:label "Time Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 +cco:ont00001753 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001779 +cco:ont00001779 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001848 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000148 ; + rdfs:label "has inside instant"@en ; + skos:definition "For Temporal Interval t1 and Temporal Instant t2, t1 has inside instant t2 if and only if there exists Temporal Instants t3 and t4 that are part of t1 and non-identical with t2, such that t3 is before t2 and t4 is after t2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001795 +cco:ont00001795 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001924 ; + owl:inverseOf cco:ont00001869 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "has inside interval"@en ; + skos:definition "A Temporal Interval INT2 has inside interval some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001814 +cco:ont00001814 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001971 ; + owl:inverseOf cco:ont00001821 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval finishes"@en ; + skos:definition "A Temporal Interval INT1 finishes some Temporal Interval INT2 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001821 +cco:ont00001821 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001924 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval finished by"@en ; + skos:definition "A Temporal Interval INT2 is finished by some Temporal Interval INT1 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001822 +cco:ont00001822 rdf:type owl:ObjectProperty , + owl:SymmetricProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + owl:propertyDisjointWith cco:ont00001862 ; + rdfs:label "interval equals"@en ; + skos:definition "A Temporal Interval INT1 is equal to some Temporal Interval INT2 iff there exists Temporal Instants inst1 and inst2 such that inst1 is the starting instant of both INT1 and INT2 and inst2 is the ending instant of both INT1 and INT2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001825 +cco:ont00001825 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001870 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + owl:propertyDisjointWith cco:ont00001862 ; + rdfs:label "interval overlaps"@en ; + skos:definition "A Temporal Interval INT1 overlaps some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst1 is before inst3, inst3 is before inst2, and inst2 is before inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001847 +cco:ont00001847 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001862 ; + owl:inverseOf cco:ont00001940 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval is after"@en ; + skos:definition "A TemporalInterval INT2 is after some TemporalInterval INT1 iff there exists TemporalInstants inst2, inst1 such that inst2 is the starting instant of INT2 and inst1 is the ending instant of INT1 and inst2 is after inst1."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001848 +cco:ont00001848 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000148 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "is inside instant of"@en ; + skos:definition "For Temporal Instant t1 and Temporal Interval t2, t1 is inside instant of t2 if and only if there are Temporal Instants t3 and t4 non-identical to t1 and part of t2 such that t3 is before t1 and t4 is after t1."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001862 +cco:ont00001862 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + owl:propertyDisjointWith cco:ont00001870 , + cco:ont00001924 , + cco:ont00001971 ; + rdfs:label "interval disjoint"@en ; + skos:definition "A Temporal Interval INT1 is disjoint with a Temporal Interval INT2 iff INT1 is before or meets INT2 OR INT2 is before or meets INT1. In other words, INT1 and INT2 are disjoint iff INT1 and INT2 do not overlap, contain, or equal one another."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001869 +cco:ont00001869 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001971 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval during"@en ; + skos:definition "A Temporal Interval INT1 is during some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001870 +cco:ont00001870 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval overlapped by"@en ; + skos:definition "A Temporal Interval INT2 is overlapped by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst1 is before inst3, inst3 is before inst2, and inst2 is before inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001875 +cco:ont00001875 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001924 ; + owl:inverseOf cco:ont00001923 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval started by"@en ; + skos:definition "A Temporal Interval INT2 is started by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001893 +cco:ont00001893 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001990 ; + rdf:type owl:TransitiveProperty ; + rdfs:domain obo:BFO_0000148 ; + rdfs:range obo:BFO_0000148 ; + rdfs:label "instant is after"@en ; + skos:definition "A temporal instant t2 (a instance of a zero-dimensional temporal region) is after another temporal instant t1 iff there exists some instance of a temporal interval ti1 such that t1 is the starting instant of ti1 and t2 is the ending instant of ti1."@en ; + skos:scopeNote "'instant is after' is a primitive relationship. Informally, a temporal instant t2 is after some temporal instant t1 if and only if t1 precedes t2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001896 +cco:ont00001896 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001862 ; + owl:inverseOf cco:ont00001915 ; + rdf:type owl:IrreflexiveProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval meets"@en ; + skos:definition "A Temporal Interval INT1 meets some Temporal Interval INT2 iff there exists some Temporal Instant inst1 such that inst1 is the ending instant of INT1 and inst1 is the starting instant of INT2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001915 +cco:ont00001915 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001862 ; + rdf:type owl:IrreflexiveProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval met by"@en ; + skos:definition "A Temporal Interval INT2 is met by some Temporal Interval INT1 iff there exists some Temporal Instant inst1 such that inst1 is the starting instant of INT2 and inst1 is the ending instant of INT1."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001923 +cco:ont00001923 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001971 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval starts"@en ; + skos:definition "A Temporal Interval INT1 starts some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001924 +cco:ont00001924 rdf:type owl:ObjectProperty ; + owl:inverseOf cco:ont00001971 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval contains"@en ; + skos:definition "A Temporal Interval INT2 contains some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, and inst2 is before or identical to inst4, but it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001940 +cco:ont00001940 rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf cco:ont00001862 ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval is before"@en ; + skos:definition "A TemporalInterval INT1 is before some TemporalInterval INT2 iff there exists TemporalInstants inst1, inst2 such that inst1 is the ending instant of INT1 and inst2 is the starting instant of INT2 and inst1 is before inst2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001971 +cco:ont00001971 rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000038 ; + rdfs:range obo:BFO_0000038 ; + rdfs:label "interval contained by"@en ; + skos:definition "A Temporal Interval INT1 is contained by some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, inst2 is before or identical to inst4, and it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001990 +cco:ont00001990 rdf:type owl:ObjectProperty , + owl:TransitiveProperty ; + rdfs:domain obo:BFO_0000148 ; + rdfs:range obo:BFO_0000148 ; + rdfs:label "instant is before"@en ; + skos:definition "A temporal instant t1 (a instance of a zero-dimensional temporal region) is before another temporal instant t2 iff there exists some instance of a temporal interval ti1 such that t1 is the starting instant of ti1 and t2 is the ending instant of ti1."@en ; + skos:scopeNote "'instant is before' is a primitive relationship. Informally, a temporal instant t1 is before some temporal instant t2 if and only if t1 precedes t2."@en ; + cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000063 +cco:ont00000063 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00001058 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Hour Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Hours and spans at least one Hour."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000085 +cco:ont00000085 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00001058 + ] ; + rdfs:label "Minute"@en ; + skos:definition "A Temporal Interval that is equal to sixty consecutive Seconds."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=minute" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000114 +cco:ont00000114 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000203 ; + rdfs:label "Unix Temporal Instant"@en ; + skos:definition "A Temporal Instant as specified by the number of Seconds that have elapsed since the specified Epoch Time as described by an implementation of Unix Time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000184 +cco:ont00000184 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Axial Rotation Period"@en ; + skos:definition "A Temporal Interval that is equal to the length of time required for a spinning Object to complete one rotation around its Axis of Rotation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000211 +cco:ont00000211 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000800 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Day Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Days and spans at least one Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000223 +cco:ont00000223 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000203 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000132 ; + owl:someValuesFrom cco:ont00000800 + ] ; + rdfs:label "Time of Day"@en ; + skos:definition "A Temporal Instant that is part of a Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000225 +cco:ont00000225 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00000832 + ] ; + rdfs:label "Month"@en ; + skos:definition "A Temporal Interval that is based on the approximate length of time required for a Natural Satellite to complete one cycle of its rotational motion around its Primary Body."@en ; + skos:scopeNote "Unless otherwise specified, it is assumed that a Month is specified relative to the Rotational Motion of the Moon around the Earth. Earth Months are approximately equal to four consecutive Weeks or 30 consecutive Days."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=month" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000227 +cco:ont00000227 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000674 ; + rdfs:comment "A Julian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.25 Julian Days. Julian Years are typically indicated by prefixing a capital 'J' in front of the Year number, e.g. J2000.0 or J2018."@en ; + rdfs:label "Julian Year"@en ; + skos:definition "A Calendar Year in the Julian Calendar."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000259 +cco:ont00000259 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000225 ; + rdfs:label "Calendar Month"@en ; + skos:definition "A Month that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Month."@en ; + skos:example "January; February; March; April; May; June; July; August; September; October; November; December" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000329 +cco:ont00000329 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000225 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Month Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Months and spans at least one Month."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000359 +cco:ont00000359 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000223 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000132 ; + owl:someValuesFrom cco:ont00000498 + ] ; + rdfs:label "Julian Date"@en ; + skos:definition "A Time of Day as specified according to the Julian Calendar using the Julian Date epoch."@en ; + cco:ont00001753 "JD" ; + cco:ont00001754 "https://www.defit.org/julian-date/" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000425 +cco:ont00000425 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000674 ; + rdfs:comment "A Gregorian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.2425 Gregorian Days. The Gregorian Year is based upon the vernal equinox year. Unless otherwise stated, instances of Calendar Year are assumed to be instances of Gregorian Year since the Gregorian Calendar is the most widely used civil Calendar System."@en ; + rdfs:label "Gregorian Year"@en ; + skos:definition "A Calendar Year in the Gregorian Calendar."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000435 +cco:ont00000435 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000921 ; + rdfs:comment "A Gregorian Day is twenty-four Hours in duration."@en ; + rdfs:label "Gregorian Day"@en ; + skos:definition "A Calendar Day in the Gregorian Calendar."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000465 +cco:ont00000465 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000223 ; + rdfs:comment """A Day begins at midnight GMT within the Modified Julian Date reference system. The Modified Julian Date (MJD) is related to the Julian Date (JD) by the formula: +MJD = JD - 2400000.5"""@en ; + rdfs:label "Modified Julian Date"@en ; + skos:definition "A Time of Day as specified according to the Julian Calendar using the Modified Julian Date epoch."@en ; + cco:ont00001753 "MJD" ; + cco:ont00001754 "http://aa.usno.navy.mil/data/docs/JulianDate.php" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000498 +cco:ont00000498 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000921 ; + rdfs:comment "A Julian Day begins at noon Universal Time and is twenty-four Hours in duration."@en ; + rdfs:label "Julian Day"@en ; + skos:definition "A Calendar Day in the Julian Calendar."@en ; + cco:ont00001754 "https://www.defit.org/julian-date/" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000550 +cco:ont00000550 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Morning"@en ; + skos:definition "A Temporal Interval that consists of the temporal regions between when the sun dawns (approximately 6:00am) and reaches its apex (approximately 12:00pm)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000619 +cco:ont00000619 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00000225 + ] ; + rdfs:label "Week"@en ; + skos:definition "A Temporal Interval that is equal to seven consecutive Days."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=week" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000674 +cco:ont00000674 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000832 ; + rdfs:label "Calendar Year"@en ; + skos:definition "A Year that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Year."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000699 +cco:ont00000699 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Afternoon"@en ; + skos:definition "A Temporal Interval that consists of the temporal regions between when the sun is at its apex (approximately 12:00pm) and when it sets (approximately 6:00pm)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000800 +cco:ont00000800 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00000619 + ] ; + rdfs:label "Day"@en ; + skos:definition "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one rotation around its Rotational Axis as specified relative to a particular Temporal Reference System."@en ; + skos:scopeNote "Unless otherwise specified, a Day is assumed to be relative to the rotational motion of the Earth and is approximately equal to a twenty-four hour temporal region for which the start and end times are specified by the Temporal Reference System used."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=day" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000810 +cco:ont00000810 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000619 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Week Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Weeks and spans at least one Week."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000832 +cco:ont00000832 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00001088 + ] ; + rdfs:label "Year"@en ; + skos:definition "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one Orbital Revolution around its Primary Body as specified relative to a particular Temporal Reference System."@en ; + skos:scopeNote "Unless otherwise specified, a Year is assumed to be relative to the Orbiting of the Earth around the Sun and is approximately equal to 12 Months or 365 Days."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=year" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000921 +cco:ont00000921 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000800 ; + rdfs:label "Calendar Day"@en ; + skos:definition "A Day that begins and ends concurrently with the Seconds specified by a Calendar System to be the first and last Seconds of the Day."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000992 +cco:ont00000992 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00000085 + ] ; + rdfs:comment "The Second is used as the basic SI unit of time."@en ; + rdfs:label "Second"@en ; + skos:definition "A Temporal Interval that is equal to the duration of 9,192,631,770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom."@en ; + cco:ont00001754 "https://physics.nist.gov/cuu/Units/second.html" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001023 +cco:ont00001023 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000619 ; + rdfs:label "Calendar Week"@en ; + skos:definition "A Week that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Week."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=calendar+week" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001058 +cco:ont00001058 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001869 ; + owl:someValuesFrom cco:ont00000800 + ] ; + rdfs:label "Hour"@en ; + skos:definition "A Temporal Interval that is equal to sixty consecutive Minutes."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=hour" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001088 +cco:ont00001088 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Decade"@en ; + skos:definition "A Temporal Interval that is equal to a period of ten consecutive Years."@en ; + cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=decade" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001110 +cco:ont00001110 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Evening"@en ; + skos:definition "A Temporal Interval that consists of the temporal regions between when the sun sets (approximately 6:00pm) and when people typically retire to sleep (approximately 9:00pm)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001116 +cco:ont00001116 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000203 ; + rdfs:label "Reference Time"@en ; + skos:altLabel "Epoch"@en , + "Epoch Time"@en , + "Reference Date"@en ; + skos:definition "A Temporal Instant specified as the origin for which other Temporal Regions are measured or identified."@en ; + cco:ont00001754 "https://en.wikipedia.org/wiki/Epoch_(reference_date)" ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001154 +cco:ont00001154 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000992 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Second Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Seconds and spans at least one Second."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001166 +cco:ont00001166 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000085 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Minute Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Minutes and spans at least one Minute."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001204 +cco:ont00001204 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000202 ; + rdfs:label "Night"@en ; + skos:definition "A Temporal Interval that consists of the temporal regions between when people typically retire to sleep (approximately 9:00pm) and when the sun dawns (approximately 6:00am)."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001206 +cco:ont00001206 rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000038 , + [ rdf:type owl:Restriction ; + owl:onProperty cco:ont00001924 ; + owl:someValuesFrom cco:ont00000832 + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Year Temporal Interval"@en ; + skos:definition "A one-dimensional temporal region that is measured in Years and spans at least one Year."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/UnitsOfMeasureOntology.ttl b/src/cco-iris/UnitsOfMeasureOntology.ttl new file mode 100644 index 00000000..b32024be --- /dev/null +++ b/src/cco-iris/UnitsOfMeasureOntology.ttl @@ -0,0 +1,1531 @@ +@prefix : . +@prefix dc: . +@prefix obo: . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix cco: . +@prefix rdfs: . +@prefix skos: . +@prefix dcterms: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports ; + dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + dcterms:rights "CUBRC Inc., see full license."@en ; + rdfs:comment "This ontology is designed to represent standard measurement units that are used when measuring various attributes of entities."@en ; + rdfs:label "Units of Measure Ontology"@en ; + owl:versionInfo "Version 2.0"@en . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/contributor +dcterms:contributor rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/rights +dcterms:rights rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001738 +cco:ont00001738 rdf:type owl:AnnotationProperty ; + rdfs:label "SI unit label"@en ; + skos:definition "An Alternative Label that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI ; + rdfs:subPropertyOf skos:altLabel . + + +### https://www.commoncoreontologies.org/ont00001740 +cco:ont00001740 rdf:type owl:AnnotationProperty ; + rdfs:label "SI unit symbol"@en ; + skos:definition "An Acronym that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI ; + rdfs:subPropertyOf cco:ont00001753 . + + +### https://www.commoncoreontologies.org/ont00001753 +cco:ont00001753 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 +cco:ont00001754 rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 +cco:ont00001760 rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000061 +cco:ont00000061 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Flow"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the rate at which portions of a substance pass per unit of time."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000074 +cco:ont00000074 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Acceleration"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the rate at which objects change their velocities per unit of time."@en ; + skos:example "feet per second per second, kilometers per second per second" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000120 +cco:ont00000120 rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000140 +cco:ont00000140 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:comment "The type of particle quantified is typically either atoms or molecules, but may also be protons, neutrons, electrons, quarks, or other particles. The type of particle being measured should always be specified along with the measurement and its unit."@en ; + rdfs:label "Measurement Unit of Amount of Substance"@en ; + skos:altLabel "Measurement Unit of Chemical Amount"@en , + "Measurement Unit of Enplethy"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the number of a specified type of particle in a portion of matter."@en ; + skos:example "mole, pound-mole" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology" . + + +### https://www.commoncoreontologies.org/ont00000198 +cco:ont00000198 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Sound Level"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the level (the loudness) of sounds."@en ; + skos:example "decibels, sones" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000217 +cco:ont00000217 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Area"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of two-dimensional regions or Geospatial Regions."@en ; + skos:example "square feet, square meters, acre, hectare" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000229 +cco:ont00000229 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Power"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of rates of work."@en ; + skos:example "watt, horsepower" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000239 +cco:ont00000239 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Mass"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of an object's resistance to Acceleration when a Force is applied to the object."@en ; + skos:example "ounce, gram, pound" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000374 +cco:ont00000374 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000061 ; + rdfs:label "Measurement Unit of Volumetric Flow Rate"@en ; + skos:definition "A Measurement Unit of Flow that is used as a standard for measurement of the rate at which volumes of fluid pass per unit time."@en ; + skos:example "cubic metres per second, standard cubic centimeters per minute, cubic feet per second, gallons per minute" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000444 +cco:ont00000444 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Energy"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the Amount of work that is available in an object."@en ; + skos:example "ft-lbs, calorie, horsepower, kilowatt" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000497 +cco:ont00000497 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Force"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of interactions in which the Motion or Velocity of an object is changed, unless the interaction is opposed."@en ; + skos:example "newton, dyne, pound force " ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000502 +cco:ont00000502 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Area Moment of Inertia"@en ; + skos:altLabel "Measurement Unit of Second Area Moment"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the distribution of Mass of an object with respect to an axis."@en ; + skos:scopeNote "A measure of an object’s resistance to bending or deflection."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000527 +cco:ont00000527 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Rotational Inertia"@en ; + skos:altLabel "Measurement Unit of Moment of Inertia"@en , + "Measurement Unit of Rotational Mass"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the distribution of Mass of an object with respect to its axis of rotation."@en ; + skos:scopeNote "A measure of an object’s resistance to change in its state of rotation."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000659 +cco:ont00000659 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Torque"@en ; + skos:altLabel "Measurement Unit of Moment of Force"@en , + "Measurement Unit of Rotational Force"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the rate of change of angular momentum of an object."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000707 +cco:ont00000707 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Angle"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the angle between two lines or planes in relation to a vertex."@en ; + skos:example "degrees, radians" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000770 +cco:ont00000770 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Density"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the mass of an object per unit of its total volume."@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000844 +cco:ont00000844 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Temperature"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the thermal energy in an object."@en ; + skos:example "celsius, fahrenheit, kelvin" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000852 +cco:ont00000852 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Work"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of displacements of points to which Forces have been applied."@en ; + skos:example "joule, erg, kilowatt hour" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000940 +cco:ont00000940 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Momentum"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the Momentum of a portion of matter that is in Motion."@en ; + skos:example "kg m/s, slug ft/s, g m/s" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000959 +cco:ont00000959 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Frequency"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the number of times an event repeats per unit of time."@en ; + skos:example "hertz, revolutions per minute" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000969 +cco:ont00000969 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Speed"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the rates at which objects traverse distance."@en ; + skos:example "miles per hour, kilometers per hour, knot, mach" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001004 +cco:ont00001004 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Electromagnetic Force"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the electromagnetic force between electrically charged entities."@en ; + skos:example "volt, ampere, coulomb" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001090 +cco:ont00001090 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Pressure"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of Force applied perpendicular to a surface per unit area."@en ; + skos:example "pascal, atmosphere, pound-force per square inch" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001290 +cco:ont00001290 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Length"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of one-dimensional regions or Geospatial Regions."@en ; + skos:example "foot, meter, kilometer, mile" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001307 +cco:ont00001307 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000061 ; + rdfs:label "Measurement Unit of Mass Flow Rate"@en ; + skos:definition "A Measurement Unit of Flow that is used as a standard for measurement of the rate at which the Mass of a substance passes per unit time."@en ; + skos:example "kilogram per second, slug per second, pound per second" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001317 +cco:ont00001317 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Volume"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of sites or three-dimensional regions or Geospatial Regions."@en ; + skos:example "cubic feet, cubic meter, quart, liter" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001345 +cco:ont00001345 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Impulse"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of the integral of a Force applied to a portion of matter over a temporal interval."@en ; + skos:example "N s, dyne second" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001357 +cco:ont00001357 rdf:type owl:Class ; + rdfs:subClassOf cco:ont00000120 ; + rdfs:label "Measurement Unit of Time"@en ; + skos:definition "A Measurement Unit that is used as a standard for measurement of temporal regions."@en ; + skos:example "second, minute, hour, day" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001388 +cco:ont00001388 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Minute of Arc Measurement Unit"@en ; + skos:altLabel "Arcminute"@en , + "MOA"@en , + "am"@en , + "amin"@en , + "arcmin"@en ; + cco:ont00001740 "'" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001390 +cco:ont00001390 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Slug Measurement Unit"@en ; + skos:altLabel "slug"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001391 +cco:ont00001391 rdf:type owl:NamedIndividual , + cco:ont00000229 , + cco:ont00000444 , + cco:ont00000852 ; + rdfs:label "Erg Measurement Unit"@en ; + skos:altLabel "erg"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001393 +cco:ont00001393 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Tablespoon Measurement Unit"@en ; + cco:ont00001753 "T" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001397 +cco:ont00001397 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Centimeter Measurement Unit"@en ; + skos:altLabel "cm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001402 +cco:ont00001402 rdf:type owl:NamedIndividual , + cco:ont00000770 ; + rdfs:label "Kilogram Per Liter Measurement Unit"@en ; + cco:ont00001740 "kg/L" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001407 +cco:ont00001407 rdf:type owl:NamedIndividual , + cco:ont00000229 ; + rdfs:label "Shaft Horsepower Measurement Unit"@en ; + skos:altLabel "shp"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001411 +cco:ont00001411 rdf:type owl:NamedIndividual , + cco:ont00000497 ; + rdfs:label "Pound Force Measurement Unit"@en ; + skos:altLabel "lbf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001413 +cco:ont00001413 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Milligram Measurement Unit"@en ; + skos:altLabel "mg"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001416 +cco:ont00001416 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Centimeter Measurement Unit"@en ; + skos:altLabel "cm^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001418 +cco:ont00001418 rdf:type owl:NamedIndividual , + cco:ont00000140 ; + rdfs:label "Kilogram-Mole Measurement Unit"@en ; + skos:altLabel "kg-mol"@en , + "kilogram-mole"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001422 +cco:ont00001422 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Quart Measurement Unit"@en ; + cco:ont00001753 "qt" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001423 +cco:ont00001423 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Deciliter Measurement Unit"@en ; + skos:altLabel "dL"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001425 +cco:ont00001425 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Miles Per Second Measurement Unit"@en ; + skos:altLabel "mi/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001428 +cco:ont00001428 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Kilometers Per Hour Measurement Unit"@en ; + skos:altLabel "km/h"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001429 +cco:ont00001429 rdf:type owl:NamedIndividual , + cco:ont00000140 ; + rdfs:label "Gram-Mole Measurement Unit"@en ; + skos:altLabel "g-mol"@en , + "gram-mole"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001432 +cco:ont00001432 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Kilogram Force Per Centimeter Square Measurement Unit"@en ; + skos:altLabel "Kilogram Per Square Centimeter Measurement Unit"@en , + "Kilopond Per Centimeter Square Measurement Unit"@en ; + cco:ont00001753 "kg/cm^2" , + "kgf/cm^2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001433 +cco:ont00001433 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Mile Measurement Unit"@en ; + skos:altLabel "mi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001437 +cco:ont00001437 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Liter Measurement Unit"@en ; + skos:altLabel "Litre"@en ; + cco:ont00001740 "L" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001438 +cco:ont00001438 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Yard Measurement Unit"@en ; + skos:altLabel "yd^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001442 +cco:ont00001442 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Week Measurement Unit"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001444 +cco:ont00001444 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Year Measurement Unit"@en ; + skos:altLabel "yr"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001445 +cco:ont00001445 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Centiliter Measurement Unit"@en ; + skos:altLabel "cL"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001450 +cco:ont00001450 rdf:type owl:NamedIndividual , + cco:ont00001004 ; + rdfs:label "Volt Measurement Unit"@en ; + skos:altLabel "V"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001451 +cco:ont00001451 rdf:type owl:NamedIndividual , + cco:ont00001004 ; + rdfs:label "Milliampere Measurement Unit"@en ; + skos:altLabel "mA"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001453 +cco:ont00001453 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Binary Degree Measurement Unit"@en ; + skos:altLabel "Binary Radian"@en , + "Brad"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001456 +cco:ont00001456 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Mile Measurement Unit"@en ; + skos:altLabel "mi^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001459 +cco:ont00001459 rdf:type owl:NamedIndividual , + cco:ont00001307 ; + rdfs:label "Pound Per Second Measurement Unit"@en ; + skos:altLabel "lb/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001462 +cco:ont00001462 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Twenty Foot Equivalent Unit"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001463 +cco:ont00001463 rdf:type owl:NamedIndividual , + cco:ont00000140 ; + rdfs:label "Kilomole Measurement Unit"@en ; + skos:altLabel "kilomole"@en , + "kmol"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001466 +cco:ont00001466 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Revolutions Per Day Measurement Unit"@en ; + skos:altLabel "r/day"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001469 +cco:ont00001469 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Kilometers Per Second Measurement Unit"@en ; + skos:altLabel "km/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001470 +cco:ont00001470 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Megahertz Measurement Unit"@en ; + skos:altLabel "MHz"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001471 +cco:ont00001471 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Centimeter Measurement Unit"@en ; + skos:altLabel "cm^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001472 +cco:ont00001472 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Millimeter Measurement Unit"@en ; + skos:altLabel "mm^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001474 +cco:ont00001474 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Atmosphere Measurement Unit"@en ; + skos:altLabel "atm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001475 +cco:ont00001475 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Kilohertz Measurement Unit"@en ; + skos:altLabel "kHz"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001477 +cco:ont00001477 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Kilogram Measurement Unit"@en ; + cco:ont00001738 "kilogram" ; + cco:ont00001740 "kg" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001478 +cco:ont00001478 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Angstrom Measurement Unit"@en ; + skos:altLabel "Angstrom"@en , + "Å"@en , + "Ångström"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001483 +cco:ont00001483 rdf:type owl:NamedIndividual , + cco:ont00000140 ; + rdfs:comment "One mole contains exactly 6.02214076×10^23 elementary entities."@en ; + rdfs:label "Mole Measurement Unit"@en ; + cco:ont00001738 "mole" ; + cco:ont00001740 "mol" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001486 +cco:ont00001486 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Kilometer Measurement Unit"@en ; + skos:altLabel "km^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001489 +cco:ont00001489 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Radian Measurement Unit"@en ; + cco:ont00001738 "radian" ; + cco:ont00001740 "rad" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001493 +cco:ont00001493 rdf:type owl:NamedIndividual , + cco:ont00000497 ; + rdfs:label "Kilonewton Measurement Unit"@en ; + skos:altLabel "kN"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001494 +cco:ont00001494 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Yard Measurement Unit"@en ; + skos:altLabel "yrd"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001495 +cco:ont00001495 rdf:type owl:NamedIndividual , + cco:ont00000198 ; + rdfs:label "Sone Measurement Unit"@en ; + skos:altLabel "sone"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001496 +cco:ont00001496 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Meter Measurement Unit"@en ; + skos:altLabel "m^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001499 +cco:ont00001499 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Kiloliter Measurement Unit"@en ; + skos:altLabel "kL"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001502 +cco:ont00001502 rdf:type owl:NamedIndividual , + cco:ont00000229 ; + dcterms:contributor "Donna Jones" , + "Olivia Hobai" ; + rdfs:label "Decibel Isotropic Measurement Unit"@en ; + skos:altLabel "Decibels Over Isotropic" , + "Decibels Over Isotropic Antenna" , + "Decibels Relative to Isotrope" , + "Decibels Relative to Isotropic Radiator" , + "Decibels Relative to an Isotropic Reference Antenna" ; + cco:ont00001740 "dBi" ; + cco:ont00001754 "https://shopdelta.eu/dbi-power-gain-of-isotropic-antenna_l2_aid836.html"^^xsd:anyURI , + "https://www.techtarget.com/whatis/definition/decibels-relative-to-isotropic-radiator-dBi"^^xsd:anyURI ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001504 +cco:ont00001504 rdf:type owl:NamedIndividual , + cco:ont00000659 ; + rdfs:label "Newton Meter Measurement Unit"@en ; + cco:ont00001740 "N-m" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001511 +cco:ont00001511 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Meters Per Second Measurement Unit"@en ; + skos:altLabel "m/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001522 +cco:ont00001522 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Foot Measurement Unit"@en ; + skos:altLabel "ft^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001523 +cco:ont00001523 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Pint Measurement Unit"@en ; + skos:altLabel "pt"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001525 +cco:ont00001525 rdf:type owl:NamedIndividual , + cco:ont00000497 ; + rdfs:label "Newton Measurement Unit"@en ; + cco:ont00001738 "newton" ; + cco:ont00001740 "N" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001526 +cco:ont00001526 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Mach Measurement Unit"@en ; + skos:altLabel "M"@en , + "Ma"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001528 +cco:ont00001528 rdf:type owl:NamedIndividual , + cco:ont00000940 ; + rdfs:label "Kilogram Meter Per Second Measurement Unit"@en ; + skos:altLabel "kg m/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001530 +cco:ont00001530 rdf:type owl:NamedIndividual , + cco:ont00000374 ; + rdfs:label "Cubic Meter Per Second Measurement Unit"@en ; + cco:ont00001740 "m^3/s" ; + cco:ont00001753 "cumec" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001533 +cco:ont00001533 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Hour Measurement Unit"@en ; + skos:altLabel "hr"@en ; + cco:ont00001740 "h" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001536 +cco:ont00001536 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Second Measurement Unit"@en ; + cco:ont00001738 "second" ; + cco:ont00001740 "s" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001538 +cco:ont00001538 rdf:type owl:NamedIndividual , + cco:ont00000074 ; + rdfs:label "Meters Per Second Per Second Measurement Unit"@en ; + skos:altLabel "m/s/s"@en , + "m/s^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001543 +cco:ont00001543 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Decimeter Measurement Unit"@en ; + skos:altLabel "dm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001544 +cco:ont00001544 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Short Ton Measurement Unit"@en ; + skos:altLabel "Net Ton"@en , + "ton (US)"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001549 +cco:ont00001549 rdf:type owl:NamedIndividual , + cco:ont00000497 ; + rdfs:label "Dyne Measurement Unit"@en ; + skos:altLabel "dyn"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001551 +cco:ont00001551 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Foot Measurement Unit"@en ; + skos:altLabel "ft^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001552 +cco:ont00001552 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Gram Measurement Unit"@en ; + skos:altLabel "g"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001555 +cco:ont00001555 rdf:type owl:NamedIndividual , + cco:ont00000659 ; + rdfs:label "Pound Foot Measurement Unit"@en ; + cco:ont00001753 "lb ft" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001557 +cco:ont00001557 rdf:type owl:NamedIndividual , + cco:ont00000527 ; + rdfs:label "Pound Foot Second Square Measurement Unit"@en ; + cco:ont00001753 "lb ft s^2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001559 +cco:ont00001559 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Pascal Measurement Unit"@en ; + cco:ont00001738 "pascal" ; + cco:ont00001740 "Pa" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001560 +cco:ont00001560 rdf:type owl:NamedIndividual , + cco:ont00000229 , + cco:ont00000444 , + cco:ont00000852 ; + rdfs:label "Calorie Measurement Unit"@en ; + skos:altLabel "cal"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001563 +cco:ont00001563 rdf:type owl:NamedIndividual , + cco:ont00000229 , + cco:ont00000444 , + cco:ont00000852 ; + rdfs:label "Horsepower Measurement Unit"@en ; + skos:altLabel "hp"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001564 +cco:ont00001564 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Decigram Measurement Unit"@en ; + skos:altLabel "dg"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001566 +cco:ont00001566 rdf:type owl:NamedIndividual , + cco:ont00000229 ; + rdfs:label "Watt Measurement Unit"@en ; + cco:ont00001738 "watt" ; + cco:ont00001740 "W" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001567 +cco:ont00001567 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Ounce Measurement Unit"@en ; + skos:altLabel "oz"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001568 +cco:ont00001568 rdf:type owl:NamedIndividual , + cco:ont00000770 ; + rdfs:label "Gram Per Cubic Centimeter Measurement Unit"@en ; + cco:ont00001740 "g/cm^3" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001569 +cco:ont00001569 rdf:type owl:NamedIndividual , + cco:ont00000770 ; + rdfs:label "Kilogram Per Cubic Meter Measurement Unit"@en ; + cco:ont00001738 "kg/m^3" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001571 +cco:ont00001571 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Day Measurement Unit"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001572 +cco:ont00001572 rdf:type owl:NamedIndividual , + cco:ont00000844 ; + rdfs:label "Kelvin Measurement Unit"@en ; + cco:ont00001738 "kelvin" ; + cco:ont00001740 "K" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001573 +cco:ont00001573 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Teaspoon Measurement Unit"@en ; + cco:ont00001753 "t" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001574 +cco:ont00001574 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Revolutions Per Minute Measurement Unit"@en ; + skos:altLabel "r/min"@en , + "rpm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001576 +cco:ont00001576 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Milliliter Measurement Unit"@en ; + skos:altLabel "mL"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001579 +cco:ont00001579 rdf:type owl:NamedIndividual , + cco:ont00000374 ; + rdfs:label "Liter Per Second Measurement Unit"@en ; + skos:altLabel "l/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001583 +cco:ont00001583 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Feet Per Second Measurement Unit"@en ; + skos:altLabel "ft/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001585 +cco:ont00001585 rdf:type owl:NamedIndividual , + cco:ont00000940 ; + rdfs:label "Newton Second Per Kilogram Measurement Unit"@en ; + skos:altLabel "Ns/kg"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001587 +cco:ont00001587 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Bayre Measurement Unit"@en ; + skos:altLabel "ba"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001589 +cco:ont00001589 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Inch Measurement Unit"@en ; + skos:altLabel "in^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001596 +cco:ont00001596 rdf:type owl:NamedIndividual , + cco:ont00001307 ; + rdfs:label "Kilogram Per Second Measurement Unit"@en ; + cco:ont00001740 "kg/s" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001598 +cco:ont00001598 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Kilometer Measurement Unit"@en ; + skos:altLabel "km"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001602 +cco:ont00001602 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Miles Per Hour Measurement Unit"@en ; + skos:altLabel "mi/h"@en , + "mph"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001604 +cco:ont00001604 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Degree Measurement Unit"@en ; + cco:ont00001740 "°" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001606 +cco:ont00001606 rdf:type owl:NamedIndividual , + cco:ont00000844 ; + rdfs:label "Degree Celsius Measurement Unit"@en ; + cco:ont00001738 "degree Celsius" ; + cco:ont00001740 "°C" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001608 +cco:ont00001608 rdf:type owl:NamedIndividual , + cco:ont00000140 ; + rdfs:label "Pound-Mole Measurement Unit"@en ; + skos:altLabel "lb-mol"@en , + "lbmol"@en , + "pound-mole"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001609 +cco:ont00001609 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Gradian Measurement Unit"@en ; + skos:altLabel "Gon"@en , + "Grad"@en , + "Grade"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001611 +cco:ont00001611 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Gallon Measurement Unit"@en ; + skos:altLabel "gal"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001612 +cco:ont00001612 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Bar Measurement Unit"@en ; + skos:altLabel "bar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001613 +cco:ont00001613 rdf:type owl:NamedIndividual , + cco:ont00001004 ; + rdfs:label "Kilovolt Ampere Measurement Unit"@en ; + skos:altLabel "kVA"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001629 +cco:ont00001629 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Nautical Mile Measurement Unit"@en ; + skos:altLabel "M"@en , + "NM"@en , + "nmi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001636 +cco:ont00001636 rdf:type owl:NamedIndividual , + cco:ont00000198 ; + rdfs:label "Phon Measurement Unit"@en ; + skos:altLabel "phon"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001637 +cco:ont00001637 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Nanometer Measurement Unit"@en ; + skos:altLabel "Nanometre"@en , + "nm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001641 +cco:ont00001641 rdf:type owl:NamedIndividual , + cco:ont00000527 ; + rdfs:label "Kilogram Meter Square Measurement Unit"@en ; + cco:ont00001740 "kg-m^2" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001642 +cco:ont00001642 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Millimeter Measurement Unit"@en ; + skos:altLabel "mm"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001643 +cco:ont00001643 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Millibar Measurement Unit"@en ; + skos:altLabel "mb"@en , + "mbar"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001644 +cco:ont00001644 rdf:type owl:NamedIndividual , + cco:ont00000374 ; + rdfs:label "Cubic Feet Per Second Measurement Unit"@en ; + skos:altLabel "ft^3/s"@en ; + cco:ont00001753 "cusec" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001645 +cco:ont00001645 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Inch Measurement Unit"@en ; + skos:altLabel "in^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001646 +cco:ont00001646 rdf:type owl:NamedIndividual , + cco:ont00000969 ; + rdfs:label "Knot Measurement Unit"@en ; + skos:altLabel "kn"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001647 +cco:ont00001647 rdf:type owl:NamedIndividual , + cco:ont00000074 ; + rdfs:label "Feet Per Second Per Second Measurement Unit"@en ; + skos:altLabel "ft/s/s"@en , + "ft/s^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001651 +cco:ont00001651 rdf:type owl:NamedIndividual , + cco:ont00001307 ; + rdfs:label "Gram Per Second Measurement Unit"@en ; + skos:altLabel "g/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001653 +cco:ont00001653 rdf:type owl:NamedIndividual , + cco:ont00000229 , + cco:ont00000444 , + cco:ont00000852 ; + rdfs:label "Joule Measurement Unit"@en ; + cco:ont00001738 "joule" ; + cco:ont00001740 "J" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001656 +cco:ont00001656 rdf:type owl:NamedIndividual , + cco:ont00001345 ; + rdfs:label "Newton Second Measurement Unit"@en ; + skos:altLabel "N s"@en , + "Newton second"@en , + "Ns"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001659 +cco:ont00001659 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Turn Measurement Unit"@en ; + skos:altLabel "Cycle"@en , + "Full Circle"@en , + "Revolution"@en , + "Rotation"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001663 +cco:ont00001663 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Meter Measurement Unit"@en ; + skos:altLabel "m^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001664 +cco:ont00001664 rdf:type owl:NamedIndividual , + cco:ont00000198 ; + rdfs:label "Decibel Measurement Unit"@en ; + cco:ont00001740 "dB" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001667 +cco:ont00001667 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Minute Measurement Unit"@en ; + cco:ont00001740 "min" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001669 +cco:ont00001669 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Gigahertz Measurement Unit"@en ; + skos:altLabel "GHz"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001672 +cco:ont00001672 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Decimeter Measurement Unit"@en ; + skos:altLabel "dm^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001675 +cco:ont00001675 rdf:type owl:NamedIndividual , + cco:ont00000940 ; + rdfs:label "Slug Foot Per Second Measurement Unit"@en ; + skos:altLabel "slug ft/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001676 +cco:ont00001676 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Metric Ton Measurement Unit"@en ; + skos:altLabel "tonne"@en ; + cco:ont00001740 "t" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001677 +cco:ont00001677 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Inch Measurement Unit"@en ; + skos:altLabel "in"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001678 +cco:ont00001678 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Decimeter Measurement Unit"@en ; + skos:altLabel "dm^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001680 +cco:ont00001680 rdf:type owl:NamedIndividual , + cco:ont00000074 ; + rdfs:label "Miles Per Second Per Second Measurement Unit"@en ; + skos:altLabel "mi/s/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001681 +cco:ont00001681 rdf:type owl:NamedIndividual , + cco:ont00000374 ; + rdfs:label "Gallon Per Minute Measurement Unit"@en ; + skos:altLabel "gal/min"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001682 +cco:ont00001682 rdf:type owl:NamedIndividual , + cco:ont00000497 ; + rdfs:label "Kilopond Measurement Unit"@en ; + skos:altLabel "Kilogram Force Measurement Unit"@en , + "Kilogram-Force"@en , + "kgf"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001683 +cco:ont00001683 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Meter Measurement Unit"@en ; + cco:ont00001738 "meter" ; + cco:ont00001740 "m" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001685 +cco:ont00001685 rdf:type owl:NamedIndividual , + cco:ont00000707 ; + rdfs:label "Second of Arc Measurement Unit"@en ; + skos:altLabel "Arcsecond"@en , + "arcsec"@en , + "as"@en , + "asec"@en ; + cco:ont00001740 "\"" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001686 +cco:ont00001686 rdf:type owl:NamedIndividual , + cco:ont00000374 ; + rdfs:label "Standard Cubic Centimeter Per Minute Measurement Unit"@en ; + skos:altLabel "cm^3/min"@en ; + cco:ont00001753 "sccm" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001687 +cco:ont00001687 rdf:type owl:NamedIndividual , + cco:ont00001317 ; + rdfs:label "Cubic Yard Measurement Unit"@en ; + skos:altLabel "yrd^3"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001689 +cco:ont00001689 rdf:type owl:NamedIndividual , + cco:ont00000229 , + cco:ont00000444 , + cco:ont00000852 ; + rdfs:label "British Thermal Unit Measurement Unit"@en ; + skos:altLabel "BTU"@en , + "Btu"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001694 +cco:ont00001694 rdf:type owl:NamedIndividual , + cco:ont00001090 ; + rdfs:label "Pounds Per Square Inch Measurement Unit"@en ; + skos:altLabel "psi"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001696 +cco:ont00001696 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Centigram Measurement Unit"@en ; + skos:altLabel "cg"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001697 +cco:ont00001697 rdf:type owl:NamedIndividual , + cco:ont00000074 ; + rdfs:label "Kilometers Per Second Per Second Measurement Unit"@en ; + skos:altLabel "km/s/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001698 +cco:ont00001698 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Long Ton Measurement Unit"@en ; + skos:altLabel "Displacement Ton"@en , + "Gross Ton"@en , + "Imperial Ton"@en , + "Weight Ton"@en , + "ton (UK)"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001706 +cco:ont00001706 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Acre Measurement Unit"@en ; + skos:altLabel "acre"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001707 +cco:ont00001707 rdf:type owl:NamedIndividual , + cco:ont00001357 ; + rdfs:label "Month Measurement Unit"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001709 +cco:ont00001709 rdf:type owl:NamedIndividual , + cco:ont00000502 ; + rdfs:label "Quartic Meter Measurement Unit"@en ; + cco:ont00001740 "m^4" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001711 +cco:ont00001711 rdf:type owl:NamedIndividual , + cco:ont00001345 ; + rdfs:label "Dyne Second Measurement Unit"@en ; + skos:altLabel "dyne s"@en , + "dyne second"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001713 +cco:ont00001713 rdf:type owl:NamedIndividual , + cco:ont00000217 ; + rdfs:label "Square Millimeter Measurement Unit"@en ; + skos:altLabel "mm^2"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001714 +cco:ont00001714 rdf:type owl:NamedIndividual , + cco:ont00001290 ; + rdfs:label "Foot Measurement Unit"@en ; + skos:altLabel "ft"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001715 +cco:ont00001715 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Terahertz Measurement Unit"@en ; + skos:altLabel "THz"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001724 +cco:ont00001724 rdf:type owl:NamedIndividual , + cco:ont00000844 ; + rdfs:label "Degree Fahrenheit Measurement Unit"@en ; + skos:altLabel "°F"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001728 +cco:ont00001728 rdf:type owl:NamedIndividual , + cco:ont00000239 ; + rdfs:label "Pound Measurement Unit"@en ; + skos:altLabel "lb"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001729 +cco:ont00001729 rdf:type owl:NamedIndividual , + cco:ont00001004 ; + rdfs:label "Volt Ampere Measurement Unit"@en ; + skos:altLabel "VA"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001730 +cco:ont00001730 rdf:type owl:NamedIndividual , + cco:ont00000959 ; + rdfs:label "Hertz Measurement Unit"@en ; + skos:altLabel "cycles per second"@en ; + cco:ont00001738 "hertz" ; + cco:ont00001740 "Hz" ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001733 +cco:ont00001733 rdf:type owl:NamedIndividual , + cco:ont00001307 ; + rdfs:label "Slug Per Second Measurement Unit"@en ; + skos:altLabel "slug/s"@en ; + cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000001.ttl b/src/cco-iris/ont00000001.ttl new file mode 100644 index 00000000..f33103e4 --- /dev/null +++ b/src/cco-iris/ont00000001.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000001 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Deflecting Prism"@en ; + "A Prism designed to deflect a beam of light entering the Prism by a fixed angle."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000804 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000002.ttl b/src/cco-iris/ont00000002.ttl new file mode 100644 index 00000000..349a875f --- /dev/null +++ b/src/cco-iris/ont00000002.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000002 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cooling Artifact Function"@en ; + "An Artifact Function that is realized in a process in which the thermal energy of a system decreases."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000003.ttl b/src/cco-iris/ont00000003.ttl new file mode 100644 index 00000000..367aa04d --- /dev/null +++ b/src/cco-iris/ont00000003.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000003 + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Designative Name"@en ; + "Name"@en ; + "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified cultural or social namespace and which is typically a word or phrase in a natural language that has an accepted cultural or social significance."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000605 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000649 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000990 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001014 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000004.ttl b/src/cco-iris/ont00000004.ttl new file mode 100644 index 00000000..82c07156 --- /dev/null +++ b/src/cco-iris/ont00000004.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000004 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Change"@en ; + "A Process in which some independent continuant endures and 1) one or more of the dependent entities it bears increase or decrease in intensity, 2) the entity begins to bear some dependent entity or 3) the entity ceases to bear some dependent entity."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000554 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000644 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000726 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000876 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001048 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000005.ttl b/src/cco-iris/ont00000005.ttl new file mode 100644 index 00000000..7882e9ae --- /dev/null +++ b/src/cco-iris/ont00000005.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000005 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act"@en ; + "A Process in which at least one Agent plays a causative role."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000418 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000546 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001347 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000006.ttl b/src/cco-iris/ont00000006.ttl new file mode 100644 index 00000000..1757700f --- /dev/null +++ b/src/cco-iris/ont00000006.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000006 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Upper Midrange Frequency"@en ; + "A Sonic Frequency that is between 2 and 4 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000530 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000007.ttl b/src/cco-iris/ont00000007.ttl new file mode 100644 index 00000000..4aa478f4 --- /dev/null +++ b/src/cco-iris/ont00000007.ttl @@ -0,0 +1,89 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000007 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Natural Process"@en ; + "A Process existing in or produced by nature; rather than by the intent of human beings."@en ; + "http://www.thefreedictionary.com/natural+process" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000099 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000272 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000312 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000594 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000765 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000920 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001122 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001133 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001237 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000008.ttl b/src/cco-iris/ont00000008.ttl new file mode 100644 index 00000000..0b96468e --- /dev/null +++ b/src/cco-iris/ont00000008.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000008 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sound Frequency"@en ; + "A Frequency that is the rate of Oscillations per second of a Sound Wave."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000401 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000530 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001047 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001136 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001274 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000009.ttl b/src/cco-iris/ont00000009.ttl new file mode 100644 index 00000000..bcc18a62 --- /dev/null +++ b/src/cco-iris/ont00000009.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000009 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mass Density"@en ; + "Density"@en ; + "A Quality that inheres in a bearer in virtue of that bearer's mass per unit volume."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000010.ttl b/src/cco-iris/ont00000010.ttl new file mode 100644 index 00000000..67821afa --- /dev/null +++ b/src/cco-iris/ont00000010.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000010 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Incorporated Organization"@en ; + "Corporation"@en ; + "An Organization formed by an Act of Incorporation that consists of an association of individuals, created by law or under authority of law, having a continuous existence independent of the existences of its members and owners, and having powers and liabilities distinct from those of its members and owners."@en ; + "http://www.dictionary.com/browse/corporation" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000011.ttl b/src/cco-iris/ont00000011.ttl new file mode 100644 index 00000000..abc393ca --- /dev/null +++ b/src/cco-iris/ont00000011.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000011 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nominal Stasis"@en ; + "Nominal"@en ; + "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has a level of intensity or functionality that falls within the designed, expected, or acceptable range such that the Independent Continuant is of normal value, usefulness, or functionality."@en ; + "https://en.oxforddictionaries.com/definition/nominal (Definition 6)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000135 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000012.ttl b/src/cco-iris/ont00000012.ttl new file mode 100644 index 00000000..1e18d979 --- /dev/null +++ b/src/cco-iris/ont00000012.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000012 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propulsion Control System"@en ; + "A Control System that consists of control devices, displays, indicators, or modules designed to control a Propulsion System."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000781 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000013.ttl b/src/cco-iris/ont00000013.ttl new file mode 100644 index 00000000..1601b086 --- /dev/null +++ b/src/cco-iris/ont00000013.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000101 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000031 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000013 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Generically Dependent Continuant"@en ; + "A Gain of Dependent Continuant wherein some Independent Continuant becomes the carrier of some Generically Dependent Continuant."@en ; + "A Person forms a Plan, A Person is initiated into a Religion, A photgraphic image is produced." ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000554 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000014.ttl b/src/cco-iris/ont00000014.ttl new file mode 100644 index 00000000..46aa5234 --- /dev/null +++ b/src/cco-iris/ont00000014.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000014 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Aztec Code"@en ; + "A Two-Dimensional Barcode that is used by the transportation industry to scan tickets."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000241 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000015.ttl b/src/cco-iris/ont00000015.ttl new file mode 100644 index 00000000..da1c2275 --- /dev/null +++ b/src/cco-iris/ont00000015.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000015 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shotgun"@en ; + "A Long Gun that fires packets of shot, a single slug, a sabot, or a specialty round (such as tear gas, bolo shell, or a breaching round) over shorter ranges than that of Rifles and with less accuracy."@en ; + "https://en.wikipedia.org/w/index.php?title=Shotgun&oldid=1062571691"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001104 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000016.ttl b/src/cco-iris/ont00000016.ttl new file mode 100644 index 00000000..58132a71 --- /dev/null +++ b/src/cco-iris/ont00000016.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000016 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Triangular Waveform"@en ; + "A Waveform that is characterized by a triangular shape due to the continuous linear zig-zag transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001286 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000017.ttl b/src/cco-iris/ont00000017.ttl new file mode 100644 index 00000000..0a0731f6 --- /dev/null +++ b/src/cco-iris/ont00000017.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000026 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000017 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Minor Axis"@en ; + "A One-Dimensional Spatial Region that is the longest line segment perpendicular to the Major Axis that connects two points on the edge of an Ellipse."@en ; + "https://en.wikipedia.org/w/index.php?title=Semi-major_and_semi-minor_axes&oldid=1047911304"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000018.ttl b/src/cco-iris/ont00000018.ttl new file mode 100644 index 00000000..2a640776 --- /dev/null +++ b/src/cco-iris/ont00000018.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000018 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Title Document"@en ; + "A Legal Instrument that is designed as evidence of ownership."@en ; + "https://en.wikipedia.org/wiki/Title_(property)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001346 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000019.ttl b/src/cco-iris/ont00000019.ttl new file mode 100644 index 00000000..07edcc5c --- /dev/null +++ b/src/cco-iris/ont00000019.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000019 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Inverting Artifact Function"@en ; + "A Current Conversion Artifact Function that is realized by processes in which some Artifact is used to convert direct current (DC) to alternating current (AC)."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000961 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000020.ttl b/src/cco-iris/ont00000020.ttl new file mode 100644 index 00000000..2d889cd7 --- /dev/null +++ b/src/cco-iris/ont00000020.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000020 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Container"@en ; + "A Material Artifact that is designed to contain (wholly or partially) some material entity."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000264 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000691 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000720 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000021.ttl b/src/cco-iris/ont00000021.ttl new file mode 100644 index 00000000..0b207d53 --- /dev/null +++ b/src/cco-iris/ont00000021.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000021 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sensor Platform"@en ; + "A Material Artifact that is designed to support, and in some cases transport, a Sensor during its deployment and functioning."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000022.ttl b/src/cco-iris/ont00000022.ttl new file mode 100644 index 00000000..d1bf65b6 --- /dev/null +++ b/src/cco-iris/ont00000022.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000022 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Communication Reception Artifact Function"@en ; + "A Communication Reception Artifact Function that is realized during events in which an Artifact receives information transmitted from another Artifact, where the transmission of information occurs using radio waves."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000422 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000023.ttl b/src/cco-iris/ont00000023.ttl new file mode 100644 index 00000000..b79deb08 --- /dev/null +++ b/src/cco-iris/ont00000023.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000023 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sensor Deployment Artifact Function"@en ; + "An Artifact Function that inheres in Artifacts that are designed to support or convey one or more Sensors while the Sensors are realizing their own Artifact Functions."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000024.ttl b/src/cco-iris/ont00000024.ttl new file mode 100644 index 00000000..6dd1daa2 --- /dev/null +++ b/src/cco-iris/ont00000024.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000024 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Advising"@en ; + "An Act of Directive Communication performed by providing advice or counsel to another agent."@en ; + "http://www.dictionary.com/browse/advising" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000133 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000025.ttl b/src/cco-iris/ont00000025.ttl new file mode 100644 index 00000000..221a613c --- /dev/null +++ b/src/cco-iris/ont00000025.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000025 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electronic Stock"@en ; + "Stock that consists of Bytes."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001278 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000026.ttl b/src/cco-iris/ont00000026.ttl new file mode 100644 index 00000000..f424b272 --- /dev/null +++ b/src/cco-iris/ont00000026.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000026 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hair Color"@en ; + "A Quality inhering in a portion of Hair by virtue of its color."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000027.ttl b/src/cco-iris/ont00000027.ttl new file mode 100644 index 00000000..7e1ee2c8 --- /dev/null +++ b/src/cco-iris/ont00000027.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000027 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mailing"@en ; + "Act of Mailing"@en ; + "An Act of Communication by Media in which information and tangible objects, usually written documents, are delivered to destinations around the world."@en ; + "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000028.ttl b/src/cco-iris/ont00000028.ttl new file mode 100644 index 00000000..9f295e81 --- /dev/null +++ b/src/cco-iris/ont00000028.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000028 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Dispersive Prism"@en ; + "A Prism designed to break up a beam of light entering the Prism into its constituent spectral colors by leveraging the refractive index of light based on its Frequency."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000804 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000029.ttl b/src/cco-iris/ont00000029.ttl new file mode 100644 index 00000000..645bd406 --- /dev/null +++ b/src/cco-iris/ont00000029.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000029 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Median Point Estimate Information Content Entity"@en ; + "Median"@en ; + "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to either the middle value or the average of the two values which separate the set into two equally populated upper and lower sets."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000745 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000030.ttl b/src/cco-iris/ont00000030.ttl new file mode 100644 index 00000000..8a786003 --- /dev/null +++ b/src/cco-iris/ont00000030.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000030 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Reactor"@en ; + "A Power Source that is designed to initiate and control a self-sustained nuclear chain reaction to produce power in the form of heat, which can be transferred to a working fluid for further conversion to mechanical or electrical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Nuclear_reactor&oldid=1063370273"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000288 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000031.ttl b/src/cco-iris/ont00000031.ttl new file mode 100644 index 00000000..8c83206f --- /dev/null +++ b/src/cco-iris/ont00000031.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000031 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Atmospheric Feature"@en ; + "A Geographic Feature that is part of the atmosphere (including the atmosphere itself as a non-proper part) having a relatively stable lifecycle and which has a location that can be distinguished from the surrounding portion of the atmosphere."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001081 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000032.ttl b/src/cco-iris/ont00000032.ttl new file mode 100644 index 00000000..ebe331c7 --- /dev/null +++ b/src/cco-iris/ont00000032.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000032 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Church"@en ; + "A Religious Facility that is designed for Christian worship and prayer."@en ; + "https://en.wikipedia.org/wiki/Church_(building)" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000052 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000033.ttl b/src/cco-iris/ont00000033.ttl new file mode 100644 index 00000000..ab349949 --- /dev/null +++ b/src/cco-iris/ont00000033.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000033 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Role"@en ; + "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Role that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000854 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000034.ttl b/src/cco-iris/ont00000034.ttl new file mode 100644 index 00000000..062ba3b8 --- /dev/null +++ b/src/cco-iris/ont00000034.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000034 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Conveyance Artifact Function"@en ; + "A Motion Artifact Function that is realized in a process in which the bearer of the function conveys entities from one location to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000448 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000035.ttl b/src/cco-iris/ont00000035.ttl new file mode 100644 index 00000000..cdd32608 --- /dev/null +++ b/src/cco-iris/ont00000035.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000035 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Soft X-ray Frequency"@en ; + "An X-Ray Frequency that is between 30 petahertz and 3 exahertz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000490 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000036.ttl b/src/cco-iris/ont00000036.ttl new file mode 100644 index 00000000..2aa7f963 --- /dev/null +++ b/src/cco-iris/ont00000036.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000036 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Waste Management Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of collecting transporting processing recycling or disposing and monitoring of waste materials."@en ; + "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000037.ttl b/src/cco-iris/ont00000037.ttl new file mode 100644 index 00000000..e4fc3a29 --- /dev/null +++ b/src/cco-iris/ont00000037.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000037 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Observation"@en ; + "A Planned Act of acquiring information from a source via the use of one or more senses."@en ; + "https://en.wikipedia.org/w/index.php?title=Observation&oldid=1062502087"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000889 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000038.ttl b/src/cco-iris/ont00000038.ttl new file mode 100644 index 00000000..789479f6 --- /dev/null +++ b/src/cco-iris/ont00000038.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000038 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "System Role"@en ; + "A Role that inheres in an entity in virtue of its parts or elements being arranged in such a way that they together exhibit behavior or meaning that they do not exhibit individually."@en ; + "https://www.incose.org/about-systems-engineering/system-and-se-definition/general-system-definition"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000039.ttl b/src/cco-iris/ont00000039.ttl new file mode 100644 index 00000000..640596d7 --- /dev/null +++ b/src/cco-iris/ont00000039.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000039 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Solid Fuel"@en ; + "A Portion of Fuel that is stored in a solid state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000838 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000040.ttl b/src/cco-iris/ont00000040.ttl new file mode 100644 index 00000000..49f7aa21 --- /dev/null +++ b/src/cco-iris/ont00000040.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000040 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Grocery Store"@en ; + "A Commercial Facility that is designed to sell food."@en ; + "https://en.wikipedia.org/w/index.php?title=Grocery_store&oldid=1060022873"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001102 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000041.ttl b/src/cco-iris/ont00000041.ttl new file mode 100644 index 00000000..9b862d08 --- /dev/null +++ b/src/cco-iris/ont00000041.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000041 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hostel"@en ; + "A Residential Facility that is designed to temporarily lodge guests in a sociable environment for relatively low costs."@en ; + "https://en.wikipedia.org/w/index.php?title=Hostel&oldid=1057812930"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000410 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000042.ttl b/src/cco-iris/ont00000042.ttl new file mode 100644 index 00000000..ac177eb4 --- /dev/null +++ b/src/cco-iris/ont00000042.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000042 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Semicircular"@en ; + "A Shape quality inhering in a bearer in virtue of the bearer having the shape of half a circle."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000043.ttl b/src/cco-iris/ont00000043.ttl new file mode 100644 index 00000000..a0b0b782 --- /dev/null +++ b/src/cco-iris/ont00000043.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000043 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Solid Propellant"@en ; + "A Portion of Propellant that is stored in a solid state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000593 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000044.ttl b/src/cco-iris/ont00000044.ttl new file mode 100644 index 00000000..efe682b7 --- /dev/null +++ b/src/cco-iris/ont00000044.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000044 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Eye Color"@en ; + "A Quality inhering in an Eye by virtue of the color of the Eye's Iris."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000404 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000045.ttl b/src/cco-iris/ont00000045.ttl new file mode 100644 index 00000000..092d0182 --- /dev/null +++ b/src/cco-iris/ont00000045.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000045 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Petroleum Depot"@en ; + "A Storage Facility that is designed to store petroleum, oil, or lubricants."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000046.ttl b/src/cco-iris/ont00000046.ttl new file mode 100644 index 00000000..394bfbdb --- /dev/null +++ b/src/cco-iris/ont00000046.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000046 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Province"@en ; + "A First-Order Administrative Region that is part of a Country and delimits the authority of a magistrate who holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the Province."@en ; + "https://en.wikipedia.org/w/index.php?title=Province&oldid=1062496131"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000126 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000047.ttl b/src/cco-iris/ont00000047.ttl new file mode 100644 index 00000000..d4fee40d --- /dev/null +++ b/src/cco-iris/ont00000047.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000047 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Flow Control Valves are often more complex than a simple Valve and typically include an Actuator that is capable of automatically adjusting the state of the valve in response to signals from a connected Sensor or Controller."@en ; + rdfs:label "Flow Control Valve"@en ; + "A Valve that is designed to regulate the flow or Pressure of a fluid."@en ; + "https://en.wikipedia.org/w/index.php?title=Flow_control_valve&oldid=1013438085"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000598 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000048.ttl b/src/cco-iris/ont00000048.ttl new file mode 100644 index 00000000..aea36666 --- /dev/null +++ b/src/cco-iris/ont00000048.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000048 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Random Wire Antenna"@en ; + "A Wire Antenna that consists of a long wire suspended above the ground with a length that does not bear a relation to the wavelength of the radio waves used and which is typically used as a receiving antenna on the long, medium, and short wave bands."@en ; + "https://en.wikipedia.org/w/index.php?title=Random_wire_antenna&oldid=1058546356"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000499 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000049.ttl b/src/cco-iris/ont00000049.ttl new file mode 100644 index 00000000..0a363dc7 --- /dev/null +++ b/src/cco-iris/ont00000049.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000049 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Banknote"@en ; + "A Portion of Cash that consists of a portable slips of paper or fabric designed to bear some specified Financial Value."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000475 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000050.ttl b/src/cco-iris/ont00000050.ttl new file mode 100644 index 00000000..2d5d85d5 --- /dev/null +++ b/src/cco-iris/ont00000050.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000050 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Very High Frequency Communication Instrument"@en ; + "A Radio Communication Instrument that is designed to participate in some process that has process part some Very High Frequency."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000903 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000051.ttl b/src/cco-iris/ont00000051.ttl new file mode 100644 index 00000000..f3caf206 --- /dev/null +++ b/src/cco-iris/ont00000051.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000051 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "An Act of Construction typically involves the production of only one or a limited number of goods, such as in the construction of an airport or a community of condominiums."@en ; + rdfs:label "Act of Construction"@en ; + "An Act of Artifact Processing wherein Artifacts are built on site as prescribed by some contract."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000908 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000052.ttl b/src/cco-iris/ont00000052.ttl new file mode 100644 index 00000000..2bcdd63a --- /dev/null +++ b/src/cco-iris/ont00000052.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000032 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000052 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Religious Facility"@en ; + "A Facility that is designed for worship and prayer."@en ; + "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000510 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000757 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000053.ttl b/src/cco-iris/ont00000053.ttl new file mode 100644 index 00000000..8efc4dbe --- /dev/null +++ b/src/cco-iris/ont00000053.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000053 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ground Motor Vehicle"@en ; + "A Ground Vehicle that is designed to receive its motive power from an Engine and is not designed to travel on rails."@en ; + "https://en.wikipedia.org/w/index.php?title=Motor_vehicle&oldid=1063627395"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000427 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000606 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000618 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001011 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001061 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001292 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000054.ttl b/src/cco-iris/ont00000054.ttl new file mode 100644 index 00000000..309bc478 --- /dev/null +++ b/src/cco-iris/ont00000054.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000054 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stirling Engine"@en ; + "An External Combusion Engine that is designed to compress and expand some working fluid at different temperatures, such that there is a net conversion of heat energy to mechanical work."@en ; + "https://en.wikipedia.org/w/index.php?title=Stirling_engine&oldid=1061164490"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000431 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000055.ttl b/src/cco-iris/ont00000055.ttl new file mode 100644 index 00000000..35c02b31 --- /dev/null +++ b/src/cco-iris/ont00000055.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000055 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Healthcare Facility"@en ; + "A Facility that is designed for the diagnosis, treatment, and prevention of disease."@en ; + "https://en.wikipedia.org/w/index.php?title=Medicine&oldid=1062226814"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001098 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000056.ttl b/src/cco-iris/ont00000056.ttl new file mode 100644 index 00000000..57b79d4b --- /dev/null +++ b/src/cco-iris/ont00000056.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000056 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reaction Engine"@en ; + "Reaction Motor"@en ; + "An Engine that provides propulsion by expelling Reaction Mass."@en ; + "https://en.wikipedia.org/w/index.php?title=Reaction_engine&oldid=1046981784"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000210 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000533 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001083 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000057.ttl b/src/cco-iris/ont00000057.ttl new file mode 100644 index 00000000..95e9f49e --- /dev/null +++ b/src/cco-iris/ont00000057.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000057 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mobile Telephone"@en ; + "A Telephone that is connected to a Telephone Network by radio waves."@en ; + "https://en.wikipedia.org/w/index.php?title=Mobile_phone&oldid=1061800841"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000907 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000058.ttl b/src/cco-iris/ont00000058.ttl new file mode 100644 index 00000000..275719d9 --- /dev/null +++ b/src/cco-iris/ont00000058.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000058 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Scalp Hair"@en ; + "A Bodily Component that consists of a portion of hair that grows on the scalp of a human or other animal."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000084 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000059.ttl b/src/cco-iris/ont00000059.ttl new file mode 100644 index 00000000..3bcc8bec --- /dev/null +++ b/src/cco-iris/ont00000059.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000059 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telephone Line"@en ; + "Telephone Circuit"@en ; + "A Telecommunication Network Line that consists of a physical wire or other signaling medium that is designed to be part of a Telephone Network."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000193 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000825 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000060.ttl b/src/cco-iris/ont00000060.ttl new file mode 100644 index 00000000..da79e952 --- /dev/null +++ b/src/cco-iris/ont00000060.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000060 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Open Pit Mine"@en ; + "A Mine that is designed to support the extraction of materials from the ground directly without using tunnels."@en ; + "https://en.wikipedia.org/w/index.php?title=Open-pit_mining&oldid=1059271938"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000639 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000061.ttl b/src/cco-iris/ont00000061.ttl new file mode 100644 index 00000000..3b2dc271 --- /dev/null +++ b/src/cco-iris/ont00000061.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000061 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Flow"@en ; + "A Measurement Unit that is used as a standard for measurement of the rate at which portions of a substance pass per unit of time."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000374 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001307 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000062.ttl b/src/cco-iris/ont00000062.ttl new file mode 100644 index 00000000..abe30d5f --- /dev/null +++ b/src/cco-iris/ont00000062.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000062 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Frequency Measurement Artifact Function"@en ; + "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Frequency of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001100 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000063.ttl b/src/cco-iris/ont00000063.ttl new file mode 100644 index 00000000..8d9a630d --- /dev/null +++ b/src/cco-iris/ont00000063.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000063 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Hour Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Hours and spans at least one Hour."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001058 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000064.ttl b/src/cco-iris/ont00000064.ttl new file mode 100644 index 00000000..15f1fb09 --- /dev/null +++ b/src/cco-iris/ont00000064.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000064 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Book"@en ; + "An Information Bearing Artifact that is designed to bear some specific Information Content Entity by means of ink, paper, parchment, or other materials fastened together to hinge at one side."@en ; + "https://en.wikipedia.org/w/index.php?title=Book&oldid=1063132471"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000065.ttl b/src/cco-iris/ont00000065.ttl new file mode 100644 index 00000000..bb34527e --- /dev/null +++ b/src/cco-iris/ont00000065.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000132 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001819 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000065 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Location Change"@en ; + "An Act of Motion in which the location of some Object is changed by some Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000201 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000357 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000520 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000595 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000855 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000890 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000922 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001053 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000066.ttl b/src/cco-iris/ont00000066.ttl new file mode 100644 index 00000000..0fefd9b2 --- /dev/null +++ b/src/cco-iris/ont00000066.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000066 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Artifact Function"@en ; + "A Service Artifact Function that is realized in processes related to the armed services."@en ; + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000067.ttl b/src/cco-iris/ont00000067.ttl new file mode 100644 index 00000000..84bc8105 --- /dev/null +++ b/src/cco-iris/ont00000067.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000067 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "In traditional astronomical usage, civil time is mean solar time as calculated from midnight as the beginning of the Civil Day."@en , + "Note that Civil Time Reference System is more accurately represented as a Temporal Reference System that participates in an act of usage that is sanctioned by an appropriate civil authority. As such, it should be represented as a defined class."@en ; + rdfs:label "Civil Time Reference System"@en ; + "A Temporal Reference System that is a statutory time scale as designated by civilian authorities to determine local time(s)."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001537 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000068.ttl b/src/cco-iris/ont00000068.ttl new file mode 100644 index 00000000..b7e2d94e --- /dev/null +++ b/src/cco-iris/ont00000068.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000028 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000068 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Three-Dimensional Path"@en ; + "A Three-Dimensional Spatial Region that encompasses the spatial region through which some Object travels."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001348 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000069.ttl b/src/cco-iris/ont00000069.ttl new file mode 100644 index 00000000..fba287a0 --- /dev/null +++ b/src/cco-iris/ont00000069.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000069 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transcript"@en ; + "A Document that is designed to bear some specific Information Content Entity that was originally recorded in a different medium."@en ; + "https://en.wikipedia.org/w/index.php?title=Transcript&oldid=1038510063"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001298 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000070.ttl b/src/cco-iris/ont00000070.ttl new file mode 100644 index 00000000..c8078ef1 --- /dev/null +++ b/src/cco-iris/ont00000070.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000018 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000070 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ground Track Point"@en ; + "A Zero-Dimensional Spatial Region that is an idealized point located on the surface of an Astronomical Body directly below an Object Track Point."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000071.ttl b/src/cco-iris/ont00000071.ttl new file mode 100644 index 00000000..643425f2 --- /dev/null +++ b/src/cco-iris/ont00000071.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000071 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Town"@en ; + "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a Village but smaller than that of a City; is designated as a town based on a particular administrative, legal, or historical status; and which delimits a local Government that typically exercises less power than that of a City Government."@en ; + "http://www.dictionary.com/browse/town" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000460 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000072.ttl b/src/cco-iris/ont00000072.ttl new file mode 100644 index 00000000..00134259 --- /dev/null +++ b/src/cco-iris/ont00000072.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000072 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Low Density Residential Area"@en ; + "A Populated Place where houses are on lots of more than one acre."@en ; + "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000224 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000073.ttl b/src/cco-iris/ont00000073.ttl new file mode 100644 index 00000000..f113ebe0 --- /dev/null +++ b/src/cco-iris/ont00000073.ttl @@ -0,0 +1,81 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000073 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Temporal Interval Identifier"@en ; + "One-Dimensional Temporal Region Identifier"@en ; + "A Temporal Region Identifier that designates some Temporal Interval."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000399 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000529 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000074.ttl b/src/cco-iris/ont00000074.ttl new file mode 100644 index 00000000..4f5f2b69 --- /dev/null +++ b/src/cco-iris/ont00000074.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000074 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Acceleration"@en ; + "A Measurement Unit that is used as a standard for measurement of the rate at which objects change their velocities per unit of time."@en ; + "feet per second per second, kilometers per second per second" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001538 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001647 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001680 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001697 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000075.ttl b/src/cco-iris/ont00000075.ttl new file mode 100644 index 00000000..3935ea75 --- /dev/null +++ b/src/cco-iris/ont00000075.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000075 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Microscope"@en ; + "Light Microscope"@en ; + "A Microscope that is designed to use visible light and a system of Optical Lenses to produce a significantly enlarged image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Optical_microscope&oldid=1063131242"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000304 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000076.ttl b/src/cco-iris/ont00000076.ttl new file mode 100644 index 00000000..ad649b48 --- /dev/null +++ b/src/cco-iris/ont00000076.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000076 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wired Communication Artifact Function"@en ; + "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of a (usually cylindrical) flexible strand or rod of metal."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000727 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000077.ttl b/src/cco-iris/ont00000077.ttl new file mode 100644 index 00000000..c7bc3b3f --- /dev/null +++ b/src/cco-iris/ont00000077.ttl @@ -0,0 +1,61 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000077 + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Code Identifier"@en ; + "Code ID"@en , + "ID Code"@en , + "Identifier Code"@en ; + "A Non-Name Identifier that consists of a string of characters that was created and assigned according to an encoding system such that metadata can be derived from the identifier."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000419 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000649 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000923 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001309 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000078.ttl b/src/cco-iris/ont00000078.ttl new file mode 100644 index 00000000..2269f357 --- /dev/null +++ b/src/cco-iris/ont00000078.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000078 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Although the boundary between Act of Estimation and guessing is vague, estimation can be partially distinguished from guessing in that every Act of Estimation has as input some relevant information; whereas an act of guessing can occur sans information (or at least sans pertinent information). For example, if Mr. Green were asked how many blades of grass are in his lawn, he could simply choose a number (i.e. he could guess) or he could estimate the number by counting how many baldes of grass are in 1 square foot of his lawn, measuring the square footage of his lawn, and then multiplying these values to arrive at a number. Hence, many estimates may be loosely considered to be educated guesses."@en , + "Note that, while every Act of Measuring arguably involves some degree of estimation (for example, a measuring instrument rounding to the nearest ten-thousandth or an Agent reading an analog display), it would be a mistake to classify all Acts of Measuring as Acts of Estimation. This holds even for cases (e.g. census taking) in which sofisticated estimations are often more accurate than other means of measuring (e.g. enumeration)."@en ; + rdfs:label "Act of Estimation"@en ; + "Act of Approximation"@en ; + "An Act of Measuring that involves the comparison of a measurement of a similar Entity or of a portion of the Entity being estimated to produce an approximated measurement of the target Entity."@en ; + "measuring how much time a train will add to your commute by measuring how long it takes for 10 train cars to pass a given point and then combining this information with an estimate of how many train cars are in a typical train based on your past experience" , + "measuring the amount of time required to do a task based on how long it took to do a similar task in the past" , + "measuring the height of a building by counting the number of floors and multiplying it by the height of an average floor in an average building" , + "measuring the property value of a house based on its square footage and the average cost per square foot of other houses in the area" ; + "In all cases, the Agent in an Act of Estimation either lacks complete information, lacks access to the relevant information, or chooses not to use the complete information (perhaps to save money or time) about the thing being estimated; instead, the Agent uses some or all of the relevant information that the Agent does have as a basis for arriving at the estimate."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000345 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000079.ttl b/src/cco-iris/ont00000079.ttl new file mode 100644 index 00000000..9152bf91 --- /dev/null +++ b/src/cco-iris/ont00000079.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000079 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Social Movement"@en ; + "A Social Act composed of a series of performances, displays and campaigns directed at implementing, resisting or undoing a change in society."@en ; + "https://en.wikipedia.org/w/index.php?title=Social_movement&oldid=1062720561"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001327 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000080.ttl b/src/cco-iris/ont00000080.ttl new file mode 100644 index 00000000..4ef2a772 --- /dev/null +++ b/src/cco-iris/ont00000080.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000080 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Standard Time of Day Identifier"@en ; + "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using the Hours, Minutes, and Seconds of the Day that preceded the Temporal Instant."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000827 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000081.ttl b/src/cco-iris/ont00000081.ttl new file mode 100644 index 00000000..87af3046 --- /dev/null +++ b/src/cco-iris/ont00000081.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000081 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cutting Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of separating some portion of its target into two or more portions through the application of acutely directed force."@en ; + "https://en.wikipedia.org/w/index.php?title=Cutting&oldid=1058846915"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000082.ttl b/src/cco-iris/ont00000082.ttl new file mode 100644 index 00000000..b019e544 --- /dev/null +++ b/src/cco-iris/ont00000082.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000082 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Green"@en ; + "A Color that is between Yellow and Cyan with a wavelength in the visible spectrum, typically between 520 to 560 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000083.ttl b/src/cco-iris/ont00000083.ttl new file mode 100644 index 00000000..07088a48 --- /dev/null +++ b/src/cco-iris/ont00000083.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000035 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000083 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Process Ending"@en ; + "A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the ending instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000084.ttl b/src/cco-iris/ont00000084.ttl new file mode 100644 index 00000000..4a8ea70e --- /dev/null +++ b/src/cco-iris/ont00000084.ttl @@ -0,0 +1,89 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000024 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000058 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000084 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bodily Component"@en ; + "A Fiat Object Part located within or on the surface of an Agent."@en ; + "Bodily Components include anatomical structures, body flora, pathogens, toxins, and their combinations." ; + "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3017014/" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000129 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000157 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000404 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000500 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000576 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000986 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001125 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000085.ttl b/src/cco-iris/ont00000085.ttl new file mode 100644 index 00000000..6cee40cf --- /dev/null +++ b/src/cco-iris/ont00000085.ttl @@ -0,0 +1,80 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000085 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Minute"@en ; + "A Temporal Interval that is equal to sixty consecutive Seconds."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=minute" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000992 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001058 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001166 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000086.ttl b/src/cco-iris/ont00000086.ttl new file mode 100644 index 00000000..2ba2c57f --- /dev/null +++ b/src/cco-iris/ont00000086.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000086 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Autopilot System"@en ; + "Autopilot"@en ; + "A Vehicle Control System that is designed to enable some Agent to control the trajectory of a Vehicle without constant 'hands-on' control."@en ; + "https://en.wikipedia.org/w/index.php?title=Autopilot&oldid=1063382206"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000723 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000087.ttl b/src/cco-iris/ont00000087.ttl new file mode 100644 index 00000000..b9959d21 --- /dev/null +++ b/src/cco-iris/ont00000087.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000087 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "An Ordinal Date Identifier may or may not also contain a number indicating a specific Year. If both numbers are included, the ISO 8601 ordinal date format stipulates that the two numbers be formatted as YYYY-DDD or YYYYDDD where [YYYY] indicates a year and [DDD] is the day of that year, from 001 through 365 (or 366 in leap years)."@en ; + rdfs:label "Ordinal Date Identifier"@en ; + "Ordinal Date"@en ; + "A Decimal Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since the beginning of the Year."@en ; + "https://en.wikipedia.org/w/index.php?title=Ordinal_date&oldid=1061989434"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000894 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000088.ttl b/src/cco-iris/ont00000088.ttl new file mode 100644 index 00000000..91421fc6 --- /dev/null +++ b/src/cco-iris/ont00000088.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000088 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Firearm"@en ; + "A Projectile Launcher that is designed to launch Bullets or Cartridges."@en ; + "https://en.wikipedia.org/w/index.php?title=Firearm&oldid=1061216363"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000156 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000848 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001051 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001104 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000089.ttl b/src/cco-iris/ont00000089.ttl new file mode 100644 index 00000000..3f6b964e --- /dev/null +++ b/src/cco-iris/ont00000089.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001889 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000089 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Skill"@en ; + "An Agent Capability that inheres in a Person to the extent of that Person's capacity to realize it in Intentional Acts of a certain type."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000181 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000090.ttl b/src/cco-iris/ont00000090.ttl new file mode 100644 index 00000000..c8b8ed3c --- /dev/null +++ b/src/cco-iris/ont00000090.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000090 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrared Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing infrared light to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Infrared_telescope&oldid=1062918090"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000547 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000091.ttl b/src/cco-iris/ont00000091.ttl new file mode 100644 index 00000000..dabd2844 --- /dev/null +++ b/src/cco-iris/ont00000091.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000091 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Coolant"@en ; + "A Portion of Material that is designed to be used in a thermal control system to reduce or maintain the temperature of an object to or at a specified level."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000457 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000092.ttl b/src/cco-iris/ont00000092.ttl new file mode 100644 index 00000000..3587c213 --- /dev/null +++ b/src/cco-iris/ont00000092.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000092 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bidirectional Transducer"@en ; + "A Transducer that is designed to receive a signal in the form of physical phenomena and convert it into an electrical signal, and vice versa."@en ; + "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000736 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001192 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000093.ttl b/src/cco-iris/ont00000093.ttl new file mode 100644 index 00000000..f2dd46d0 --- /dev/null +++ b/src/cco-iris/ont00000093.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000093 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Preferred Stock"@en ; + "Stock that entitles its holder to receive a certain level of dividend payments before any dividends can be issued to other holders."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001278 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000094.ttl b/src/cco-iris/ont00000094.ttl new file mode 100644 index 00000000..c58d6afd --- /dev/null +++ b/src/cco-iris/ont00000094.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000094 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Seat of National Government"@en ; + "A Government Building that is designed for the administration of a sovereign nation."@en ; + "Parliament of Canada" , + "United States Capitol" ; + "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000946 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000095.ttl b/src/cco-iris/ont00000095.ttl new file mode 100644 index 00000000..824924ec --- /dev/null +++ b/src/cco-iris/ont00000095.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000095 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Control Surface"@en ; + "A Material Artifact that is designed to deflect air, water, or another medium around its surface in order to change the Attitude of a Vehicle by rotating the Vehicle on one or more of its Axes of Rotation."@en ; + "https://en.wikipedia.org/w/index.php?title=Flight_control_surfaces&oldid=1019271264"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001027 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000096.ttl b/src/cco-iris/ont00000096.ttl new file mode 100644 index 00000000..720829c8 --- /dev/null +++ b/src/cco-iris/ont00000096.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000096 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propulsion System"@en ; + "A Material Artifact that is designed to facilitate the movement of material entities from one location to another and which consists of a source of mechanical power and a means of converting this power into propulsive force to generate the movement."@en ; + "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000097.ttl b/src/cco-iris/ont00000097.ttl new file mode 100644 index 00000000..d6fd14e6 --- /dev/null +++ b/src/cco-iris/ont00000097.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000097 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Complex Optical Lens"@en ; + "Lens System"@en ; + "An Optical Lens consisting of more than one Simple Optical Lenses."@en ; + "Hecht, Eugene (1987). Optics (2nd ed.). Addison Wesley. ISBN 978-0-201-11609-0. Chapters 5 & 6."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001207 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000098.ttl b/src/cco-iris/ont00000098.ttl new file mode 100644 index 00000000..b77cd22a --- /dev/null +++ b/src/cco-iris/ont00000098.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000098 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact is used to perform a process involving electrical power."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000407 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000678 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000795 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000961 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000994 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001092 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000099.ttl b/src/cco-iris/ont00000099.ttl new file mode 100644 index 00000000..7e8db568 --- /dev/null +++ b/src/cco-iris/ont00000099.ttl @@ -0,0 +1,108 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000062 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001857 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000007 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000099 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Wave Process"@en ; + "A Natural Process that involves Oscillation accompanied by a transfer of energy that travels through a portion of matter or spatial region."@en ; + "https://en.wikipedia.org/w/index.php?title=Wave&oldid=1062648180"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000166 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000558 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000752 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000765 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000951 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001028 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000100.ttl b/src/cco-iris/ont00000100.ttl new file mode 100644 index 00000000..57f3e420 --- /dev/null +++ b/src/cco-iris/ont00000100.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000100 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Partially Mission Capable"@en ; + "A Stasis of Mission Capability during which the participating Continuant is capable of performing some but not all of its primary functions for the specified Mission."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000286 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001132 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000101.ttl b/src/cco-iris/ont00000101.ttl new file mode 100644 index 00000000..d73edc7b --- /dev/null +++ b/src/cco-iris/ont00000101.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000101 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Oxygen"@en ; + "A Portion of Cryogenic Material that is composed (almost) entirely of liquid oxygen."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000255 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000102.ttl b/src/cco-iris/ont00000102.ttl new file mode 100644 index 00000000..dd73fa39 --- /dev/null +++ b/src/cco-iris/ont00000102.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000102 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Skin Type is classified according to a reference system such as the Fitzpatrick scale: https://en.wikipedia.org/wiki/Fitzpatrick_scale"@en ; + rdfs:label "Skin Type"@en ; + "A Quality inhering in a portion of skin by virtue of its color and natural tendency to respond to ultraviolet light."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000103.ttl b/src/cco-iris/ont00000103.ttl new file mode 100644 index 00000000..f2d0741f --- /dev/null +++ b/src/cco-iris/ont00000103.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000103 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vehicle Compartment"@en ; + "Compartment"@en ; + "A Material Artifact that is designed to partition a Vehicle into subdivisions for various purposes."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000143 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000104.ttl b/src/cco-iris/ont00000104.ttl new file mode 100644 index 00000000..faeb4c4d --- /dev/null +++ b/src/cco-iris/ont00000104.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000104 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Underwater Mine"@en ; + "A Mine that is designed to support the extraction of materials from the ocean floor."@en ; + "https://en.wikipedia.org/w/index.php?title=Naval_mine&oldid=1062538523"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000639 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000105.ttl b/src/cco-iris/ont00000105.ttl new file mode 100644 index 00000000..9843ce49 --- /dev/null +++ b/src/cco-iris/ont00000105.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000105 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Square"@en ; + "A Rectangular shape which has four equal length sides and four 90 degree angles."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001369 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000106.ttl b/src/cco-iris/ont00000106.ttl new file mode 100644 index 00000000..95ea36aa --- /dev/null +++ b/src/cco-iris/ont00000106.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000106 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "An End of Life Stasis (EoL) is distinguished from a Stasis of Partially Mission Capable or Stasis of Non-Mission Capable in that EoL is more inclusive such that the participating Artifact may be either Partially or Non-Mission Capable. Additionally, EoL applies only to Artifacts and is typically determined in relation to its original mission and designed primary functions. In contrast, an Artifact's level of Mission Capability depends on the requirements of the mission under consideration such that a given Artifact may simultaneously be Fully Mission Capable for mission1, Partially Mission Capable for mission2, and Non-Mission Capable for mission3."@en ; + rdfs:label "End of Life Stasis"@en ; + "A Stasis of Artifact Operationality that holds during a Temporal Interval when the participating Artifact is no longer capable of realizing all of its designed primary Artifact Functions."@en ; + "EOL" , + "EoL" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001213 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000107.ttl b/src/cco-iris/ont00000107.ttl new file mode 100644 index 00000000..1f49d18f --- /dev/null +++ b/src/cco-iris/ont00000107.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000107 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Generically Dependent Continuant"@en ; + "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Generically Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001048 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000108.ttl b/src/cco-iris/ont00000108.ttl new file mode 100644 index 00000000..a38a0c96 --- /dev/null +++ b/src/cco-iris/ont00000108.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000108 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rail Facility"@en ; + "A Transportation Facility that is designed for transferring people or cargo to and from Trains."@en ; + "https://en.wikipedia.org/w/index.php?title=Train_station&oldid=1063922802"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000226 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000109.ttl b/src/cco-iris/ont00000109.ttl new file mode 100644 index 00000000..31f36e86 --- /dev/null +++ b/src/cco-iris/ont00000109.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000109 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Military Force"@en ; + "A Planned Act of employing a Military Force to achieve some desired result."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000110.ttl b/src/cco-iris/ont00000110.ttl new file mode 100644 index 00000000..93aecd10 --- /dev/null +++ b/src/cco-iris/ont00000110.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000110 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mechanical Process"@en ; + "A Process that is the realization of some Disposition of an Artifact"@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001330 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000111.ttl b/src/cco-iris/ont00000111.ttl new file mode 100644 index 00000000..947822cb --- /dev/null +++ b/src/cco-iris/ont00000111.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000111 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Air Inlet"@en ; + "Air Intake"@en ; + "A Fluid Control Artifact that consists of an opening that is designed to capture and direct the flow of air into the system it is part of."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000112.ttl b/src/cco-iris/ont00000112.ttl new file mode 100644 index 00000000..45a7d6e5 --- /dev/null +++ b/src/cco-iris/ont00000112.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000112 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Translucent"@en ; + "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit some but not all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs some but not all electromagnetic radiation of that frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001384 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000113.ttl b/src/cco-iris/ont00000113.ttl new file mode 100644 index 00000000..70f8b2c4 --- /dev/null +++ b/src/cco-iris/ont00000113.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000113 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ventilation Control Artifact Function"@en ; + "An Artifact Function that is realized in processes in which some Artifact is used to control the quality of air in some space."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001129 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000114.ttl b/src/cco-iris/ont00000114.ttl new file mode 100644 index 00000000..efef59dd --- /dev/null +++ b/src/cco-iris/ont00000114.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000203 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000114 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Unix Temporal Instant"@en ; + "A Temporal Instant as specified by the number of Seconds that have elapsed since the specified Epoch Time as described by an implementation of Unix Time."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000115.ttl b/src/cco-iris/ont00000115.ttl new file mode 100644 index 00000000..5dc4c7a7 --- /dev/null +++ b/src/cco-iris/ont00000115.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000115 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Disposition"@en ; + "A Stasis of Realizable Entity in which some Independent Continuant bears some Disposition that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000246 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000116.ttl b/src/cco-iris/ont00000116.ttl new file mode 100644 index 00000000..4418a556 --- /dev/null +++ b/src/cco-iris/ont00000116.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000116 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pump"@en ; + "A Fluid Control Artifact that is designed to impart motion to a portion of fluid to transport it within a system through the use of mechanical action."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000117.ttl b/src/cco-iris/ont00000117.ttl new file mode 100644 index 00000000..e6b6f923 --- /dev/null +++ b/src/cco-iris/ont00000117.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000117 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Information Processing Artifact"@en ; + "A Material Artifact that is designed to use algorithms to transform some Information Content Entity into another Information Content Entity."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000132 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000420 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000118.ttl b/src/cco-iris/ont00000118.ttl new file mode 100644 index 00000000..9c284f83 --- /dev/null +++ b/src/cco-iris/ont00000118.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000118 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Artifact Function Specification"@en ; + "A Directive Information Content Entity that prescribes some Artifact Function and which is part of some Artifact Model."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000119.ttl b/src/cco-iris/ont00000119.ttl new file mode 100644 index 00000000..ef7b336d --- /dev/null +++ b/src/cco-iris/ont00000119.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000145 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000119 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spatial Orientation"@en ; + "Attitude"@en ; + "A Relational Quality that is the angle of Rotation of an Object relative to one or more Plane of Reference or Axis of Rotation."@en ; + "https://en.wikipedia.org/wiki/Orientation_(geometry)" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001026 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001177 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001296 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001318 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000120.ttl b/src/cco-iris/ont00000120.ttl new file mode 100644 index 00000000..5685a611 --- /dev/null +++ b/src/cco-iris/ont00000120.ttl @@ -0,0 +1,193 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001863 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001961 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000061 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000074 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit"@en ; + "A Descriptive Information Content Entity that describes a definite magnitude of a physical quantity, defined and adopted by convention and/or by law, that is used as a standard for measurement of the same physical quantity."@en ; + "https://en.wikipedia.org/w/index.php?title=Unit_of_measurement&oldid=1061038125"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000140 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000198 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000229 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000406 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000444 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000497 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000502 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000527 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000659 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000707 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000770 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000844 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000852 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000940 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000959 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000969 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001004 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001090 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001345 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001357 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000121.ttl b/src/cco-iris/ont00000121.ttl new file mode 100644 index 00000000..51979830 --- /dev/null +++ b/src/cco-iris/ont00000121.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000121 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Conducting Mass Media Interview"@en ; + "An Act of Mass Media Communication involving a conversation between a reporter and a person of public interest, used as a basis of a broadcast or publication."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000588 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000122.ttl b/src/cco-iris/ont00000122.ttl new file mode 100644 index 00000000..4222f00f --- /dev/null +++ b/src/cco-iris/ont00000122.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001944 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000122 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Vehicle Track Point"@en ; + "An Object Track Point that is where a Vehicle is or was located during some motion."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000170 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000904 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000123.ttl b/src/cco-iris/ont00000123.ttl new file mode 100644 index 00000000..0debb9a5 --- /dev/null +++ b/src/cco-iris/ont00000123.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000123 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Examples: apologizing, condoling, congratulating, greeting, thanking, accepting (acknowledging an acknowledgment)"@en ; + rdfs:label "Act of Expressive Communication"@en ; + "An Act of Communication in which an Agent expresses their attitudes or emotions towards some entity."@en ; + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000182 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000208 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000370 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000926 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000124.ttl b/src/cco-iris/ont00000124.ttl new file mode 100644 index 00000000..63012d27 --- /dev/null +++ b/src/cco-iris/ont00000124.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000124 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Solar Time Reference System"@en ; + "A Temporal Reference System that is based on the position of the Sun in the sky."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000630 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000125.ttl b/src/cco-iris/ont00000125.ttl new file mode 100644 index 00000000..293bba78 --- /dev/null +++ b/src/cco-iris/ont00000125.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000125 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Bounding Box Point"@en ; + "A Geospatial Position that is a proper part of some Geospatial Region Bounding Box."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000358 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000373 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000126.ttl b/src/cco-iris/ont00000126.ttl new file mode 100644 index 00000000..f3fdde60 --- /dev/null +++ b/src/cco-iris/ont00000126.ttl @@ -0,0 +1,83 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000046 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000126 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "First-Order Administrative Region"@en ; + "A Government Domain that is a primary administrative division of a Country."@en ; + "a state in the United States" ; + "http://www.geonames.org/export/codes.html" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000139 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000405 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000934 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000127.ttl b/src/cco-iris/ont00000127.ttl new file mode 100644 index 00000000..f1dce992 --- /dev/null +++ b/src/cco-iris/ont00000127.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001980 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000127 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Performance Specification"@en ; + "A Directive Information Content Entity that prescribes some aspect of the behavior of a participant in a Process given one or more operating conditions."@en ; + "Maximum Speed at high altitude; Rate of Ascent at 10 degrees celsius with nominal payload." ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000128.ttl b/src/cco-iris/ont00000128.ttl new file mode 100644 index 00000000..e5a46f4d --- /dev/null +++ b/src/cco-iris/ont00000128.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000128 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Hydrogen"@en ; + "A Portion of Cryogenic Material that is composed (almost) entirely of liquid hydrogen."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000255 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000129.ttl b/src/cco-iris/ont00000129.ttl new file mode 100644 index 00000000..81124ca9 --- /dev/null +++ b/src/cco-iris/ont00000129.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000084 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000129 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Tattoo"@en ; + "A Bodily Component that consists of a typically permanent mark or design on a portion of skin that is created by a process of pricking and ingraining an indelible pigment or by raising scars."@en ; + "http://www.thefreedictionary.com/tattoo" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000130.ttl b/src/cco-iris/ont00000130.ttl new file mode 100644 index 00000000..3a797a30 --- /dev/null +++ b/src/cco-iris/ont00000130.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000130 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Transformer"@en ; + "A Material Artifact that is designed to transfer electrical energy between two or more circuits through electromagnetic induction."@en ; + "https://en.wikipedia.org/w/index.php?title=Transformer&oldid=1062163369"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000131.ttl b/src/cco-iris/ont00000131.ttl new file mode 100644 index 00000000..65f1f3c5 --- /dev/null +++ b/src/cco-iris/ont00000131.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000131 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Quality"@en ; + "An Increase of Specifically Dependent Continuant in which some Indpendent Continuant has an increase of some Quality that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001214 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000132.ttl b/src/cco-iris/ont00000132.ttl new file mode 100644 index 00000000..bc84767f --- /dev/null +++ b/src/cco-iris/ont00000132.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000117 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000132 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Recording Device"@en ; + "An Information Processing Artifact that is designed to capture some information and store it in some recording format on some storage medium."@en ; + "https://en.wikipedia.org/w/index.php?title=Record&oldid=1062776450"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000133.ttl b/src/cco-iris/ont00000133.ttl new file mode 100644 index 00000000..853e5f3b --- /dev/null +++ b/src/cco-iris/ont00000133.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000024 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000133 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Examples: advising, admonishing, asking, begging, dismissing, excusing, forbidding, instructing, ordering, permitting, requesting, requiring, suggesting, urging, warning"@en ; + rdfs:label "Act of Directive Communication"@en ; + "An Act of Communication that is intended to cause the hearer to take a particular action."@en ; + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000351 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000769 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001269 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000134.ttl b/src/cco-iris/ont00000134.ttl new file mode 100644 index 00000000..ffe3e45d --- /dev/null +++ b/src/cco-iris/ont00000134.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000134 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Third-Order Administrative Region"@en ; + "A Government Domain that is a subdivision of a Second-Order Administrative Region."@en ; + "http://www.geonames.org/export/codes.html" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000405 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000473 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000135.ttl b/src/cco-iris/ont00000135.ttl new file mode 100644 index 00000000..3524c295 --- /dev/null +++ b/src/cco-iris/ont00000135.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000011 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000135 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Specifically Dependent Continuant"@en ; + "A Stasis in which some Independent Continuant bears some Specifically Dependent Continuant that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000246 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000555 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000819 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000850 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001289 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000136.ttl b/src/cco-iris/ont00000136.ttl new file mode 100644 index 00000000..9a981090 --- /dev/null +++ b/src/cco-iris/ont00000136.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000136 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Optical Instruments are typically constructed for the purpose of being used to aid in vision or the analysis of light."@en ; + rdfs:label "Optical Instrument"@en ; + "A Material Artifact that is designed to process light waves."@en ; + "Light waves can be processed in a variety of ways including via reflection, refraction, diffraction, deflection, focusing, collimation, dispersion, and interference."@en ; + "https://en.wikipedia.org/w/index.php?title=Optical_instrument&oldid=1061981216"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000230 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000682 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000804 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001207 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001216 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000137.ttl b/src/cco-iris/ont00000137.ttl new file mode 100644 index 00000000..c1d80cf8 --- /dev/null +++ b/src/cco-iris/ont00000137.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000137 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Financial Deposit"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Depositor) to another Agent to create a liability to be repaid to the Depositor through an Act of Financial Withdrawal."@en ; + "http://en.wikipedia.org/wiki/Deposit_(bank)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000836 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000138.ttl b/src/cco-iris/ont00000138.ttl new file mode 100644 index 00000000..0122a136 --- /dev/null +++ b/src/cco-iris/ont00000138.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000138 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Maximum Power"@en ; + "A Power that is characterized by the maximum rate of Work, or Energy consumed, done in a given time period."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000503 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000139.ttl b/src/cco-iris/ont00000139.ttl new file mode 100644 index 00000000..7b9a7158 --- /dev/null +++ b/src/cco-iris/ont00000139.ttl @@ -0,0 +1,120 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000171 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001859 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000126 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000139 + rdf:type owl:Class ; + rdfs:subClassOf ; + "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Domain of a Country"@en ; + "A Government Domain that is associated with certain distinct political, ethnic, or cultural characteristics, and which delimits a Government that has legitimate authority over a Populace."@en ; + "'Country' is an unclear term. Does it refer to the people, the government, the site, or the material in the site? Furthermore, what is properly referred to as a 'Country' is highly dependent on the classification practices of the international community. For example: The United Kingdom is a sovereign country that has Wales, a non-sovereign Country, as a member. Vatican City is a sovereign country that is landlocked by a city: Rome, Italy. Puerto Rico is not a country (it's a territory) but has a government, a distinct culture, and so on. Thus, here we do not define 'Country' but instead define 'Domain of a Country'."@en ; + "Domain of a Country"@en ; + "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000532 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000631 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000662 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001335 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000140.ttl b/src/cco-iris/ont00000140.ttl new file mode 100644 index 00000000..ae043131 --- /dev/null +++ b/src/cco-iris/ont00000140.ttl @@ -0,0 +1,80 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000140 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The type of particle quantified is typically either atoms or molecules, but may also be protons, neutrons, electrons, quarks, or other particles. The type of particle being measured should always be specified along with the measurement and its unit."@en ; + rdfs:label "Measurement Unit of Amount of Substance"@en ; + "Measurement Unit of Chemical Amount"@en , + "Measurement Unit of Enplethy"@en ; + "A Measurement Unit that is used as a standard for measurement of the number of a specified type of particle in a portion of matter."@en ; + "mole, pound-mole" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology" . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001418 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001429 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001463 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001483 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001608 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000141.ttl b/src/cco-iris/ont00000141.ttl new file mode 100644 index 00000000..ad5203af --- /dev/null +++ b/src/cco-iris/ont00000141.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000141 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Populace"@en ; + "A Group of Persons forming the total population of some Government Domain."@en ; + "https://en.wikipedia.org/w/index.php?title=Population&oldid=1059148871"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000914 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000142.ttl b/src/cco-iris/ont00000142.ttl new file mode 100644 index 00000000..79b2b729 --- /dev/null +++ b/src/cco-iris/ont00000142.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000142 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Government"@en ; + "A Planned Act that is initiated or supported by some Geopolitical Entity and enforced by some Government Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000143.ttl b/src/cco-iris/ont00000143.ttl new file mode 100644 index 00000000..51ad51f1 --- /dev/null +++ b/src/cco-iris/ont00000143.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000103 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000143 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cargo Cabin"@en ; + "A Vehicle Compartment that is used to store goods or materials during transportation."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000144.ttl b/src/cco-iris/ont00000144.ttl new file mode 100644 index 00000000..e002ca37 --- /dev/null +++ b/src/cco-iris/ont00000144.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000144 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Meeting"@en ; + "An Act of Association wherein two or more Persons assemble for some common purpose."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=meet (Sense Key: meet%2:41:00, get together%2:41:00)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000433 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000145.ttl b/src/cco-iris/ont00000145.ttl new file mode 100644 index 00000000..d5313019 --- /dev/null +++ b/src/cco-iris/ont00000145.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000145 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Incendiary Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of starting a fire."@en ; + "https://en.wikipedia.org/w/index.php?title=Incendiary_device&oldid=1055642422"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000146.ttl b/src/cco-iris/ont00000146.ttl new file mode 100644 index 00000000..66002a25 --- /dev/null +++ b/src/cco-iris/ont00000146.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000146 + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Artificial Language"@en ; + "A Language that is developed through conscious planning and premeditation, rather than one that was developed through use and repetition."@en ; + "Esperanto" , + "Python Programming Language" ; + "https://en.wikipedia.org/w/index.php?title=Constructed_language&oldid=1062733589"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000496 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001175 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000147.ttl b/src/cco-iris/ont00000147.ttl new file mode 100644 index 00000000..65dcb8c9 --- /dev/null +++ b/src/cco-iris/ont00000147.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000147 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Flight Transponder"@en ; + "A Radio Transponder that is designed to produce a specified response (typically for identification, location, or status update purposes) when it receives a radio-frequency interrogation."@en ; + "https://en.wikipedia.org/w/index.php?title=Transponder_(aeronautics)&oldid=1052688836"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000325 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000148.ttl b/src/cco-iris/ont00000148.ttl new file mode 100644 index 00000000..f7546cd1 --- /dev/null +++ b/src/cco-iris/ont00000148.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000148 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Clockwise Rotational Motion"@en ; + "CW Rotational Motion"@en , + "Clockwise Rotation"@en ; + "A Rotational Motion in which the direction of rotation is toward the right as seen relative to the designated side of the plane of rotation."@en ; + "the axial rotation of the Earth as seen from above the South Pole" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000368 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000149.ttl b/src/cco-iris/ont00000149.ttl new file mode 100644 index 00000000..79b9b2dd --- /dev/null +++ b/src/cco-iris/ont00000149.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000149 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Instant Messaging"@en ; + "Act of IMing"@en , + "Act of Instant Messaging"@en ; + "An Act of Communication by Media in which real-time direct text-based communication occurs between two or more people using personal computers or other devices, along with shared Instant Messaging Client Software conveyed over a network, such as the Internet."@en ; + "https://en.wikipedia.org/w/index.php?title=Instant_messaging&oldid=1062873579"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000150.ttl b/src/cco-iris/ont00000150.ttl new file mode 100644 index 00000000..9e8f73be --- /dev/null +++ b/src/cco-iris/ont00000150.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 3 kHz and 300 GHz."@en ; + "RF" ; + "https://en.wikipedia.org/w/index.php?title=Radio_wave&oldid=1062110903"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000169 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000396 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000643 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000672 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000732 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000753 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000754 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000822 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000964 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001208 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000151.ttl b/src/cco-iris/ont00000151.ttl new file mode 100644 index 00000000..ff3bc718 --- /dev/null +++ b/src/cco-iris/ont00000151.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000151 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Reporting"@en ; + "An Act of Representative Communication performed by giving a detailed account or statement."@en ; + "http://www.merriam-webster.com/dictionary/report" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000152.ttl b/src/cco-iris/ont00000152.ttl new file mode 100644 index 00000000..4fdc97f3 --- /dev/null +++ b/src/cco-iris/ont00000152.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000152 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telephone Network"@en ; + "A Telecommunication Network that is designed to allow telephone calls to be made between two or more parties connected to the network."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000998 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000153.ttl b/src/cco-iris/ont00000153.ttl new file mode 100644 index 00000000..b294894d --- /dev/null +++ b/src/cco-iris/ont00000153.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000153 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Generator Control Unit"@en ; + "A Control System that is designed to regulate the voltage of some Electrical Power Source."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000781 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000154.ttl b/src/cco-iris/ont00000154.ttl new file mode 100644 index 00000000..c188577d --- /dev/null +++ b/src/cco-iris/ont00000154.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000154 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "While there is always at least one Mode for every set of data, it is possible for any given set of data to have multiple Modes. The Mode is typically most useful when the members of the set are all Nominal Measurement Information Content Entities."@en ; + rdfs:label "Mode Point Estimate Information Content Entity"@en ; + "Mode"@en , + "Statistical Mode"@en ; + "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the value or values that occur most often in the set."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000745 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000155.ttl b/src/cco-iris/ont00000155.ttl new file mode 100644 index 00000000..70573886 --- /dev/null +++ b/src/cco-iris/ont00000155.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000155 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Near Infrared Light Frequency"@en ; + "An Infrared Light Frequency that is between 214 and 400 terahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001337 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000156.ttl b/src/cco-iris/ont00000156.ttl new file mode 100644 index 00000000..919a6d72 --- /dev/null +++ b/src/cco-iris/ont00000156.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000088 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000156 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hand Gun"@en ; + "A Firearm that is designed to have a relatively short barrel and to be held in one or two hands and to be fired without being braced against the shoulder."@en ; + "https://en.wikipedia.org/w/index.php?title=Handgun&oldid=1060570395"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000711 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001254 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000157.ttl b/src/cco-iris/ont00000157.ttl new file mode 100644 index 00000000..53102c56 --- /dev/null +++ b/src/cco-iris/ont00000157.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000084 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000157 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Facial Hair"@en ; + "A Bodily Component that consists of a portion of hair that grows on the face of a human (typically male) or other animal."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000158.ttl b/src/cco-iris/ont00000158.ttl new file mode 100644 index 00000000..d32da032 --- /dev/null +++ b/src/cco-iris/ont00000158.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000158 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lithium-ion Electric Battery"@en ; + "A Secondary Cell Electric Battery that produces electricity when lithium ions move from anode to cathode."@en ; + "https://en.wikipedia.org/w/index.php?title=Lithium-ion_battery&oldid=1064099588"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001105 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000159.ttl b/src/cco-iris/ont00000159.ttl new file mode 100644 index 00000000..64e3435b --- /dev/null +++ b/src/cco-iris/ont00000159.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000159 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Timekeeping Instrument"@en ; + "An Information Bearing Artifact that is designed to bear some specific Information Content Entity that is about some temporal region."@en ; + "https://en.wikipedia.org/w/index.php?title=Timekeeper&oldid=1061681902"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000703 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000160.ttl b/src/cco-iris/ont00000160.ttl new file mode 100644 index 00000000..d718299b --- /dev/null +++ b/src/cco-iris/ont00000160.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000160 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Manual Tool"@en ; + "Hand Tool"@en ; + "A Tool that is designed to be powered by manual labor rather than by an engine."@en ; + "https://en.wikipedia.org/w/index.php?title=Hand_tool&oldid=1060741381"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000581 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000161.ttl b/src/cco-iris/ont00000161.ttl new file mode 100644 index 00000000..f636368b --- /dev/null +++ b/src/cco-iris/ont00000161.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000026 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000161 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Coordinate System Axis"@en ; + "A One-Dimensional Spatial Region defined by a Coordinate System for the purpose of identifying the position of entities along one dimension of the Coordinate System's spatial framework."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000163 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000365 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000801 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000162.ttl b/src/cco-iris/ont00000162.ttl new file mode 100644 index 00000000..8337024c --- /dev/null +++ b/src/cco-iris/ont00000162.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000162 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Connector Artifact Function"@en ; + "An Electrical Conduction Artifact Function that is realized by processes in which some Artifact is used to join electrical terminations to create an electrical circuit."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000795 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000163.ttl b/src/cco-iris/ont00000163.ttl new file mode 100644 index 00000000..4456792a --- /dev/null +++ b/src/cco-iris/ont00000163.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000161 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000163 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "z-Axis"@en ; + "A Coordinate System Axis designated by the variable 'z'."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000164.ttl b/src/cco-iris/ont00000164.ttl new file mode 100644 index 00000000..dc678bcc --- /dev/null +++ b/src/cco-iris/ont00000164.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000164 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Minimum Ordinal Measurement Information Content Entity"@en ; + "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the smallest or having the least amount relative to a nominally described set of like entities."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000165.ttl b/src/cco-iris/ont00000165.ttl new file mode 100644 index 00000000..ef06e095 --- /dev/null +++ b/src/cco-iris/ont00000165.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000165 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Criminal Act"@en ; + "A Planned Act committed in violation of rules or laws for which some governing authority (via mechanisms such as legal systems) can prescribe a conviction."@en ; + "https://en.wikipedia.org/w/index.php?title=Crime&oldid=1062237249"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000166.ttl b/src/cco-iris/ont00000166.ttl new file mode 100644 index 00000000..b2af0557 --- /dev/null +++ b/src/cco-iris/ont00000166.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000099 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000166 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wave Cycle"@en ; + "A Wave Process that consists of a portion of a Wave Process that begins at an arbitrary point of the Wave Process and ends at the next point when the pattern of the Wave Process begins to repeat."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000167.ttl b/src/cco-iris/ont00000167.ttl new file mode 100644 index 00000000..e2a09186 --- /dev/null +++ b/src/cco-iris/ont00000167.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000167 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Large-Scale Rocket Launcher"@en ; + "A Rocket Launcher that is designed to contain multiple Rocket Launchers."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001173 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000168.ttl b/src/cco-iris/ont00000168.ttl new file mode 100644 index 00000000..f09d2193 --- /dev/null +++ b/src/cco-iris/ont00000168.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000168 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Interpersonal Relationship"@en ; + "An Act of Association between two or more Persons that may range from fleeting to enduring."@en ; + "https://en.wikipedia.org/w/index.php?title=Interpersonal_relationship&oldid=1060991304"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000433 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000169.ttl b/src/cco-iris/ont00000169.ttl new file mode 100644 index 00000000..2ec57364 --- /dev/null +++ b/src/cco-iris/ont00000169.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000169 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 10–1 m"@en ; + rdfs:label "Very High Frequency"@en ; + "ITU Band Number 8"@en ; + "A Radio Frequency that is between 30 and 300 MHz."@en ; + "VHF" ; + "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001072 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000170.ttl b/src/cco-iris/ont00000170.ttl new file mode 100644 index 00000000..ca698952 --- /dev/null +++ b/src/cco-iris/ont00000170.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001944 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000018 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000122 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000170 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Object Track Point"@en ; + "A Zero-Dimensional Spatial Region that is an idealized point where an Object is or was located during some motion."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000205 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000171.ttl b/src/cco-iris/ont00000171.ttl new file mode 100644 index 00000000..d5a7153d --- /dev/null +++ b/src/cco-iris/ont00000171.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000171 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Detergent Artifact Function"@en ; + "A Surfactant Artifact Function that is realized in a process that cleans substances in dilute solutions."@en ; + "https://en.wikipedia.org/w/index.php?title=Detergent&oldid=1064079329"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000344 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000172.ttl b/src/cco-iris/ont00000172.ttl new file mode 100644 index 00000000..4844ad3e --- /dev/null +++ b/src/cco-iris/ont00000172.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000172 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Base of Operations"@en ; + "Main Operating Base"@en ; + "A Military Base with permanently stationed operating forces, robust Infrastructure, and strengthened force protection measures such that it is designed to launch and support large-scale operations, support smaller or less-permanent bases, and organize supply facilities."@en ; + "MOB" ; + "http://www.jcs.mil/Portals/36/Documents/Doctrine/pubs/dictionary.pdf?ver=2018-08-27-122235-653" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000483 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000173.ttl b/src/cco-iris/ont00000173.ttl new file mode 100644 index 00000000..ab8916b6 --- /dev/null +++ b/src/cco-iris/ont00000173.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000173 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Civilian Role"@en ; + "A Role that inheres in an Agent or Group of Agents by virtue of that Agent or Group of Agents not being part of either an Armed Force or police force."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001302 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000174.ttl b/src/cco-iris/ont00000174.ttl new file mode 100644 index 00000000..4ef58792 --- /dev/null +++ b/src/cco-iris/ont00000174.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000174 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ultraviolet Telescope"@en ; + "UV Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing ultraviolet light to form an enhanced image of the Object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000547 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000175.ttl b/src/cco-iris/ont00000175.ttl new file mode 100644 index 00000000..008aeb7a --- /dev/null +++ b/src/cco-iris/ont00000175.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000175 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Organization Member Role"@en ; + "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill as a member of some Organization."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000647 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000176.ttl b/src/cco-iris/ont00000176.ttl new file mode 100644 index 00000000..891d3774 --- /dev/null +++ b/src/cco-iris/ont00000176.ttl @@ -0,0 +1,86 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000176 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "Lee, David S., and Brad Glosserman. “How Companies Can Navigate Today’s Geopolitical Risks.” Harvard Business Review, 28 Nov. 2022. hbr.org, https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks." , + "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Geopolitical Organization"@en ; + "An Organization that bears a Geopolitical Power Role."@en ; + "Geopolitical Organization"@en ; + "https://chass.usu.edu/international-studies/aggies-go/power" , + "https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000898 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000177.ttl b/src/cco-iris/ont00000177.ttl new file mode 100644 index 00000000..5f86174b --- /dev/null +++ b/src/cco-iris/ont00000177.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000177 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Affordance"@en ; + "A Realizable Entity of an Independent Continuant that creates an opportunity for an Agent to realize some Agent Capability or Disposition in some Act."@en ; + "J. J. Gibson, \"The Theory of Affordances,\" in The Ecological Approach to Visual Perception (NY: Taylor & Francis Group, 1986): 127-143. Available at: https://archive.org/details/pdfy-u5hmFOvOM2Civ4Gz/page/n70/mode/1up."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000178.ttl b/src/cco-iris/ont00000178.ttl new file mode 100644 index 00000000..f67fb11f --- /dev/null +++ b/src/cco-iris/ont00000178.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000178 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Arrow"@en ; + "A Portion of Ammunition that is designed to be fired from a Bow and consists of a long straight stiff shaft with stabilizers (fletchings) and a slot (the nock) on one end and a weighted tip (the arrowhead) on the other end."@en ; + "https://en.wikipedia.org/w/index.php?title=Arrow&oldid=1058445874"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001150 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000179.ttl b/src/cco-iris/ont00000179.ttl new file mode 100644 index 00000000..6bfe7d70 --- /dev/null +++ b/src/cco-iris/ont00000179.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000179 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "More generally, Thrust is the propulsive Force of a Rocket."@en ; + rdfs:label "Thrust"@en ; + "A Force that is equal in magnitude to but in the opposite direction of an exerted Force and which is used to describe the forward Force of a Jet or Rocket Engine in reaction to the Acceleration of its Reaction Mass in the opposite direction."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000570 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000180.ttl b/src/cco-iris/ont00000180.ttl new file mode 100644 index 00000000..05900855 --- /dev/null +++ b/src/cco-iris/ont00000180.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000180 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hotel"@en ; + "A Residential Facility that is designed to provide lodging that is paid for on a short-term basis."@en ; + "https://en.wikipedia.org/w/index.php?title=Hotel&oldid=1063583593"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000410 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000583 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000181.ttl b/src/cco-iris/ont00000181.ttl new file mode 100644 index 00000000..76a3a630 --- /dev/null +++ b/src/cco-iris/ont00000181.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000089 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000181 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Language Skill"@en ; + "A Skill that is realized by an Act which is prescribed by a Language."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000182.ttl b/src/cco-iris/ont00000182.ttl new file mode 100644 index 00000000..70fbeb9c --- /dev/null +++ b/src/cco-iris/ont00000182.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000123 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000182 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Thanking"@en ; + "An Act of Expressive Communication performed by expressing gratitude."@en ; + " http://www.merriam-webster.com/dictionary/thanks" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000183.ttl b/src/cco-iris/ont00000183.ttl new file mode 100644 index 00000000..a792ac10 --- /dev/null +++ b/src/cco-iris/ont00000183.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000183 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fragrance Artifact Function"@en ; + "An Artifact Function that is realized in processes of perceiving a pleasant or sweet odor."@en ; + "https://en.wikipedia.org/w/index.php?title=Perfume&oldid=1062785740"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000184.ttl b/src/cco-iris/ont00000184.ttl new file mode 100644 index 00000000..0430130b --- /dev/null +++ b/src/cco-iris/ont00000184.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000184 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Axial Rotation Period"@en ; + "A Temporal Interval that is equal to the length of time required for a spinning Object to complete one rotation around its Axis of Rotation."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000185.ttl b/src/cco-iris/ont00000185.ttl new file mode 100644 index 00000000..2ab6e0bb --- /dev/null +++ b/src/cco-iris/ont00000185.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000185 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Blunt"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer not having a sharp edge or point."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000186.ttl b/src/cco-iris/ont00000186.ttl new file mode 100644 index 00000000..193a41a4 --- /dev/null +++ b/src/cco-iris/ont00000186.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000186 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Artifact Version Ordinality"@en ; + "An Ordinal Measurement Information Content Entity that is about the form of an Artifact which differs in some respects from previous or future forms of that Artifact."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000187.ttl b/src/cco-iris/ont00000187.ttl new file mode 100644 index 00000000..801e4df7 --- /dev/null +++ b/src/cco-iris/ont00000187.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000187 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Authority Role"@en ; + "A Role that is realized by Processes which create, modify, transfer, or eliminate Process Regulations or other Authority Roles, and inheres in an Agent in virtue of collective acceptance of that Agent's ability to issue binding directives."@en ; + "Authority Roles are externally grounded in a social group's collective acceptance of the binding force of the agent's directives. This acceptance can be direct or indirect (e.g., by accepting a procedure for deputizing authority). Such collective acceptance need not be explicit or cognized; rather, collective acceptance can be expressed in the dispositions and attitudes of people toward that agent's directives. In many cases, the directives issued by Authority Roles are backed by threats of punishment or sanction for failure to comply, but the issuing of a directive plus a threat is not sufficient for authority. Rather, an agent's authority must be accepted either directly or indirectly through the acceptance of a procedure for bestowing authority (e.g., elections)."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000188.ttl b/src/cco-iris/ont00000188.ttl new file mode 100644 index 00000000..5064629b --- /dev/null +++ b/src/cco-iris/ont00000188.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000026 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000188 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ground Track"@en ; + "Ground Trace"@en ; + "A One-Dimensional Spatial Region defined by the line formed on the surface of an Astronomical Body by projecting an imaginary line from the center of the tracked Object to the center of the Astronomical Body as the Object travels above the surface."@en ; + "The Ground Track is the line on the surface of the Earth or other Astronomical Body that is located directly below the Object Track."@en ; + "https://en.wikipedia.org/w/index.php?title=Ground_track&oldid=1058025510"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000189.ttl b/src/cco-iris/ont00000189.ttl new file mode 100644 index 00000000..7a04c3ba --- /dev/null +++ b/src/cco-iris/ont00000189.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000189 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Certificate"@en ; + "An Information Bearing Artifact that bears an Information Content Entity which attests to certain demonstrated characteristics of an Object, Person, or Organization."@en ; + "http://www.dictionary.com/browse/degree" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000470 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000190.ttl b/src/cco-iris/ont00000190.ttl new file mode 100644 index 00000000..9ecae187 --- /dev/null +++ b/src/cco-iris/ont00000190.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000190 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Minimum Speed Artifact Function"@en ; + "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains the lowest speed at which that Artifact is designed to operate."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001353 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000191.ttl b/src/cco-iris/ont00000191.ttl new file mode 100644 index 00000000..b1fb3659 --- /dev/null +++ b/src/cco-iris/ont00000191.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001803 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000191 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Act of Homicide"@en ; + "An Act of Violence which causes the unlawful killing of another person."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000920 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001147 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001272 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000192.ttl b/src/cco-iris/ont00000192.ttl new file mode 100644 index 00000000..7df17c99 --- /dev/null +++ b/src/cco-iris/ont00000192.ttl @@ -0,0 +1,175 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000171 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000052 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000055 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Facility"@en ; + "A Material Artifact that is designed as a building or campus dedicated to some specific purpose."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000226 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000270 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000332 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000339 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000410 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000479 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000531 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000639 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000641 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000655 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000677 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000782 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000814 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000946 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001052 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001076 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001102 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001287 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001295 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001315 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001341 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001375 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000193.ttl b/src/cco-iris/ont00000193.ttl new file mode 100644 index 00000000..55c10944 --- /dev/null +++ b/src/cco-iris/ont00000193.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000059 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000193 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telephone Subscriber Line"@en ; + "A Telephone Line that connects a Communication Endpoint to another node in a Telecommunication Network to enable service to a user's Telephone."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000194.ttl b/src/cco-iris/ont00000194.ttl new file mode 100644 index 00000000..c6d2965d --- /dev/null +++ b/src/cco-iris/ont00000194.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000194 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Contact Artifact Function"@en ; + "An Electrical Conduction Artifact Function that is realized by processes in which some Artifact is used as an endpoint of an electrical circuit from which an electrical current is passed via physical contact with the endpoint."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000795 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000195.ttl b/src/cco-iris/ont00000195.ttl new file mode 100644 index 00000000..c39d5af4 --- /dev/null +++ b/src/cco-iris/ont00000195.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000195 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heliport"@en ; + "An Airport that is designed for launching, receiving, and housing Rotorcraft."@en ; + "https://en.wikipedia.org/w/index.php?title=Heliport&oldid=1049937701"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001078 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000196.ttl b/src/cco-iris/ont00000196.ttl new file mode 100644 index 00000000..577adf21 --- /dev/null +++ b/src/cco-iris/ont00000196.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000196 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Purple"@en ; + "A Color that is aproximately midway between Red and Blue."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000197.ttl b/src/cco-iris/ont00000197.ttl new file mode 100644 index 00000000..6db415a5 --- /dev/null +++ b/src/cco-iris/ont00000197.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000035 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000197 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Process Beginning"@en ; + "A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the starting instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000198.ttl b/src/cco-iris/ont00000198.ttl new file mode 100644 index 00000000..f3d62b43 --- /dev/null +++ b/src/cco-iris/ont00000198.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000198 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Sound Level"@en ; + "A Measurement Unit that is used as a standard for measurement of the level (the loudness) of sounds."@en ; + "decibels, sones" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001495 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001636 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001664 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000199.ttl b/src/cco-iris/ont00000199.ttl new file mode 100644 index 00000000..7e03d45b --- /dev/null +++ b/src/cco-iris/ont00000199.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000199 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Camera"@en ; + "An Imaging Instrument that is designed to form and digitally or physically record an image of an entity."@en ; + "http://www.dictionary.com/browse/camera" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000617 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000771 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000774 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000869 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000200.ttl b/src/cco-iris/ont00000200.ttl new file mode 100644 index 00000000..7fe20ca2 --- /dev/null +++ b/src/cco-iris/ont00000200.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000200 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Pilgrimage"@en ; + "An Act of Travel to a location of importance to a person's beliefs and faith."@en ; + "https://en.wikipedia.org/w/index.php?title=Pilgrimage&oldid=1056524204"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000890 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000201.ttl b/src/cco-iris/ont00000201.ttl new file mode 100644 index 00000000..6021a6a1 --- /dev/null +++ b/src/cco-iris/ont00000201.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000065 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000201 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Change of Residence"@en ; + "An Act of Location Change involving one or more Persons moving from one place of residence to another."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000202.ttl b/src/cco-iris/ont00000202.ttl new file mode 100644 index 00000000..e33d1f92 --- /dev/null +++ b/src/cco-iris/ont00000202.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000202 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Terrorist Training Instruction"@en ; + "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Terrorist Organization by imparting knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature to an Agent either directly or indirectly through some communication medium."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001075 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000203.ttl b/src/cco-iris/ont00000203.ttl new file mode 100644 index 00000000..1a53936c --- /dev/null +++ b/src/cco-iris/ont00000203.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000203 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Event Status Nominal Information Content Entity"@en ; + "A Nominal Measurement Information Content Entity that is a measurement of the current state of a process."@en ; + "proposed, approved, planned, in progress, completed, failed, or successful" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000293 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000204.ttl b/src/cco-iris/ont00000204.ttl new file mode 100644 index 00000000..727f0b79 --- /dev/null +++ b/src/cco-iris/ont00000204.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000204 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rifle"@en ; + "A Long Gun that is designed to have a rifled barrel and to fire single Bullets over long ranges with high accuracy."@en ; + "https://en.wikipedia.org/w/index.php?title=Rifle&oldid=1056172452"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000942 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000968 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001104 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000205.ttl b/src/cco-iris/ont00000205.ttl new file mode 100644 index 00000000..ce10f330 --- /dev/null +++ b/src/cco-iris/ont00000205.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001944 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000026 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000170 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000205 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "The exact line of the Object Track may be drawn based on the Center of Mass of the Object or another reference point, such as the location of a transponder beacon or the center of a radar cross-section, depending on the Object being tracked."@en ; + rdfs:label "Object Track"@en ; + "A One-Dimensional Spatial Region that consists of the idealized line along which an Object has traversed during some motion."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000904 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000206.ttl b/src/cco-iris/ont00000206.ttl new file mode 100644 index 00000000..dcb828e9 --- /dev/null +++ b/src/cco-iris/ont00000206.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000206 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Friction Reduction Artifact Function"@en ; + "An Artifact Function that is realized in processes of reducing the force resisting the relative motion of surfaces in contact."@en ; + "https://en.wikipedia.org/w/index.php?title=Friction&oldid=1061569068"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000207.ttl b/src/cco-iris/ont00000207.ttl new file mode 100644 index 00000000..2fa0503f --- /dev/null +++ b/src/cco-iris/ont00000207.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000142 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000207 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "One-Dimensional Geospatial Boundary"@en ; + "A Fiat Line that is a boundary of some Geospatial Region."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000685 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000794 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000817 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001195 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000208.ttl b/src/cco-iris/ont00000208.ttl new file mode 100644 index 00000000..3906ce5d --- /dev/null +++ b/src/cco-iris/ont00000208.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000123 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000208 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Congratulating"@en ; + "An Act of Expressive Communication performed by expressing vicarious pleasure to a person on the occasion of their success or good fortune."@en ; + "http://www.merriam-webster.com/dictionary/congratulate" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000209.ttl b/src/cco-iris/ont00000209.ttl new file mode 100644 index 00000000..ad20fe92 --- /dev/null +++ b/src/cco-iris/ont00000209.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000209 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sound Wavelength"@en ; + "A Wavelength that is the distance a Sound Wave traverses during one Wave Cycle."@en ; + "http://www.physicsclassroom.com/Class/waves/u10l2b.cfm" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000313 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000210.ttl b/src/cco-iris/ont00000210.ttl new file mode 100644 index 00000000..cf59df03 --- /dev/null +++ b/src/cco-iris/ont00000210.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000056 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000210 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Engine"@en ; + "Motor"@en ; + "A Material Artifact that is designed to convert one form of energy into mechanical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000638 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000952 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001221 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000211.ttl b/src/cco-iris/ont00000211.ttl new file mode 100644 index 00000000..746f3e08 --- /dev/null +++ b/src/cco-iris/ont00000211.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000211 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Day Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Days and spans at least one Day."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000212.ttl b/src/cco-iris/ont00000212.ttl new file mode 100644 index 00000000..0421036f --- /dev/null +++ b/src/cco-iris/ont00000212.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000212 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Chemical Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing toxic chemicals."@en ; + "https://en.wikipedia.org/w/index.php?title=Chemical_weapon&oldid=1054342645"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000213.ttl b/src/cco-iris/ont00000213.ttl new file mode 100644 index 00000000..1ba2502f --- /dev/null +++ b/src/cco-iris/ont00000213.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000213 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Subcontinent"@en ; + "A Geospatial Region that is bounded by a large, relatively self-contained landmass forming a subdivision of a Continent."@en ; + "https://en.wikipedia.org/w/index.php?title=Continent&oldid=1064057312"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000472 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000214.ttl b/src/cco-iris/ont00000214.ttl new file mode 100644 index 00000000..65504f6d --- /dev/null +++ b/src/cco-iris/ont00000214.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000214 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Moving Target Indication Artifact Function"@en ; + "A Radar Imaging Artifact Function that inheres in Artifacts that are designed to identify and produce visual representations of moving entities by using a radar to emit successive phase coherent pulses, which are sampled and added to the subsequent pulse to cancel out signals from non-moving entities such that only signals from moving entities remain and are displayed."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000289 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000650 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000215.ttl b/src/cco-iris/ont00000215.ttl new file mode 100644 index 00000000..7495f6cc --- /dev/null +++ b/src/cco-iris/ont00000215.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000215 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "A Radio Telescope consists of a specialized Antenna and a Radio Receiver and is typically used to receive radio waves from sources in outer space."@en ; + rdfs:label "Radio Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Radio_telescope&oldid=1052819190"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000547 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000728 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000216.ttl b/src/cco-iris/ont00000216.ttl new file mode 100644 index 00000000..d9f600ca --- /dev/null +++ b/src/cco-iris/ont00000216.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000216 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shell"@en ; + "A Portion of Ammunition that is designed to be a non-self-propelled projectile and to carry a payload (explosive or other) over a relatively short distance."@en ; + "https://en.wikipedia.org/wiki/Shell_(projectile)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001150 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000217.ttl b/src/cco-iris/ont00000217.ttl new file mode 100644 index 00000000..0103fdbd --- /dev/null +++ b/src/cco-iris/ont00000217.ttl @@ -0,0 +1,98 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Area"@en ; + "A Measurement Unit that is used as a standard for measurement of two-dimensional regions or Geospatial Regions."@en ; + "square feet, square meters, acre, hectare" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001438 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001456 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001471 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001486 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001496 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001522 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001645 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001672 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001706 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001713 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000218.ttl b/src/cco-iris/ont00000218.ttl new file mode 100644 index 00000000..88b5c24d --- /dev/null +++ b/src/cco-iris/ont00000218.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000026 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000218 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Major Axis"@en ; + "A One-Dimensional Spatial Region that is the longest line segment that connects two points on the edge of an Ellipse."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000219.ttl b/src/cco-iris/ont00000219.ttl new file mode 100644 index 00000000..614eaedf --- /dev/null +++ b/src/cco-iris/ont00000219.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000219 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reflecting Optical Telescope"@en ; + "Reflecting Telescope"@en , + "Reflector"@en ; + "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via reflection through the use of one or more curved Mirrors to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Reflecting_telescope&oldid=1062982683"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001009 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000220.ttl b/src/cco-iris/ont00000220.ttl new file mode 100644 index 00000000..564b1096 --- /dev/null +++ b/src/cco-iris/ont00000220.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000220 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ammunition Depot"@en ; + "A Storage Facility that is designed to store Portions of Ammunition."@en ; + "https://en.wikipedia.org/w/index.php?title=Ammunition_dump&oldid=1044466765"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000221.ttl b/src/cco-iris/ont00000221.ttl new file mode 100644 index 00000000..54e6840c --- /dev/null +++ b/src/cco-iris/ont00000221.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000026 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000221 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Semi-Minor Axis"@en ; + "A One-Dimensional Spatial Region that is equal to half the length of the Minor Axis of an Ellipse."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000222.ttl b/src/cco-iris/ont00000222.ttl new file mode 100644 index 00000000..52fe69d9 --- /dev/null +++ b/src/cco-iris/ont00000222.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000222 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Presence Frequency"@en ; + "A Sonic Frequency that is between 4 and 6 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000530 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000223.ttl b/src/cco-iris/ont00000223.ttl new file mode 100644 index 00000000..9abd7d56 --- /dev/null +++ b/src/cco-iris/ont00000223.ttl @@ -0,0 +1,85 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000132 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000203 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000223 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Time of Day"@en ; + "A Temporal Instant that is part of a Day."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000359 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000465 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000540 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000827 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000224.ttl b/src/cco-iris/ont00000224.ttl new file mode 100644 index 00000000..53eea74a --- /dev/null +++ b/src/cco-iris/ont00000224.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000072 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000224 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Populated place"@en ; + "An Anthropogenic Feature at which people live or have lived."@en ; + "https://en.wikipedia.org/w/index.php?title=Human_settlement&oldid=1060418164"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000489 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001197 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000225.ttl b/src/cco-iris/ont00000225.ttl new file mode 100644 index 00000000..b7b53f64 --- /dev/null +++ b/src/cco-iris/ont00000225.ttl @@ -0,0 +1,90 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000225 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Month"@en ; + "A Temporal Interval that is based on the approximate length of time required for a Natural Satellite to complete one cycle of its rotational motion around its Primary Body."@en ; + "Unless otherwise specified, it is assumed that a Month is specified relative to the Rotational Motion of the Moon around the Earth. Earth Months are approximately equal to four consecutive Weeks or 30 consecutive Days."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=month" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000259 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000329 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000619 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000832 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000226.ttl b/src/cco-iris/ont00000226.ttl new file mode 100644 index 00000000..b78de2dc --- /dev/null +++ b/src/cco-iris/ont00000226.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000108 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000226 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transportation Facility"@en ; + "A Facility that is designed for commencing or concluding the transportation of transportation artifacts, or for housing transportation artifacts."@en ; + "https://en.wikipedia.org/w/index.php?title=Transport&oldid=1063526665"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000761 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001078 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001258 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000227.ttl b/src/cco-iris/ont00000227.ttl new file mode 100644 index 00000000..16a5c7f8 --- /dev/null +++ b/src/cco-iris/ont00000227.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000227 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "A Julian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.25 Julian Days. Julian Years are typically indicated by prefixing a capital 'J' in front of the Year number, e.g. J2000.0 or J2018."@en ; + rdfs:label "Julian Year"@en ; + "A Calendar Year in the Julian Calendar."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000674 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000228.ttl b/src/cco-iris/ont00000228.ttl new file mode 100644 index 00000000..ee00830e --- /dev/null +++ b/src/cco-iris/ont00000228.ttl @@ -0,0 +1,154 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000005 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000037 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000109 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000142 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000165 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Planned Act"@en ; + "Intentional Act"@en ; + "An Act in which at least one Agent plays a causative role and which is prescribed by some Directive Information Content Entity held by at least one of the Agents."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000234 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000345 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000357 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000366 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000371 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000511 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000676 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000741 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000908 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000949 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001144 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001147 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001232 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001251 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001314 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001327 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000229.ttl b/src/cco-iris/ont00000229.ttl new file mode 100644 index 00000000..c4cbfb2a --- /dev/null +++ b/src/cco-iris/ont00000229.ttl @@ -0,0 +1,88 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000229 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Power"@en ; + "A Measurement Unit that is used as a standard for measurement of rates of work."@en ; + "watt, horsepower" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001391 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001407 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001502 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001560 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001563 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001566 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001653 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001689 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000230.ttl b/src/cco-iris/ont00000230.ttl new file mode 100644 index 00000000..2b4d72c6 --- /dev/null +++ b/src/cco-iris/ont00000230.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000136 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000230 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Diffraction Grating"@en ; + "An Optical Instrument with a periodic structure that is designed to split and defract a beam of light into several beams travelling in different directions."@en ; + "https://en.wikipedia.org/w/index.php?title=Diffraction_grating&oldid=1060463366"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000231.ttl b/src/cco-iris/ont00000231.ttl new file mode 100644 index 00000000..83c81504 --- /dev/null +++ b/src/cco-iris/ont00000231.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000231 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Torpedo Tube"@en ; + "A Projectile Launcher that is designed to launch Torpedoes."@en ; + "https://en.wikipedia.org/w/index.php?title=Torpedo_tube&oldid=1063672665"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001051 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000232.ttl b/src/cco-iris/ont00000232.ttl new file mode 100644 index 00000000..2a4171af --- /dev/null +++ b/src/cco-iris/ont00000232.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000232 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pumping Station"@en ; + "A Product Transport Facility that is designed to pump fluids from one place to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Pumping_station&oldid=1045678418"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000677 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000233.ttl b/src/cco-iris/ont00000233.ttl new file mode 100644 index 00000000..2178b47e --- /dev/null +++ b/src/cco-iris/ont00000233.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000233 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stock Certificate"@en ; + "Stock that consists of a Certificate."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001278 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000234.ttl b/src/cco-iris/ont00000234.ttl new file mode 100644 index 00000000..33f1a811 --- /dev/null +++ b/src/cco-iris/ont00000234.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000234 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Training"@en ; + "A Planned Act in which knowledge, skills or values are imparted from one or more Agents to at least one other Agent."@en ; + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000687 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001075 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000235.ttl b/src/cco-iris/ont00000235.ttl new file mode 100644 index 00000000..c8e42866 --- /dev/null +++ b/src/cco-iris/ont00000235.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000235 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Vocational Training Acquisition"@en ; + "An Act of Training Acquisition performed by an Agent by acquiring skills required for a specific occupation in industry, agriculture or trade from an Agent or communication medium that realizes a capacity derived from its affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000687 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000236.ttl b/src/cco-iris/ont00000236.ttl new file mode 100644 index 00000000..a6bf8683 --- /dev/null +++ b/src/cco-iris/ont00000236.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000236 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lighting System"@en ; + "A Material Artifact that is designed to emit light within some area."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000681 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001250 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000237.ttl b/src/cco-iris/ont00000237.ttl new file mode 100644 index 00000000..c2f209d0 --- /dev/null +++ b/src/cco-iris/ont00000237.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000237 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Terrorist Training Acquisition"@en ; + "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature from an Agent or communication medium that realizes a capacity derived from its affiliation with a Terrorist Organization."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000687 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000238.ttl b/src/cco-iris/ont00000238.ttl new file mode 100644 index 00000000..65c13770 --- /dev/null +++ b/src/cco-iris/ont00000238.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000238 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propeller"@en ; + "Propelling Screw"@en ; + "A Material Artifact that is designed to convert rotary motion from an Engine or other mechanical Power Source into propulsive Force."@en ; + "https://en.wikipedia.org/wiki/Propeller_(aeronautics)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000586 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000239.ttl b/src/cco-iris/ont00000239.ttl new file mode 100644 index 00000000..fc839b5e --- /dev/null +++ b/src/cco-iris/ont00000239.ttl @@ -0,0 +1,103 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Mass"@en ; + "A Measurement Unit that is used as a standard for measurement of an object's resistance to Acceleration when a Force is applied to the object."@en ; + "ounce, gram, pound" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001390 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001413 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001477 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001544 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001552 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001564 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001567 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001676 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001696 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001698 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001728 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000240.ttl b/src/cco-iris/ont00000240.ttl new file mode 100644 index 00000000..f51028ff --- /dev/null +++ b/src/cco-iris/ont00000240.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000240 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Oath Taking"@en ; + "An Act of Commissive Communication performed by stating or promising, usually calling upon something or someone that the oath maker considers sacred."@en ; + "https://en.wikipedia.org/w/index.php?title=Oath&oldid=1052326917"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001162 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000241.ttl b/src/cco-iris/ont00000241.ttl new file mode 100644 index 00000000..6418614f --- /dev/null +++ b/src/cco-iris/ont00000241.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000014 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000241 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Two-Dimensional Barcode"@en ; + "A Barcode that is designed to bear lines of varying widths, spacing, height, and color that concretize some Directive Information Content Entity."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000242 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000559 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001064 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001245 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000242.ttl b/src/cco-iris/ont00000242.ttl new file mode 100644 index 00000000..39f20cc5 --- /dev/null +++ b/src/cco-iris/ont00000242.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000241 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000242 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Data Matrix Code"@en ; + "A Two-Dimensional Barcode that consists of cells arranged in rectangular patterns and is used for marking small items in logistics and operations."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000243.ttl b/src/cco-iris/ont00000243.ttl new file mode 100644 index 00000000..9323c2ed --- /dev/null +++ b/src/cco-iris/ont00000243.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000243 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heat Sink"@en ; + "A Material Artifact that is designed to regulate the temperature of a computer by the passive transfer of heat away from other components in the computer."@en ; + "https://en.wikipedia.org/w/index.php?title=Heat_sink&oldid=1062822080"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000244.ttl b/src/cco-iris/ont00000244.ttl new file mode 100644 index 00000000..b788ae54 --- /dev/null +++ b/src/cco-iris/ont00000244.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000244 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fragmentation Artifact Function"@en ; + "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of a detonation which causes fragmentation."@en ; + "http://www.dictionary.com/browse/fragmentation" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001153 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000245.ttl b/src/cco-iris/ont00000245.ttl new file mode 100644 index 00000000..a442cc27 --- /dev/null +++ b/src/cco-iris/ont00000245.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000245 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Petroleum Manufacturing Facility"@en ; + "A Factory that is designed to manufacture petroleum-based products."@en ; + "https://en.wikipedia.org/w/index.php?title=Petroleum&oldid=1062956217"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000782 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000246.ttl b/src/cco-iris/ont00000246.ttl new file mode 100644 index 00000000..83999a7f --- /dev/null +++ b/src/cco-iris/ont00000246.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000115 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000135 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000246 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Realizable Entity"@en ; + "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Realizable Entity that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000820 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000824 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001132 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001213 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000247.ttl b/src/cco-iris/ont00000247.ttl new file mode 100644 index 00000000..08246886 --- /dev/null +++ b/src/cco-iris/ont00000247.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000247 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Road"@en ; + "A Land Transportation Artifact that is designed to enable Ground Vehicles to travel from one location to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Road&oldid=1063402841" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000646 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001326 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000248.ttl b/src/cco-iris/ont00000248.ttl new file mode 100644 index 00000000..080195a2 --- /dev/null +++ b/src/cco-iris/ont00000248.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000248 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Chemical Manufacturing Facility"@en ; + "A Factory that is designed to manufacture or process chemicals."@en ; + "https://en.wikipedia.org/w/index.php?title=Chemical_industry&oldid=1061177027"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000782 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000249.ttl b/src/cco-iris/ont00000249.ttl new file mode 100644 index 00000000..be20d3ee --- /dev/null +++ b/src/cco-iris/ont00000249.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000249 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "A Shaft is usually used to connect other components of a drive train that cannot be connected directly either because of the distance between them or the need to allow for relative movement between those components."@en ; + rdfs:label "Shaft"@en ; + "A Material Artifact that is designed to rotate and transmit Torque, Power, or Rotational Motion from one machine element to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Shaft&oldid=1023963656"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000250.ttl b/src/cco-iris/ont00000250.ttl new file mode 100644 index 00000000..2a41e270 --- /dev/null +++ b/src/cco-iris/ont00000250.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000250 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Realizable Entity"@en ; + "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Realizable Entity."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000613 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000865 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001066 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000251.ttl b/src/cco-iris/ont00000251.ttl new file mode 100644 index 00000000..7ac36ea1 --- /dev/null +++ b/src/cco-iris/ont00000251.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000251 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Continent"@en ; + "A Geospatial Region that is bounded by any of the Earth's main continuous expanses of land."@en ; + "JC3IEDM version 3.0.2" ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000472 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000252.ttl b/src/cco-iris/ont00000252.ttl new file mode 100644 index 00000000..6998b5f7 --- /dev/null +++ b/src/cco-iris/ont00000252.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000252 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nozzle"@en ; + "A Fluid Control Artifact that is designed to control the speed, direction, rate, shape, or pressure of the flow of fluid exiting it."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000698 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001000 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001117 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000253.ttl b/src/cco-iris/ont00000253.ttl new file mode 100644 index 00000000..baededcb --- /dev/null +++ b/src/cco-iris/ont00000253.ttl @@ -0,0 +1,186 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000101 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001824 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001837 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001863 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001899 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001900 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001908 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001912 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001913 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001961 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001976 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001997 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001765 + rdf:type owl:DatatypeProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001767 + rdf:type owl:DatatypeProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001768 + rdf:type owl:DatatypeProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001769 + rdf:type owl:DatatypeProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001770 + rdf:type owl:DatatypeProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001771 + rdf:type owl:DatatypeProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001772 + rdf:type owl:DatatypeProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001773 + rdf:type owl:DatatypeProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000030 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Information Bearing Entity"@en ; + "IBE"@en ; + "An Object upon which an Information Content Entity generically depends."@en ; + "http://purl.obolibrary.org/obo/IAO_0000178"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000314 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001243 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000254.ttl b/src/cco-iris/ont00000254.ttl new file mode 100644 index 00000000..b1bc71e9 --- /dev/null +++ b/src/cco-iris/ont00000254.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000254 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transportation Artifact"@en ; + "A Material Artifact that is fixed in place and designed to bear a Function, the realization of which is sometimes part of a process moving Vehicles and Agents from one location to another."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000549 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001326 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000255.ttl b/src/cco-iris/ont00000255.ttl new file mode 100644 index 00000000..88459721 --- /dev/null +++ b/src/cco-iris/ont00000255.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000101 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000128 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000255 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Cryogenic Material"@en ; + "A Portion of Material that has been reduced to a very low temperature (below -180 degrees Celcius)."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000316 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000457 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000816 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000256.ttl b/src/cco-iris/ont00000256.ttl new file mode 100644 index 00000000..f80b52f5 --- /dev/null +++ b/src/cco-iris/ont00000256.ttl @@ -0,0 +1,84 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000111 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000116 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000252 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fluid Control Artifact"@en ; + "A Material Artifact that is designed to manipulate the flow of a fluid (i.e. a liquid or a gas)."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000338 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000598 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000625 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000694 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000793 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000963 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000257.ttl b/src/cco-iris/ont00000257.ttl new file mode 100644 index 00000000..0bde24fa --- /dev/null +++ b/src/cco-iris/ont00000257.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000257 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiopaque"@en ; + "Radiodense"@en ; + "A Radiopacity that inheres in a bearer in virtue of its capacity to prevent most X-rays from passing through it."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000620 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000258.ttl b/src/cco-iris/ont00000258.ttl new file mode 100644 index 00000000..3e4d8c0c --- /dev/null +++ b/src/cco-iris/ont00000258.ttl @@ -0,0 +1,84 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "One-Dimensional Barcode"@en ; + "A Barcode that is designed to bear parallel lines of varying widths and spacing that concretize some Directive Information Content Entity."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000326 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000429 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000582 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000602 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000899 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000966 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001012 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001064 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001260 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001264 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000259.ttl b/src/cco-iris/ont00000259.ttl new file mode 100644 index 00000000..19da8e47 --- /dev/null +++ b/src/cco-iris/ont00000259.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000225 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000259 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar Month"@en ; + "A Month that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Month."@en ; + "January; February; March; April; May; June; July; August; September; October; November; December" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000260.ttl b/src/cco-iris/ont00000260.ttl new file mode 100644 index 00000000..3d85b378 --- /dev/null +++ b/src/cco-iris/ont00000260.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000260 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Muzzle Blast"@en ; + "A Sound Wave Process that is caused by a projectile being pushed from the barrel of a firearm by an explosive charge."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000675 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000261.ttl b/src/cco-iris/ont00000261.ttl new file mode 100644 index 00000000..bd79368e --- /dev/null +++ b/src/cco-iris/ont00000261.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000261 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment """Currently gamma radiation is distinguished from x-rays by their source--either inside or outside of the nucleus--rather than by frequency, energy, and wavelength. +https://en.wikipedia.org/wiki/Gamma_ray#Naming_conventions_and_overlap_in_terminology"""@en ; + rdfs:label "Gamma Ray Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is above 30 exahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Gamma_ray&oldid=1062115897"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000754 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000262.ttl b/src/cco-iris/ont00000262.ttl new file mode 100644 index 00000000..c9c0caa5 --- /dev/null +++ b/src/cco-iris/ont00000262.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000262 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shop"@en ; + "A Commercial Facility designed to sell small lots of goods to consumers."@en ; + "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001102 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000263.ttl b/src/cco-iris/ont00000263.ttl new file mode 100644 index 00000000..f3b132f2 --- /dev/null +++ b/src/cco-iris/ont00000263.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000263 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "A single Clock Time System does not provide a complete means for identifying or measuring times. Depending on the particular Clock Time System, it may be compatible for use with one or more other Temporal Reference Systems."@en ; + rdfs:label "Clock Time System"@en ; + "A Temporal Reference System that is a convention for keeping and displaying the Time of Day."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001439 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001626 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000264.ttl b/src/cco-iris/ont00000264.ttl new file mode 100644 index 00000000..50168849 --- /dev/null +++ b/src/cco-iris/ont00000264.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000020 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000264 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydraulic Fluid Reservoir"@en ; + "A Container that is designed to store some hydraulic fluid for use in some Hyrdraulic Power Source."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000265.ttl b/src/cco-iris/ont00000265.ttl new file mode 100644 index 00000000..e939f0d6 --- /dev/null +++ b/src/cco-iris/ont00000265.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000265 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Election"@en ; + "Act of Political Election"@en ; + "A Social Act by which a population chooses an individual to hold public office."@en ; + "https://en.wikipedia.org/w/index.php?title=Election&oldid=1063238552"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001327 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000266.ttl b/src/cco-iris/ont00000266.ttl new file mode 100644 index 00000000..7a82708b --- /dev/null +++ b/src/cco-iris/ont00000266.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000266 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hearing Aid"@en ; + "A Medical Artifact that is designed to improve hearing for its user."@en ; + "https://en.wikipedia.org/w/index.php?title=Hearing_aid&oldid=1062688647"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001381 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000267.ttl b/src/cco-iris/ont00000267.ttl new file mode 100644 index 00000000..9404efc7 --- /dev/null +++ b/src/cco-iris/ont00000267.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000267 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Catalyst Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in a process in which the rate of a chemical reaction is increased due to the participation of an additional substance, without that substance being consumed in the reaction."@en ; + "https://en.wikipedia.org/w/index.php?title=Catalysis&oldid=1063864001"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000791 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000268.ttl b/src/cco-iris/ont00000268.ttl new file mode 100644 index 00000000..1b1f0232 --- /dev/null +++ b/src/cco-iris/ont00000268.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000268 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cannon"@en ; + "A Projectile Launcher that is designed to use a controlled explosion to launch a relatively large Portion of Ammunition, such as a Round Shot or a Shell, at a significant Velocity."@en ; + "https://en.wikipedia.org/w/index.php?title=Cannon&oldid=1063792906"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000340 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001051 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001270 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000269.ttl b/src/cco-iris/ont00000269.ttl new file mode 100644 index 00000000..4ca7416e --- /dev/null +++ b/src/cco-iris/ont00000269.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000269 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Transmitter"@en ; + "A Radio Communication Instrument that is an electronic device that is designed to generate a radio frequency alternating current, which can be applied to a Radio Antenna to be transmitted as radio waves."@en ; + "https://en.wikipedia.org/w/index.php?title=Transmitter&oldid=1061735586"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000285 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000903 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000270.ttl b/src/cco-iris/ont00000270.ttl new file mode 100644 index 00000000..46e4ff9f --- /dev/null +++ b/src/cco-iris/ont00000270.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000270 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Educational Facility"@en ; + "A Facility that is designed for facilitating learning, or the acquisition of knowledge, skills, values, beliefs, and habits."@en ; + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001358 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000271.ttl b/src/cco-iris/ont00000271.ttl new file mode 100644 index 00000000..dff4e23e --- /dev/null +++ b/src/cco-iris/ont00000271.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000271 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Underground Mine"@en ; + "A Mine that is designed to support the extraction of materials from the ground using underground tunnels and shafts."@en ; + "https://en.wikipedia.org/wiki/Underground_mining_(hard_rock)" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000639 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000272.ttl b/src/cco-iris/ont00000272.ttl new file mode 100644 index 00000000..e58a4d61 --- /dev/null +++ b/src/cco-iris/ont00000272.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000007 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000272 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Combustion"@en ; + "Burning Process"@en , + "Combustion Process"@en ; + "A Natural Process in which a Portion of Fuel or other Material Entity is burned."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000273.ttl b/src/cco-iris/ont00000273.ttl new file mode 100644 index 00000000..480b360f --- /dev/null +++ b/src/cco-iris/ont00000273.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000273 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication Interference Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact is used to interfere with the transmission of information for the purpose of preventing communication."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000495 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000274.ttl b/src/cco-iris/ont00000274.ttl new file mode 100644 index 00000000..4dd788c0 --- /dev/null +++ b/src/cco-iris/ont00000274.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000274 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Armed Force"@en ; + "An Organization having the Objective to further the foreign and domestic policies of a Government and to defend that body and the nation it represents from external and internal aggressors."@en ; + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000426 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001312 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000275.ttl b/src/cco-iris/ont00000275.ttl new file mode 100644 index 00000000..321b4483 --- /dev/null +++ b/src/cco-iris/ont00000275.ttl @@ -0,0 +1,67 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000275 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Note that, while reference systems and reference frames are treated as synonyms here, some people treat them as related but separate entities. See: http://www.ggos-portal.org/lang_en/GGOS-Portal/EN/Topics/GeodeticApplications/GeodeticReferenceSystemsAndFrames/GeodeticReferenceSystemsAndFrames.html"@en ; + rdfs:label "Spatial Reference System"@en ; + "Coordinate System"@en , + "Spatial Coordinate System"@en , + "Spatial Reference Frame"@en ; + "A Reference System that describes a set of standards for uniquely identifying the position of an entity or the direction of a vector within a defined spatial region by means of measurements along one or more Coordinate System Axes."@en ; + "https://en.wikipedia.org/w/index.php?title=Coordinate_system&oldid=1060461397"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000398 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000729 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001351 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000276.ttl b/src/cco-iris/ont00000276.ttl new file mode 100644 index 00000000..f05b0734 --- /dev/null +++ b/src/cco-iris/ont00000276.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000276 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Solar Calendar System"@en ; + "A Calendar System that is designed to organize and identify dates based on the cycles of an Astronomical Body's Orbit around the Sun."@en ; + "Unless otherwise specified, a Solar Calendar System is assumed to be relative to the Orbit of the Earth around the Sun."@en ; + "https://en.wikipedia.org/w/index.php?title=Solar_calendar&oldid=1058016588"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000891 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001550 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001674 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000277.ttl b/src/cco-iris/ont00000277.ttl new file mode 100644 index 00000000..f2028b1b --- /dev/null +++ b/src/cco-iris/ont00000277.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000277 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of a destructive nuclear reaction, either through fission or through a combination of fission and fusion."@en ; + "https://en.wikipedia.org/w/index.php?title=Nuclear_weapon&oldid=1060854171"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000278.ttl b/src/cco-iris/ont00000278.ttl new file mode 100644 index 00000000..820b28db --- /dev/null +++ b/src/cco-iris/ont00000278.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000278 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The SI unit of measure for Momentum is Newton seconds (N s)."@en ; + rdfs:label "Momentum"@en ; + "A Process Profile of an object in Motion that is the product of its Mass and Velocity with respect to a frame of reference."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000955 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000279.ttl b/src/cco-iris/ont00000279.ttl new file mode 100644 index 00000000..024cdacb --- /dev/null +++ b/src/cco-iris/ont00000279.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000279 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Enemy Role"@en ; + "An Allegiance Role that inheres in an Agent by virtue of that Agent having committed offensive Acts or exhibited intent to perform such Acts towards a particular Agent or Group of Agents or has been declared as hostile by some appropriate authority."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000392 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000697 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000280.ttl b/src/cco-iris/ont00000280.ttl new file mode 100644 index 00000000..e04ddbdc --- /dev/null +++ b/src/cco-iris/ont00000280.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000280 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Torpedo"@en ; + "A Precision-Guided Missile that is designed to be fired into a body of water, be self-propelled through the water, and carry an explosive payload."@en ; + "https://en.wikipedia.org/w/index.php?title=Torpedo&oldid=1062609830"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001124 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000281.ttl b/src/cco-iris/ont00000281.ttl new file mode 100644 index 00000000..ea966b7d --- /dev/null +++ b/src/cco-iris/ont00000281.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000281 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Albedo"@en ; + "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of its surface to reflect incident electromagnetic radiation of a particular wavelength."@en ; + "Albedo is a reflection coefficient and is measured as the ratio of radiation reflected from the surface to the incident radiation. Albedo is dimensionless, can be expressed as a percentage, and is measured on a scale from 0 for no reflection to 1 for perfect reflection of a surface. Albedo depends on the wavelength of the radiation; when no wavelength is specified, it typically refers to some appropriate average across the spectrum of visible light."@en ; + "https://en.wikipedia.org/w/index.php?title=Albedo&oldid=1063352646"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001137 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000282.ttl b/src/cco-iris/ont00000282.ttl new file mode 100644 index 00000000..ae578fc3 --- /dev/null +++ b/src/cco-iris/ont00000282.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000282 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Counterfeit Financial Instrument"@en ; + "A Counterfeit Instrument that is designed to be a fake replica of some legally sanctioned Financial Instrument."@en ; + "https://en.wikipedia.org/w/index.php?title=Counterfeit_money&oldid=1064052318"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000719 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000283.ttl b/src/cco-iris/ont00000283.ttl new file mode 100644 index 00000000..b1ebebb9 --- /dev/null +++ b/src/cco-iris/ont00000283.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000283 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cylindrical"@en ; + "Columnar"@en ; + "A Three Dimensional Shape inhering in a bearer in virtue of the bearer having an elongated shape with round bases."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001360 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000284.ttl b/src/cco-iris/ont00000284.ttl new file mode 100644 index 00000000..41079b5c --- /dev/null +++ b/src/cco-iris/ont00000284.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000284 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Strength"@en ; + "A Realizable Entity that is realized when its bearer exerts or resists some power, influence, or force."@en ; + "Strength is intended to be understood broadly here. Physical strength is only one type of Strength. Other subtypes of Strength may include military strength, psychological strength, emotional strength, political strength, technological strength, and so on."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000285.ttl b/src/cco-iris/ont00000285.ttl new file mode 100644 index 00000000..56988796 --- /dev/null +++ b/src/cco-iris/ont00000285.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000269 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000285 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Emergency Locator Transmitter"@en ; + "A Radio Transmitter that is designed to signal distress and provide positional data for the entity it is located on."@en ; + "https://en.wikipedia.org/w/index.php?title=Emergency_position-indicating_radiobeacon&oldid=1063407242"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000286.ttl b/src/cco-iris/ont00000286.ttl new file mode 100644 index 00000000..9c030e93 --- /dev/null +++ b/src/cco-iris/ont00000286.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000100 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000286 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Partially Mission Capable Maintenance"@en ; + "A Stasis of Partially Mission Capable during which the participating Continuant is not capable of performing some of its primary functions for the specified Mission due to participating in an Act Of Maintenance."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000287.ttl b/src/cco-iris/ont00000287.ttl new file mode 100644 index 00000000..bcfc9140 --- /dev/null +++ b/src/cco-iris/ont00000287.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000287 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Inertial Navigation System"@en ; + "INS"@en ; + "A Navigation System that is designed to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references."@en ; + "https://en.wikipedia.org/w/index.php?title=Inertial_navigation_system&oldid=1063682725"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001181 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001187 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000288.ttl b/src/cco-iris/ont00000288.ttl new file mode 100644 index 00000000..eb70d685 --- /dev/null +++ b/src/cco-iris/ont00000288.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000030 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000288 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Source"@en ; + "A Material Artifact that is designed to supply power to some other Artifact."@en ; + "https://en.wikipedia.org/w/index.php?title=Power_source&oldid=1032888635"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000516 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001049 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001157 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000289.ttl b/src/cco-iris/ont00000289.ttl new file mode 100644 index 00000000..0e262089 --- /dev/null +++ b/src/cco-iris/ont00000289.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000214 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000289 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radar Imaging Artifact Function"@en ; + "An Imaging Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities using radio waves."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000482 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000601 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000290.ttl b/src/cco-iris/ont00000290.ttl new file mode 100644 index 00000000..05462d16 --- /dev/null +++ b/src/cco-iris/ont00000290.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000290 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Specifically Dependent Continuant"@en ; + "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in some Specifically Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000535 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000726 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000854 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000291.ttl b/src/cco-iris/ont00000291.ttl new file mode 100644 index 00000000..1ca7d7c7 --- /dev/null +++ b/src/cco-iris/ont00000291.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000291 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Decoy Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Decoy."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000292.ttl b/src/cco-iris/ont00000292.ttl new file mode 100644 index 00000000..6206d230 --- /dev/null +++ b/src/cco-iris/ont00000292.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000292 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Artifact Identifier"@en ; + "A Designative Information Content Entity which designates some Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000293.ttl b/src/cco-iris/ont00000293.ttl new file mode 100644 index 00000000..f826bed6 --- /dev/null +++ b/src/cco-iris/ont00000293.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001868 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001914 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000203 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000293 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith , + , + ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Nominal Measurement Information Content Entity"@en ; + "A Measurement Information Content Entity that consists of a symbol that classifies Entities according to some shared, possibly arbitrary, characteristic."@en ; + "The sentence \"January 20, 1985 was a cold day in Chicago, IL\" is the carrier of a nominal measurement."@en , + "a measurement that classifies automobiles as sedans, coupes, hatchbacks, or convertibles" , + "a measurement that classifies military intelligence as strategic, operational, or tactical" , + "a measurement that classifies rocks as igneous, sedimentary, or metamorphic" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001022 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001364 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000294.ttl b/src/cco-iris/ont00000294.ttl new file mode 100644 index 00000000..04ff6690 --- /dev/null +++ b/src/cco-iris/ont00000294.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000294 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Air-Breathing Jet Engine"@en ; + "Ducted Jet Engine"@en ; + "A Jet Engine that is propelled by a jet of hot exhaust gases formed from air that is drawn into the Engine via an Air Inlet."@en ; + "https://en.wikipedia.org/w/index.php?title=Airbreathing_jet_engine&oldid=1062364308"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000522 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000533 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000688 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000996 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001005 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001121 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000295.ttl b/src/cco-iris/ont00000295.ttl new file mode 100644 index 00000000..205aea59 --- /dev/null +++ b/src/cco-iris/ont00000295.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000295 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wetness"@en ; + "A Quality that inheres in a bearer in virtue of the degree to which the bearer is covered by a liquid, typically on a continuum of dry to wet."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000296.ttl b/src/cco-iris/ont00000296.ttl new file mode 100644 index 00000000..5298dd7e --- /dev/null +++ b/src/cco-iris/ont00000296.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000296 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Angular Velocity"@en ; + "Rotational Velocity"@en ; + "A Velocity that is characterized by both the angular Speed of an object and the Axis about which the object is Rotating."@en ; + "https://en.wikipedia.org/w/index.php?title=Angular_velocity&oldid=1060081663"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000368 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000763 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000297.ttl b/src/cco-iris/ont00000297.ttl new file mode 100644 index 00000000..062dc1ab --- /dev/null +++ b/src/cco-iris/ont00000297.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000024 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000297 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Hydrosphere"@en ; + "A fiat object part of the combined mass of water found on, under, and above the surface of a natural satellite"@en ; + "https://en.wikipedia.org/w/index.php?title=Hydrosphere&oldid=1128848972"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000298.ttl b/src/cco-iris/ont00000298.ttl new file mode 100644 index 00000000..6350d356 --- /dev/null +++ b/src/cco-iris/ont00000298.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000298 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shoulder-Fired Rocket Launcher"@en ; + "A Rocket Launcher that is designed to be small enough to be carried by a single person and fired while supported on the person's shoulder."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001173 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000299.ttl b/src/cco-iris/ont00000299.ttl new file mode 100644 index 00000000..64d3e599 --- /dev/null +++ b/src/cco-iris/ont00000299.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000299 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prosthetic Leg"@en ; + "A Prosthesis that is designed to replace a missing leg."@en ; + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000715 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000300.ttl b/src/cco-iris/ont00000300.ttl new file mode 100644 index 00000000..e2353dfe --- /dev/null +++ b/src/cco-iris/ont00000300.ttl @@ -0,0 +1,97 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000115 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001880 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001898 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000300 + rdf:type owl:Class ; + rdfs:subClassOf , + [ owl:intersectionOf ( [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "Group of Agents"@en ; + "An Object Aggregate that has only Agents as parts."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000914 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001062 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001183 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001239 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000301.ttl b/src/cco-iris/ont00000301.ttl new file mode 100644 index 00000000..824d6f0b --- /dev/null +++ b/src/cco-iris/ont00000301.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000301 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vehicle Transmission"@en ; + "Gearbox"@en , + "Transmission"@en ; + "A Power Transmission Artifact that is designed to vary the output speed and torque in a rotating power transfer system."@en ; + "https://en.wikipedia.org/wiki/Transmission_(mechanics)"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000663 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000302.ttl b/src/cco-iris/ont00000302.ttl new file mode 100644 index 00000000..6f425481 --- /dev/null +++ b/src/cco-iris/ont00000302.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000302 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Alternating Current Power Source"@en ; + "An Electrical Power Source that is designed to transfer electrical power in the form of alternating current."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001049 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000303.ttl b/src/cco-iris/ont00000303.ttl new file mode 100644 index 00000000..c595530d --- /dev/null +++ b/src/cco-iris/ont00000303.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000303 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Intercommunication System"@en ; + "A Communication System that is designed to enable some Act of Communication between end points within a building, small collection of buildings, or within a small area of service."@en ; + "https://en.wikipedia.org/w/index.php?title=Intercom&oldid=1055934442"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000334 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001036 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000304.ttl b/src/cco-iris/ont00000304.ttl new file mode 100644 index 00000000..0f33432c --- /dev/null +++ b/src/cco-iris/ont00000304.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000075 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000304 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Microscope"@en ; + "An Imaging Instrument that is designed to enable users to see Objects that are otherwise too small to be seen by the naked eye by producing a significantly enlarged image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Microscope&oldid=1059024357"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000413 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000436 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000771 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000305.ttl b/src/cco-iris/ont00000305.ttl new file mode 100644 index 00000000..76236924 --- /dev/null +++ b/src/cco-iris/ont00000305.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000305 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sound Pressure"@en ; + "Acoustic Pressure"@en ; + "A Pressure that is caused by a Sound Wave and is a local deviation from the ambient Pressure."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000380 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000306.ttl b/src/cco-iris/ont00000306.ttl new file mode 100644 index 00000000..a9907fec --- /dev/null +++ b/src/cco-iris/ont00000306.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000306 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hinge"@en ; + "A Machine Bearing that is designed to limit the angle of Rotation between two solid objects."@en ; + "https://en.wikipedia.org/w/index.php?title=Hinge&oldid=1059935559"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001370 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000307.ttl b/src/cco-iris/ont00000307.ttl new file mode 100644 index 00000000..9de9df6c --- /dev/null +++ b/src/cco-iris/ont00000307.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000307 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Food"@en ; + "A Portion of Processed Material that is designed to be consumed and ingested for nutrition or taste."@en ; + "https://en.wikipedia.org/w/index.php?title=Food&oldid=1062824590"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001084 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000308.ttl b/src/cco-iris/ont00000308.ttl new file mode 100644 index 00000000..703c3da4 --- /dev/null +++ b/src/cco-iris/ont00000308.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000308 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Military Service"@en ; + "An Act of Employment wherein a Person serves as a member of a Military Force, whether voluntarily or by conscription."@en ; + "http://www.collinsdictionary.com/dictionary/english/military-service" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001226 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000309.ttl b/src/cco-iris/ont00000309.ttl new file mode 100644 index 00000000..e20b1f03 --- /dev/null +++ b/src/cco-iris/ont00000309.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000309 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Healthcare Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of treating and preventing illness."@en ; + "https://en.wikipedia.org/w/index.php?title=Health_care&oldid=1064015344"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000310.ttl b/src/cco-iris/ont00000310.ttl new file mode 100644 index 00000000..770c59bf --- /dev/null +++ b/src/cco-iris/ont00000310.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000310 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Grenade"@en ; + "Hand Grenade"@en ; + "An Explosive Weapon that is designed to be relatively small and to be thrown by hand."@en ; + "https://en.wikipedia.org/w/index.php?title=Grenade&oldid=1060366148"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000552 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000311.ttl b/src/cco-iris/ont00000311.ttl new file mode 100644 index 00000000..dcd616ff --- /dev/null +++ b/src/cco-iris/ont00000311.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000311 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Filtration Artifact Function"@en ; + "A Filter Function that is realized in a process in which some solid entity is prevented from moving along with some quantity of liquid."@en ; + "https://en.wikipedia.org/w/index.php?title=Filtration&oldid=1061655528"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001999 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000312.ttl b/src/cco-iris/ont00000312.ttl new file mode 100644 index 00000000..2dfdc6c5 --- /dev/null +++ b/src/cco-iris/ont00000312.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000007 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000312 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propulsion Process"@en ; + "A Natural Process in which one or more Forces are generated and applied to a participating Object such that the Object is set in Motion or has the direction or magnitude of its Motion altered."@en ; + "a twin-engine turboprop plane rotating both of its propellers against a portion of atmosphere to propel the plane forward" , + "an apple falling to the ground under the power of Earth's gravitational force" , + "burning a portion of fuel to produce exhaust that is ejected through a jet nozzle to propel a rocket and its payload" , + "heat from a fire causing ashes to rise into the sky" , + "launching a water balloon using a sling shot" , + "the wind blowing leaves across a lawn" , + "turning a paddle wheel against a portion of water to propel the paddle boat forward" ; + "In each case, a Propulsion Process minimally involves the Object being propelled, a Reaction Mass (e.g. a portion of water, atmosphere, exhaust, etc.), and the Force(s) acting between these two entities."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000313.ttl b/src/cco-iris/ont00000313.ttl new file mode 100644 index 00000000..177ff5c0 --- /dev/null +++ b/src/cco-iris/ont00000313.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000209 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000313 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Assuming a non-dispersive media, the Wavelength will be the inverse of the Frequency."@en ; + rdfs:label "Wavelength"@en ; + "A Wave Process Profile that is the distance the Wave Process traverses during one Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000752 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000314.ttl b/src/cco-iris/ont00000314.ttl new file mode 100644 index 00000000..625b05ba --- /dev/null +++ b/src/cco-iris/ont00000314.ttl @@ -0,0 +1,61 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000314 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "Typically, an IQE will be a complex pattern made up of multiple qualities joined together spatially."@en ; + rdfs:label "Information Quality Entity"@en ; + "IQE"@en ; + "A Quality that concretizes some Information Content Entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000315.ttl b/src/cco-iris/ont00000315.ttl new file mode 100644 index 00000000..99629eb9 --- /dev/null +++ b/src/cco-iris/ont00000315.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000315 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Switching Node"@en ; + "A Telecommunication Network Node that is capable of redirecting a communication transmission to another Telecommunication Network Node."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000918 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000316.ttl b/src/cco-iris/ont00000316.ttl new file mode 100644 index 00000000..c317e110 --- /dev/null +++ b/src/cco-iris/ont00000316.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000255 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000316 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Helium"@en ; + "A Portion of Cryogenic Material that is composed (almost) entirely of liquid helium."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000317.ttl b/src/cco-iris/ont00000317.ttl new file mode 100644 index 00000000..bee5107f --- /dev/null +++ b/src/cco-iris/ont00000317.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000317 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electronic Signal Processing Artifact Function"@en ; + "A Signal Processing Artifact Function that inheres in Artifacts that are designed to process or transfer information contained in electronic signals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001218 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000318.ttl b/src/cco-iris/ont00000318.ttl new file mode 100644 index 00000000..442d7a00 --- /dev/null +++ b/src/cco-iris/ont00000318.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000016 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000318 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Disease"@en ; + "A Disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism."@en ; + "http://purl.obolibrary.org/obo/OGMS_0000031" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000319.ttl b/src/cco-iris/ont00000319.ttl new file mode 100644 index 00000000..2110c37f --- /dev/null +++ b/src/cco-iris/ont00000319.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000319 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Artifact Design"@en ; + "A Directive Information Content Entity that is a specification of an object, manifested by an agent, intended to accomplish goals, in a particular environment, using a set of primitive components, satisfying a set of requirements, subject to constraints."@en ; + "https://en.wikipedia.org/w/index.php?title=Design&oldid=1063941625"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001045 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000320.ttl b/src/cco-iris/ont00000320.ttl new file mode 100644 index 00000000..a21437ef --- /dev/null +++ b/src/cco-iris/ont00000320.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000320 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Reconnaissance"@en ; + "An Act of Intelligence Gathering used to determine an Agent's disposition and intention; the composition and capabilities of Equipment and Facilities, and the surrounding landforms and weather conditions."@en ; + "https://en.wikipedia.org/w/index.php?title=Reconnaissance&oldid=1038843823"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001251 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000321.ttl b/src/cco-iris/ont00000321.ttl new file mode 100644 index 00000000..d50bb870 --- /dev/null +++ b/src/cco-iris/ont00000321.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000321 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Residential Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of residing in a dwelling or home."@en ; + "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000322.ttl b/src/cco-iris/ont00000322.ttl new file mode 100644 index 00000000..230782b5 --- /dev/null +++ b/src/cco-iris/ont00000322.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000322 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Funding"@en ; + "An Act of Financial Instrument Use in which an Agent provides a sum of money to another Agent for a particular purpose."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000836 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000323.ttl b/src/cco-iris/ont00000323.ttl new file mode 100644 index 00000000..79324e9f --- /dev/null +++ b/src/cco-iris/ont00000323.ttl @@ -0,0 +1,360 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000034 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000002 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000023 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000098 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000113 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000118 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000183 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000206 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000273 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Artifact Function"@en ; + "A Function that inheres in some Artifact in virtue of that Artifact being designed to be used in processes that require that Function to be realized."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000353 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000403 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000422 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000437 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000448 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000451 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000452 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000466 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000480 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000491 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000504 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000601 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000603 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000623 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000629 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000635 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000651 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000665 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000679 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000689 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000727 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000776 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000791 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000809 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000811 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000932 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000937 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001013 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001044 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001070 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001071 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001085 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001100 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001153 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001169 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001174 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001200 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001211 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001218 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001241 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001253 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001306 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001310 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001323 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001350 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001361 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001366 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001371 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001999 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000324.ttl b/src/cco-iris/ont00000324.ttl new file mode 100644 index 00000000..1f9c59cb --- /dev/null +++ b/src/cco-iris/ont00000324.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000324 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Width"@en ; + "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a horizontal direction."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001367 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000325.ttl b/src/cco-iris/ont00000325.ttl new file mode 100644 index 00000000..0f6c3376 --- /dev/null +++ b/src/cco-iris/ont00000325.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000147 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000325 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Transponder"@en ; + "Transmitter-Responder"@en ; + "A Radio Communication Instrument that is an electronic device that acts as both a Radio Transmitter and responder and is used to wirelessly receive and transmit electrical signals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000878 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000903 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000326.ttl b/src/cco-iris/ont00000326.ttl new file mode 100644 index 00000000..503d98ba --- /dev/null +++ b/src/cco-iris/ont00000326.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000326 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "UPC Barcode"@en ; + "A One-Dimensional Barcode that consists of 6 or 12 numerical digits and is used to scan consumer goods."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000931 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001209 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000327.ttl b/src/cco-iris/ont00000327.ttl new file mode 100644 index 00000000..e97bcb48 --- /dev/null +++ b/src/cco-iris/ont00000327.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000327 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Texture"@en ; + "A Quality that inheres in a bearer in virtue of the size, shape, and distribution of features on its surface, typically on a continuum from smooth to rough."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000328.ttl b/src/cco-iris/ont00000328.ttl new file mode 100644 index 00000000..e9d49cf1 --- /dev/null +++ b/src/cco-iris/ont00000328.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000328 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transportation Infrastructure"@en ; + "An Infrastructure System that is designed to facilitate the movement of material entities from one location to another by providing the necessary structures for Persons to travel or for Vehicles to transport material entities."@en ; + "http://www.cfr.org/infrastructure/transportation-infrastructure-moving-america/p18611" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000870 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000329.ttl b/src/cco-iris/ont00000329.ttl new file mode 100644 index 00000000..e713ebea --- /dev/null +++ b/src/cco-iris/ont00000329.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000225 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000329 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Month Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Months and spans at least one Month."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000330.ttl b/src/cco-iris/ont00000330.ttl new file mode 100644 index 00000000..addc4386 --- /dev/null +++ b/src/cco-iris/ont00000330.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000330 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thermal Power Plant"@en ; + "An Electric Power Station that is designed to convert heat energy into electrical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Thermal_power_station&oldid=1062208548"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000421 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001076 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000331.ttl b/src/cco-iris/ont00000331.ttl new file mode 100644 index 00000000..a51e0c52 --- /dev/null +++ b/src/cco-iris/ont00000331.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000331 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "House"@en ; + "A Residential Facility that is designed to provide a self-standing, permanent residence for an individual, family, household, multiple families, or similar-sized group."@en ; + "https://en.wikipedia.org/w/index.php?title=House&oldid=1062818553"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000410 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000332.ttl b/src/cco-iris/ont00000332.ttl new file mode 100644 index 00000000..ba6e8551 --- /dev/null +++ b/src/cco-iris/ont00000332.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000332 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Training Camp"@en ; + "A Facility that is designed for rigorous and focused training in order to learn or improve skills, usually involving physical actions."@en ; + "https://en.wikipedia.org/w/index.php?title=Training_camp&oldid=1059977631"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001165 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000333.ttl b/src/cco-iris/ont00000333.ttl new file mode 100644 index 00000000..a00fd4f3 --- /dev/null +++ b/src/cco-iris/ont00000333.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000333 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gas Turbine"@en ; + "Combustion Turbine"@en ; + "An Internal Combustion Engine that has a rotating compressor and a turbine and is designed to operate utilizing continous Combustion to produce Thrust, either directly via exhaust or indirectly via a prop."@en ; + "https://en.wikipedia.org/w/index.php?title=Gas_turbine&oldid=1062398125"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000394 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000334.ttl b/src/cco-iris/ont00000334.ttl new file mode 100644 index 00000000..0bd16151 --- /dev/null +++ b/src/cco-iris/ont00000334.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000303 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000334 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Interphone"@en ; + "An Intercommunication System that that is designed to facilitate some Act of Communication between agents by means of audio messages."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000335.ttl b/src/cco-iris/ont00000335.ttl new file mode 100644 index 00000000..afaa7545 --- /dev/null +++ b/src/cco-iris/ont00000335.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000335 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Generically Dependent Continuant"@en ; + "A Stasis in which some Independent Continuant bears some Generically Dependent Continuant that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000819 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000895 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000336.ttl b/src/cco-iris/ont00000336.ttl new file mode 100644 index 00000000..b93e9268 --- /dev/null +++ b/src/cco-iris/ont00000336.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000336 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Apartment Building"@en ; + "A Residential Facility that is designed to contain multiple permanent residences comprised of a suite of rooms."@en ; + "https://en.wikipedia.org/w/index.php?title=Apartment&oldid=1064019048"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000410 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000337.ttl b/src/cco-iris/ont00000337.ttl new file mode 100644 index 00000000..3a5316f6 --- /dev/null +++ b/src/cco-iris/ont00000337.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000337 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rocket-Propelled Grenade"@en ; + "An Unguided Rocket that is designed to contain an explosive warhead, be fired from a Shoulder-Fired Rocket Launcher, and be used against Tanks."@en ; + "RPG" ; + "https://en.wikipedia.org/w/index.php?title=Rocket-propelled_grenade&oldid=1063641548"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001029 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000338.ttl b/src/cco-iris/ont00000338.ttl new file mode 100644 index 00000000..25200736 --- /dev/null +++ b/src/cco-iris/ont00000338.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000338 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fan"@en ; + "A Fluid Control Artifact that consists of a rotating arrangement of vanes or blades that are designed to act on a portion of fluid to create flow within it."@en ; + "https://en.wikipedia.org/wiki/Fan_(machine)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000339.ttl b/src/cco-iris/ont00000339.ttl new file mode 100644 index 00000000..ed055dbd --- /dev/null +++ b/src/cco-iris/ont00000339.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000339 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Agricultural Facility"@en ; + "A Facility that is designed as a building or campus for agricultural processes with the aim of cultivating animals, plants, or fungi for food, fiber, biofuel, medicinal plants, or other products to sustain and enhance human life."@en ; + "https://en.wikipedia.org/w/index.php?title=Agriculture&oldid=1063222666"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001380 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000340.ttl b/src/cco-iris/ont00000340.ttl new file mode 100644 index 00000000..ebf1536b --- /dev/null +++ b/src/cco-iris/ont00000340.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000268 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000340 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mortar"@en ; + "A Cannon that is designed to fire projectiles at relatively low velocities over relatively short ranges."@en ; + "https://en.wikipedia.org/wiki/Mortar_(weapon)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000341.ttl b/src/cco-iris/ont00000341.ttl new file mode 100644 index 00000000..67de882e --- /dev/null +++ b/src/cco-iris/ont00000341.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000341 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prosthetic Arm"@en ; + "A Prosthesis that is designed to replace a missing arm."@en ; + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000715 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000342.ttl b/src/cco-iris/ont00000342.ttl new file mode 100644 index 00000000..8f6c7c47 --- /dev/null +++ b/src/cco-iris/ont00000342.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000342 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Brake"@en ; + "A Material Artifact that is designed to inhibit the Vehicle's Motion by absorbing energy from a moving system."@en ; + "https://en.wikipedia.org/w/index.php?title=Brake&oldid=1047693009"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000343.ttl b/src/cco-iris/ont00000343.ttl new file mode 100644 index 00000000..67046dde --- /dev/null +++ b/src/cco-iris/ont00000343.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000343 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reciprocating Steam Engine"@en ; + "A Steam Engine that is designed to use one or more reciprocating pistons to convert pressure into a rotating motion."@en ; + "https://en.wikipedia.org/w/index.php?title=Reciprocating_engine&oldid=1057783145"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000634 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000344.ttl b/src/cco-iris/ont00000344.ttl new file mode 100644 index 00000000..761ae64a --- /dev/null +++ b/src/cco-iris/ont00000344.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000171 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000344 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Surfactant Artifact Function"@en ; + "An Emulsifier Artifact Function that is realized in a process that lowers the surface tension between two liquids or between a liquid and a solid."@en ; + "https://en.wikipedia.org/w/index.php?title=Surfactant&oldid=1063693411"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001281 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001299 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000345.ttl b/src/cco-iris/ont00000345.ttl new file mode 100644 index 00000000..4e40a97e --- /dev/null +++ b/src/cco-iris/ont00000345.ttl @@ -0,0 +1,72 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000078 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000345 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Measuring"@en ; + "A Planned Act that involves determining the extent, dimensions, quanity, or quality of an Entity relative to some standard."@en ; + "putting an object on a scale to measure its weight in kilograms" , + "rating Hollywood movies on a 1 to 5 star scale" , + "using a tape measure to determine the height and width of a doorway in inches" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000636 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001330 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000346.ttl b/src/cco-iris/ont00000346.ttl new file mode 100644 index 00000000..75ea2520 --- /dev/null +++ b/src/cco-iris/ont00000346.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000346 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication Instrument"@en ; + "A Material Artifact that is designed to facilitate communication between at least two entities."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000690 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000825 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000903 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000918 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000347.ttl b/src/cco-iris/ont00000347.ttl new file mode 100644 index 00000000..5d3eb1c2 --- /dev/null +++ b/src/cco-iris/ont00000347.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000347 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electronic Bond"@en ; + "A Bond that consists of Bytes."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001159 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000348.ttl b/src/cco-iris/ont00000348.ttl new file mode 100644 index 00000000..fd104b60 --- /dev/null +++ b/src/cco-iris/ont00000348.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000348 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Filter"@en ; + "A Material Artifact that bears a Filter Function."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001999 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000349.ttl b/src/cco-iris/ont00000349.ttl new file mode 100644 index 00000000..d993d075 --- /dev/null +++ b/src/cco-iris/ont00000349.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000349 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Police Station"@en ; + "A Public Safety Facility that is designed for the professional and clerical processes of a local police force."@en ; + "https://en.wikipedia.org/w/index.php?title=Police_station&oldid=1056208781"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000479 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000350.ttl b/src/cco-iris/ont00000350.ttl new file mode 100644 index 00000000..11571c6a --- /dev/null +++ b/src/cco-iris/ont00000350.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000350 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cooling System"@en ; + "An Environment Control System that is designed to cool the air or objects in a Site."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000453 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000524 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001018 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000351.ttl b/src/cco-iris/ont00000351.ttl new file mode 100644 index 00000000..3642ba8d --- /dev/null +++ b/src/cco-iris/ont00000351.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000133 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000351 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Commanding"@en ; + "An Act of Directive Communication that exercises authoritative control or power over another agent's actions."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=commanding (Edited 08-22-2016)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000352.ttl b/src/cco-iris/ont00000352.ttl new file mode 100644 index 00000000..fa65d2ff --- /dev/null +++ b/src/cco-iris/ont00000352.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000352 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Satellite Artifact"@en ; + "A Spacecraft that is designed to Orbit a Space Object (typically Earth)."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001139 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000353.ttl b/src/cco-iris/ont00000353.ttl new file mode 100644 index 00000000..243e95dd --- /dev/null +++ b/src/cco-iris/ont00000353.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000353 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Research Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact is used to perform research on a specified entity or class of entities."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000354.ttl b/src/cco-iris/ont00000354.ttl new file mode 100644 index 00000000..66eb6818 --- /dev/null +++ b/src/cco-iris/ont00000354.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000354 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Testifying"@en ; + "An Act of Representative Communication performed by stating one's personal knowledge or belief."@en ; + "http://www.merriam-webster.com/dictionary/testify" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000355.ttl b/src/cco-iris/ont00000355.ttl new file mode 100644 index 00000000..dce6ae24 --- /dev/null +++ b/src/cco-iris/ont00000355.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000355 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Refracting Optical Telescope"@en ; + "Refracting Telescope"@en , + "Refractor"@en ; + "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via refraction through the use of one or more Lenses to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Refracting_telescope&oldid=1059975066"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001009 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000356.ttl b/src/cco-iris/ont00000356.ttl new file mode 100644 index 00000000..2d69becc --- /dev/null +++ b/src/cco-iris/ont00000356.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000356 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Publishing Mass Media Article"@en ; + "An Act of Mass Media Communication involving the preparation and public issuance of a non-fictional essay, especially one included with others in a newspaper, magazine, journal, etc."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000588 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000357.ttl b/src/cco-iris/ont00000357.ttl new file mode 100644 index 00000000..0fe78aad --- /dev/null +++ b/src/cco-iris/ont00000357.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000065 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000357 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Motion"@en ; + "A Planned Act by which an Agent causes the position or location of some Object to change."@en ; + "http://www.merriam-webster.com/dictionary/motion" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000584 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000358.ttl b/src/cco-iris/ont00000358.ttl new file mode 100644 index 00000000..f8e47542 --- /dev/null +++ b/src/cco-iris/ont00000358.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000125 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000358 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Region Bounding Box"@en ; + "A Geospatial Polygon that has some Geospatial Region as a non-tangential proper part."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000373 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001130 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000359.ttl b/src/cco-iris/ont00000359.ttl new file mode 100644 index 00000000..14b32fbb --- /dev/null +++ b/src/cco-iris/ont00000359.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000132 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000223 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000359 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Julian Date"@en ; + "A Time of Day as specified according to the Julian Calendar using the Julian Date epoch."@en ; + "JD" ; + "https://www.defit.org/julian-date/" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000498 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000833 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000360.ttl b/src/cco-iris/ont00000360.ttl new file mode 100644 index 00000000..3fee0f42 --- /dev/null +++ b/src/cco-iris/ont00000360.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000360 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wounded Stasis"@en ; + "Wounded"@en ; + "A Damaged Stasis in which a Person or other organism is the bearer of a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to an injuring event."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001289 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000361.ttl b/src/cco-iris/ont00000361.ttl new file mode 100644 index 00000000..7a937087 --- /dev/null +++ b/src/cco-iris/ont00000361.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000361 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Function"@en ; + "An Increase of Disposition in which some Independent Continuant has an increase of some Function that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001356 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000362.ttl b/src/cco-iris/ont00000362.ttl new file mode 100644 index 00000000..a85bbb1e --- /dev/null +++ b/src/cco-iris/ont00000362.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000362 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Most rocket engines are also Internal Combustion Engines, however non-combusting forms also exist. For example, an untied balloon full of air that is released and allowed to zoom around the room may be both a Rocket Engine and a Physically Powered Engine."@en ; + rdfs:label "Rocket Engine"@en ; + "Thruster"@en ; + "A Jet Engine that is designed to use only stored Rocket Propellant to form a high speed propulsive jet in order to generate Thrust."@en ; + "https://en.wikipedia.org/w/index.php?title=Rocket_engine&oldid=1063879464"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000533 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000363.ttl b/src/cco-iris/ont00000363.ttl new file mode 100644 index 00000000..304e1ff4 --- /dev/null +++ b/src/cco-iris/ont00000363.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000363 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wireless Telecommunication Network"@en ; + "Wireless Network"@en ; + "A Telecommunication Network that uses wireless connections to connect Telecommunication Network Nodes."@en ; + "https://en.wikipedia.org/w/index.php?title=Wireless_network&oldid=1060257041"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000998 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001095 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000364.ttl b/src/cco-iris/ont00000364.ttl new file mode 100644 index 00000000..9fab3c5c --- /dev/null +++ b/src/cco-iris/ont00000364.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000364 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pneumatic Motor"@en ; + "Air Motor"@en , + "Compressed Air Engine"@en ; + "A Physically Powered Engine that converts potential energy stored in a portion of compressed air into mechanical energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001221 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000365.ttl b/src/cco-iris/ont00000365.ttl new file mode 100644 index 00000000..04a4f953 --- /dev/null +++ b/src/cco-iris/ont00000365.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000161 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000365 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "x-Axis"@en ; + "A Coordinate System Axis designated by the variable 'x'."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000366.ttl b/src/cco-iris/ont00000366.ttl new file mode 100644 index 00000000..3b843948 --- /dev/null +++ b/src/cco-iris/ont00000366.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000366 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Information Processing"@en ; + "A Planned Act in which one or more input Information Content Entities are received, manipulated, transferred, or stored by an Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001158 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000367.ttl b/src/cco-iris/ont00000367.ttl new file mode 100644 index 00000000..093517e7 --- /dev/null +++ b/src/cco-iris/ont00000367.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000367 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Military Training Instruction"@en ; + "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Military Organization by imparting knowledge of the tactics, techniques, and/or strategies of Military Operations to an Agent either directly or indirectly through some communication medium."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001075 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000368.ttl b/src/cco-iris/ont00000368.ttl new file mode 100644 index 00000000..09018bc1 --- /dev/null +++ b/src/cco-iris/ont00000368.ttl @@ -0,0 +1,85 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000148 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000296 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000368 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Rotational Motion"@en ; + "Rotation"@en ; + "A Motion Process in which an Object moves in a Circular or Elliptical Path around an Axis of Rotation."@en ; + "https://en.wikipedia.org/w/index.php?title=Rotation&oldid=1055998344"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001109 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001133 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001184 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001285 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000369.ttl b/src/cco-iris/ont00000369.ttl new file mode 100644 index 00000000..cfd31432 --- /dev/null +++ b/src/cco-iris/ont00000369.ttl @@ -0,0 +1,51 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000369 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Priority Measurement Information Content Entity"@en ; + "Criticality Measurement"@en , + "Importance Measurement"@en , + "Priority Measurement"@en ; + "An Ordinal Measurement Information Content Entity that is a measurement of the relative importance of an entity."@en ; + "low, normal, high, urgent, or immediate priority" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000370.ttl b/src/cco-iris/ont00000370.ttl new file mode 100644 index 00000000..b32d9506 --- /dev/null +++ b/src/cco-iris/ont00000370.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000123 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000370 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Condoling"@en ; + "An Act of Expressive Communication performed by expressing sympathy or sorrow."@en ; + "http://www.thefreedictionary.com/condoling" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000371.ttl b/src/cco-iris/ont00000371.ttl new file mode 100644 index 00000000..3926cd49 --- /dev/null +++ b/src/cco-iris/ont00000371.ttl @@ -0,0 +1,52 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000371 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "An Act of Prediction may involve the use of some or no relevant information. An Act of Prediction that utilizes relevant information may also be (or at least involve) an Act of Estimation. Hence, these two classes are not disjoint. Furthermore, neither class subsumes the other since estimates can be made about existing entities and not all predictions produce measurements (e.g. predicting that it will rain tomorrow)."@en ; + rdfs:label "Act of Prediction"@en ; + "A Planned Act that involves the generation of a Predictive Information Content entity that is intended to describe an uncertain possible future event, value, entity, or attribute of an entity."@en ; + "a chess master predicting the next 8 moves his opponent will make" , + "predicting that a particular stock will double in value over the next fiscal quarter" , + "using sample exit polls data to predict the winners of an election" ; + "Predictions can only be made about things that are not yet the case (i.e. future things) and are further restricted to being about things that do not have a probability of either 1 (necessary) or 0 (impossible). For example, assuming that no organism is immortal, one cannot predict of a given organism that it will eventually die; however, one may predict uncertain things about the organism's eventual death, such as its precise cause or time."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000372.ttl b/src/cco-iris/ont00000372.ttl new file mode 100644 index 00000000..463b1671 --- /dev/null +++ b/src/cco-iris/ont00000372.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000372 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Transformer Rectifier Unit"@en ; + "TRU"@en ; + "A Material Artifact that is designed to perform the functions of both a Rectifier and a Transformer."@en ; + "http://www.skybrary.aero/index.php/Transformer_Rectifier_Unit_(TRU)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000373.ttl b/src/cco-iris/ont00000373.ttl new file mode 100644 index 00000000..5b0d3e9f --- /dev/null +++ b/src/cco-iris/ont00000373.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000147 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000125 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000358 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000373 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Position"@en ; + "A Fiat Point that is at or near the surface of the Earth and fixed according to some Geospatial Coordinate Reference System."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000374.ttl b/src/cco-iris/ont00000374.ttl new file mode 100644 index 00000000..29351ed9 --- /dev/null +++ b/src/cco-iris/ont00000374.ttl @@ -0,0 +1,73 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000061 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000374 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Volumetric Flow Rate"@en ; + "A Measurement Unit of Flow that is used as a standard for measurement of the rate at which volumes of fluid pass per unit time."@en ; + "cubic metres per second, standard cubic centimeters per minute, cubic feet per second, gallons per minute" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001530 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001579 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001644 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001681 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001686 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000375.ttl b/src/cco-iris/ont00000375.ttl new file mode 100644 index 00000000..2ebf657f --- /dev/null +++ b/src/cco-iris/ont00000375.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000375 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Warehouse"@en ; + "A Storage Facility that is designed to store commercial goods."@en ; + "https://en.wikipedia.org/w/index.php?title=Warehouse&oldid=1063721454"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000376.ttl b/src/cco-iris/ont00000376.ttl new file mode 100644 index 00000000..9bfafc9e --- /dev/null +++ b/src/cco-iris/ont00000376.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000376 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Gallium Arsenide"@en ; + "Portion of GaAs"@en ; + "A Portion of Material that is composed of a compound of the elements gallium and arsenic."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000457 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000377.ttl b/src/cco-iris/ont00000377.ttl new file mode 100644 index 00000000..685b79a6 --- /dev/null +++ b/src/cco-iris/ont00000377.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000377 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Disability"@en ; + "A Quality inhering in an Agent by virtue a physical or mental condition that limits the Agent's movements, senses, or activities."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000378.ttl b/src/cco-iris/ont00000378.ttl new file mode 100644 index 00000000..fe494fd1 --- /dev/null +++ b/src/cco-iris/ont00000378.ttl @@ -0,0 +1,139 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000082 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000196 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Color"@en ; + "An Optical Property that inheres in a bearer in virtue of that bearer's Color Hue, Color Saturation and Color Brightness."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000439 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000450 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000528 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000784 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000797 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000818 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000872 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000913 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000975 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001079 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001113 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001142 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001189 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001225 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001277 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001333 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001349 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001354 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001377 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000379.ttl b/src/cco-iris/ont00000379.ttl new file mode 100644 index 00000000..743ca104 --- /dev/null +++ b/src/cco-iris/ont00000379.ttl @@ -0,0 +1,70 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000151 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000354 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000379 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Examples: affirming, alleging, announcing, answering, attributing, claiming, classifying, concurring, confirming, conjecturing, denying, disagreeing, disclosing, disputing, identifying, informing, insisting, predicting, ranking, reporting, stating, stipulating"@en ; + rdfs:label "Act of Representative Communication"@en ; + "An Act of Communication that commits a speaker to the truth of the expressed proposition."@en ; + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000863 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001021 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001261 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000380.ttl b/src/cco-iris/ont00000380.ttl new file mode 100644 index 00000000..1069e41f --- /dev/null +++ b/src/cco-iris/ont00000380.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000305 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000380 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pressure"@en ; + "A Force that is applied perpendicular to the surface of an Object per unit area over which that Force is distributed."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000570 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000381.ttl b/src/cco-iris/ont00000381.ttl new file mode 100644 index 00000000..2bac383c --- /dev/null +++ b/src/cco-iris/ont00000381.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000381 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Weapon Manufacturing Facility"@en ; + "A Factory that is designed to produce or assemble weapons."@en ; + "https://en.wikipedia.org/w/index.php?title=Arms_industry&oldid=1063811497"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000782 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000382.ttl b/src/cco-iris/ont00000382.ttl new file mode 100644 index 00000000..178a6890 --- /dev/null +++ b/src/cco-iris/ont00000382.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000382 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spreadsheet"@en ; + "An Information Bearing Artifact that is designed to bear some Information Content Entity in an interactive, tabular form."@en ; + "https://en.wikipedia.org/w/index.php?title=Spreadsheet&oldid=1064060503"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000383.ttl b/src/cco-iris/ont00000383.ttl new file mode 100644 index 00000000..3383a211 --- /dev/null +++ b/src/cco-iris/ont00000383.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000383 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Family"@en ; + "A Family composed of parents and their children."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000837 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000384.ttl b/src/cco-iris/ont00000384.ttl new file mode 100644 index 00000000..3258b790 --- /dev/null +++ b/src/cco-iris/ont00000384.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000384 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rectilinear Motion"@en ; + "Linear Motion"@en ; + "A Translational Motion process in which an Object moves along a straight path."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000789 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000385.ttl b/src/cco-iris/ont00000385.ttl new file mode 100644 index 00000000..49b2e868 --- /dev/null +++ b/src/cco-iris/ont00000385.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000385 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wide"@en ; + "Broad"@en , + "Fat"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly larger in proportion to its length or height."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000386.ttl b/src/cco-iris/ont00000386.ttl new file mode 100644 index 00000000..697d5d39 --- /dev/null +++ b/src/cco-iris/ont00000386.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000386 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Essentially, webcasting is “broadcasting” over the Internet."@en ; + rdfs:label "Webcast"@en ; + "Act of Webcasting"@en ; + "An Act of Communciation by Media transmitted to an audience over the Internet using streaming media technology to distribute a single content source that may be distributed live or on demand."@en ; + "https://en.wikipedia.org/w/index.php?title=Webcast&oldid=1062685084"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000387.ttl b/src/cco-iris/ont00000387.ttl new file mode 100644 index 00000000..8a984b0a --- /dev/null +++ b/src/cco-iris/ont00000387.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000026 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000387 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Axis of Rotation"@en ; + "Rotational Axis"@en ; + "A One-Dimensional Spatial Region defined by the line around which a spinning body rotates."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000393 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001035 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001106 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000388.ttl b/src/cco-iris/ont00000388.ttl new file mode 100644 index 00000000..df6f87ee --- /dev/null +++ b/src/cco-iris/ont00000388.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000388 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Citizen"@en ; + "A Person who is the bearer of some Citizen Role."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000987 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000389.ttl b/src/cco-iris/ont00000389.ttl new file mode 100644 index 00000000..79f01f98 --- /dev/null +++ b/src/cco-iris/ont00000389.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000389 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Buying"@en ; + "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Buyer) to acquire ownership of a good from another Agent (the Seller)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001334 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000390.ttl b/src/cco-iris/ont00000390.ttl new file mode 100644 index 00000000..7db9e9c7 --- /dev/null +++ b/src/cco-iris/ont00000390.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000006 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000390 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Spatial Region Identifier"@en ; + "A Designative Information Content Entity that designates some Spatial Region."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000829 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000391.ttl b/src/cco-iris/ont00000391.ttl new file mode 100644 index 00000000..dfecd660 --- /dev/null +++ b/src/cco-iris/ont00000391.ttl @@ -0,0 +1,57 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000391 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 1–0.1 mm"@en ; + rdfs:label "Tremendously High Frequency"@en ; + "ITU Band Number 12"@en , + "Submillimeter Band Frequency"@en , + "Terahertz Radiation Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 300 GHz and 3 THz."@en ; + "THF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000754 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000392.ttl b/src/cco-iris/ont00000392.ttl new file mode 100644 index 00000000..66f062bb --- /dev/null +++ b/src/cco-iris/ont00000392.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000279 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000392 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Allegiance Role"@en ; + "A Role that inheres in an Agent by virtue of the support it has committed to provide to another Agent when that Agent is involved in a conflict."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000486 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000587 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000393.ttl b/src/cco-iris/ont00000393.ttl new file mode 100644 index 00000000..c25d5c28 --- /dev/null +++ b/src/cco-iris/ont00000393.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000387 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000393 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Yaw Axis"@en ; + "Vertical Axis"@en ; + "An Axis of Rotation that passes through the center of an object's Mass from the top to the bottom and is perpendicular to the direction of the object's motion. For objects in Orbit, the Yaw Axis passes through the Barycenter of its Orbit."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000394.ttl b/src/cco-iris/ont00000394.ttl new file mode 100644 index 00000000..83077dbb --- /dev/null +++ b/src/cco-iris/ont00000394.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000333 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000394 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Internal Combustion Engine"@en ; + "A Combustion Engine that is designed to have an internal Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy that is then converted into mechanical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Internal_combustion_engine&oldid=1063281505"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000746 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000807 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001024 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000395.ttl b/src/cco-iris/ont00000395.ttl new file mode 100644 index 00000000..79ff3ae9 --- /dev/null +++ b/src/cco-iris/ont00000395.ttl @@ -0,0 +1,85 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000020 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000395 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Specifically Dependent Continuant"@en ; + "A Gain of Dependent Continuant in which some Independent Continuant becomes the bearer of some Specifically Dependent Continuant."@en ; + "A Person becomes pregnant (gain of quality), A person becomes forgetful (gain of disposition), A vehicle becomes amphibious (gain of function), A Person becomes a Database Administrator (gain of role)." ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000554 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000642 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001068 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000396.ttl b/src/cco-iris/ont00000396.ttl new file mode 100644 index 00000000..fb08eca0 --- /dev/null +++ b/src/cco-iris/ont00000396.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000396 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 100,000–10,000 km"@en ; + rdfs:label "Extremely Low Frequency"@en ; + "ITU Band Number 1"@en ; + "A Radio Frequency that is between 3 and 30 Hz."@en ; + "ELF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000397.ttl b/src/cco-iris/ont00000397.ttl new file mode 100644 index 00000000..cb95f00a --- /dev/null +++ b/src/cco-iris/ont00000397.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000397 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Combustion Chamber"@en ; + "Burner"@en , + "Combustor"@en , + "Flame Holder"@en ; + "A Material Artifact that is designed to wholly or partially bound an internal Site where a Combustion process is intended to occur."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000398.ttl b/src/cco-iris/ont00000398.ttl new file mode 100644 index 00000000..4a1ac35f --- /dev/null +++ b/src/cco-iris/ont00000398.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001912 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001997 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000275 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000398 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reference System"@en ; + "A Descriptive Information Content Entity that describes a set of standards for organizing and understanding data of the specified type or domain."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001205 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000399.ttl b/src/cco-iris/ont00000399.ttl new file mode 100644 index 00000000..47d33074 --- /dev/null +++ b/src/cco-iris/ont00000399.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000008 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000203 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000073 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000399 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Temporal Region Identifier"@en ; + "A Designative Information Content Entity that designates some Temporal Region."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000540 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000400.ttl b/src/cco-iris/ont00000400.ttl new file mode 100644 index 00000000..b35820c8 --- /dev/null +++ b/src/cco-iris/ont00000400.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000400 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Park"@en ; + "An Anthropogenic Feature that is a bounded area of land, or water, usually in its natural or semi-natural (landscaped) state and set aside for some purpose, usually to do with recreation or conservation."@en ; + "https://en.wikipedia.org/w/index.php?title=Park&oldid=1061073992"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001197 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000401.ttl b/src/cco-iris/ont00000401.ttl new file mode 100644 index 00000000..1a6ee51d --- /dev/null +++ b/src/cco-iris/ont00000401.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000008 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000401 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fundamental Frequency"@en ; + "A Sound Frequency that is the lowest Frequency of a Sound Wave."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000402.ttl b/src/cco-iris/ont00000402.ttl new file mode 100644 index 00000000..1f015aa1 --- /dev/null +++ b/src/cco-iris/ont00000402.ttl @@ -0,0 +1,89 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000123 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000133 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000379 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Communication"@en ; + "A Planned Act in which some Information Content Entity is transferred from some Agent to Another."@en ; + "https://en.wikipedia.org/w/index.php?title=Communication&oldid=1063752020"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000588 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000875 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000971 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001162 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001374 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000403.ttl b/src/cco-iris/ont00000403.ttl new file mode 100644 index 00000000..271afadc --- /dev/null +++ b/src/cco-iris/ont00000403.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000403 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Diffraction Artifact Function"@en ; + "An Artifact Function that is realized by an Artifact participating in a diffraction event in which the Artifact forces a wave to bend around the corners of an obstacle or aperture into the region of geometrical shadow of the obstacle."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000404.ttl b/src/cco-iris/ont00000404.ttl new file mode 100644 index 00000000..c9d7abfe --- /dev/null +++ b/src/cco-iris/ont00000404.ttl @@ -0,0 +1,72 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000044 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000084 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000404 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Iris"@en ; + "A Bodily Component that consists of the part of an Eye that is a pigmented, round, contractile membrane, suspended between the cornea and lens and perforated by the pupil, and which canonically regulates the amount of light entering the Eye."@en ; + "http://www.thefreedictionary.com/iris" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000500 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000405.ttl b/src/cco-iris/ont00000405.ttl new file mode 100644 index 00000000..b3c77b06 --- /dev/null +++ b/src/cco-iris/ont00000405.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000126 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000134 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000405 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Second-Order Administrative Region"@en ; + "A Government Domain that is a subdivision of a First-Order Administrative Region."@en ; + "http://www.geonames.org/export/codes.html" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000406.ttl b/src/cco-iris/ont00000406.ttl new file mode 100644 index 00000000..9b752488 --- /dev/null +++ b/src/cco-iris/ont00000406.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000406 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Geocoordinate"@en ; + "A Measurement Unit specifying the geospatial coordinates of a location."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000735 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000407.ttl b/src/cco-iris/ont00000407.ttl new file mode 100644 index 00000000..208527b5 --- /dev/null +++ b/src/cco-iris/ont00000407.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000098 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000407 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Resistance Artifact Function"@en ; + "An Electrical Artifact Function that is realized in processes in which an Artifact opposes the flow of an electric current."@en ; + "https://en.wikipedia.org/w/index.php?title=Electrical_resistivity_and_conductivity&oldid=1063749049"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000408.ttl b/src/cco-iris/ont00000408.ttl new file mode 100644 index 00000000..7e6f3314 --- /dev/null +++ b/src/cco-iris/ont00000408.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000408 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Government Organization"@en ; + "An Organization that is part of a Government and is responsible for the oversight or administration of specific governmental functions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001335 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000409.ttl b/src/cco-iris/ont00000409.ttl new file mode 100644 index 00000000..aec1b595 --- /dev/null +++ b/src/cco-iris/ont00000409.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000409 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spark Ignition System"@en ; + "An Ignition System that is designed to produce a spark in order to initiate an Ignition process."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000742 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000410.ttl b/src/cco-iris/ont00000410.ttl new file mode 100644 index 00000000..c9e7a751 --- /dev/null +++ b/src/cco-iris/ont00000410.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000041 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000180 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000331 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000336 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000410 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Residential Facility"@en ; + "A Facility that is designed to house one or more Persons."@en ; + "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000411.ttl b/src/cco-iris/ont00000411.ttl new file mode 100644 index 00000000..d8ec7a76 --- /dev/null +++ b/src/cco-iris/ont00000411.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000411 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Speed Measurement Artifact Function"@en ; + "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Speed of a specified object's or class of objects' Motion."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001100 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000412.ttl b/src/cco-iris/ont00000412.ttl new file mode 100644 index 00000000..29371878 --- /dev/null +++ b/src/cco-iris/ont00000412.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000412 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Oxidizer Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in a process in which electrons are removed from a reactant in a redox reaction."@en ; + "https://en.wikipedia.org/w/index.php?title=Redox&oldid=1063866348"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000791 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000413.ttl b/src/cco-iris/ont00000413.ttl new file mode 100644 index 00000000..91753ad7 --- /dev/null +++ b/src/cco-iris/ont00000413.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000304 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000413 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electron Microscope"@en ; + "A Microscope that is designed to use a beam of accelerated electrons to illuminate the target and produce a significantly enlarged image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Electron_microscope&oldid=1060512240"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000414.ttl b/src/cco-iris/ont00000414.ttl new file mode 100644 index 00000000..75cf402b --- /dev/null +++ b/src/cco-iris/ont00000414.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000414 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Square Waveform"@en ; + "A Waveform that is characterized by a square shape due to the near-instantaneous transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001286 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000415.ttl b/src/cco-iris/ont00000415.ttl new file mode 100644 index 00000000..6f1a38ac --- /dev/null +++ b/src/cco-iris/ont00000415.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000415 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Anti-Microbial Artifact Function"@en ; + "A Pesticide Artifact Function that is realized in a process which causes illness in, or the death of, a microorganism."@en ; + "https://en.wikipedia.org/w/index.php?title=Antimicrobial&oldid=1064100151"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000671 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000762 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000828 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000416.ttl b/src/cco-iris/ont00000416.ttl new file mode 100644 index 00000000..3bcb510c --- /dev/null +++ b/src/cco-iris/ont00000416.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000416 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Publishing Mass Media Press Release"@en ; + "An Act of Mass Media Communication involving the preparation and public issuance of an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000588 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000417.ttl b/src/cco-iris/ont00000417.ttl new file mode 100644 index 00000000..28cbf242 --- /dev/null +++ b/src/cco-iris/ont00000417.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000417 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prosthetic Hand"@en ; + "A Prosthesis that is designed to replace a missing hand."@en ; + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000715 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000418.ttl b/src/cco-iris/ont00000418.ttl new file mode 100644 index 00000000..0e9c6073 --- /dev/null +++ b/src/cco-iris/ont00000418.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000005 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000418 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Biographical Life"@en ; + "An Act composed of the Life Events that occur during the course of existence of an Agent (i.e. Person or Organization)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000419.ttl b/src/cco-iris/ont00000419.ttl new file mode 100644 index 00000000..c7bd2264 --- /dev/null +++ b/src/cco-iris/ont00000419.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000077 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000419 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Part Number"@en ; + "A Code Identifier that designates a type of part whose instances are designed to be part of some Artifact."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000420.ttl b/src/cco-iris/ont00000420.ttl new file mode 100644 index 00000000..5620de4a --- /dev/null +++ b/src/cco-iris/ont00000420.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000117 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000420 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Computer"@en ; + "An Information Processing Artifact that is designed to execute an arbitrary set of arithmetic or logical operations automatically."@en ; + "https://en.wikipedia.org/w/index.php?title=Computer&oldid=1061553332"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000421.ttl b/src/cco-iris/ont00000421.ttl new file mode 100644 index 00000000..ad12c37d --- /dev/null +++ b/src/cco-iris/ont00000421.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000330 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000421 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Power Plant"@en ; + "A Thermal Power Plant that is designed to produce heat by means of a nuclear reactor, which is then converted to electrical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Nuclear_power_plant&oldid=1062752651"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000422.ttl b/src/cco-iris/ont00000422.ttl new file mode 100644 index 00000000..157c1af8 --- /dev/null +++ b/src/cco-iris/ont00000422.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000022 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000422 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication Reception Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact is used to receive information that has been transmitted for the purpose of communiction."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000886 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000423.ttl b/src/cco-iris/ont00000423.ttl new file mode 100644 index 00000000..8a4cadfc --- /dev/null +++ b/src/cco-iris/ont00000423.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000423 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motor Vehicle Manufacturing Facility"@en ; + "A Factory that is designed to manufacture automobiles."@en ; + "https://en.wikipedia.org/w/index.php?title=Automotive_industry&oldid=1061661751"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000782 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000424.ttl b/src/cco-iris/ont00000424.ttl new file mode 100644 index 00000000..e876187f --- /dev/null +++ b/src/cco-iris/ont00000424.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000424 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sharp"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a fine point or thin edge."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000425.ttl b/src/cco-iris/ont00000425.ttl new file mode 100644 index 00000000..817357f0 --- /dev/null +++ b/src/cco-iris/ont00000425.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000425 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "A Gregorian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.2425 Gregorian Days. The Gregorian Year is based upon the vernal equinox year. Unless otherwise stated, instances of Calendar Year are assumed to be instances of Gregorian Year since the Gregorian Calendar is the most widely used civil Calendar System."@en ; + rdfs:label "Gregorian Year"@en ; + "A Calendar Year in the Gregorian Calendar."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000674 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000426.ttl b/src/cco-iris/ont00000426.ttl new file mode 100644 index 00000000..0c6d0ee7 --- /dev/null +++ b/src/cco-iris/ont00000426.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000274 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000426 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Personnel Force"@en ; + "An Armed Force authorized to use deadly force, and weapons, to support the interests of the Government and some or all of its Citizens."@en ; + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001276 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000427.ttl b/src/cco-iris/ont00000427.ttl new file mode 100644 index 00000000..07290cda --- /dev/null +++ b/src/cco-iris/ont00000427.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000053 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000427 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Armored Fighting Vehicle"@en ; + "A Ground Motor Vehicle that is designed to be armored and used to transport and support military personal in combat missions."@en ; + "https://en.wikipedia.org/w/index.php?title=Armoured_fighting_vehicle&oldid=1063212018"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000467 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001319 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001342 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000428.ttl b/src/cco-iris/ont00000428.ttl new file mode 100644 index 00000000..c619cb3b --- /dev/null +++ b/src/cco-iris/ont00000428.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000428 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Railway Junction"@en ; + "A Land Transportation Artifact that is designed to enable a Train to switch between the tracks of two routes."@en ; + "https://en.wikipedia.org/wiki/Junction_(rail)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001326 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000429.ttl b/src/cco-iris/ont00000429.ttl new file mode 100644 index 00000000..00fbea80 --- /dev/null +++ b/src/cco-iris/ont00000429.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000429 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Codabar Barcode"@en ; + "A One-Dimensional Barcode that consists of numbers 0-9 and the characters -$:/.+ and is used by logistics and healthcare professionals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000430.ttl b/src/cco-iris/ont00000430.ttl new file mode 100644 index 00000000..0c0d8180 --- /dev/null +++ b/src/cco-iris/ont00000430.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000430 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stable Orientation"@en ; + "A Stasis of Quality that holds during a Temporal Interval when an object maintains the same Spatial Orientation."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000850 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000431.ttl b/src/cco-iris/ont00000431.ttl new file mode 100644 index 00000000..80839c8f --- /dev/null +++ b/src/cco-iris/ont00000431.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000054 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000431 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "External Combustion Engine"@en ; + "A Combustion Engine that is designed to have an external Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy to heat the working fluid, which transfers energy to the Engine where it is converted into mechanical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=External_combustion_engine&oldid=1063941809"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000634 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000746 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000432.ttl b/src/cco-iris/ont00000432.ttl new file mode 100644 index 00000000..987e2b09 --- /dev/null +++ b/src/cco-iris/ont00000432.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000432 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Missile Launch Site"@en ; + "A Military Facility that is designed for storing and launching missiles."@en ; + "https://en.wikipedia.org/w/index.php?title=Missile_launch_facility&oldid=1062709375"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001052 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000433.ttl b/src/cco-iris/ont00000433.ttl new file mode 100644 index 00000000..12a7548d --- /dev/null +++ b/src/cco-iris/ont00000433.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000144 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000168 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000433 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Association"@en ; + "A Social Act wherein an Agent unites with some other Agent in a Planned Act, enterprise or business."@en ; + "http://en.wiktionary.org/wiki/associate" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000615 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000744 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000879 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001226 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001327 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000434.ttl b/src/cco-iris/ont00000434.ttl new file mode 100644 index 00000000..013109d8 --- /dev/null +++ b/src/cco-iris/ont00000434.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000434 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Simple Optical Lens"@en ; + "An Optical Lens consisting of a single piece of transparent material."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001207 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000435.ttl b/src/cco-iris/ont00000435.ttl new file mode 100644 index 00000000..8daa5abe --- /dev/null +++ b/src/cco-iris/ont00000435.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000435 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "A Gregorian Day is twenty-four Hours in duration."@en ; + rdfs:label "Gregorian Day"@en ; + "A Calendar Day in the Gregorian Calendar."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000921 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000436.ttl b/src/cco-iris/ont00000436.ttl new file mode 100644 index 00000000..774e9c0c --- /dev/null +++ b/src/cco-iris/ont00000436.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000304 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000436 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "X-ray Microscope"@en ; + "A Microscope that is designed to use Electromagnetic Radiation in the soft X-ray band to produce a significantly enlarged image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=X-ray_microscope&oldid=1046169107"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000437.ttl b/src/cco-iris/ont00000437.ttl new file mode 100644 index 00000000..c93d409f --- /dev/null +++ b/src/cco-iris/ont00000437.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000437 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Enhancing Artifact Function"@en ; + "An Artifact Function that is realized in processes of intensifying, increainsg, or further improving the quality, value, or extent of some entity."@en ; + "https://en.wikipedia.org/w/index.php?title=Enhancement&oldid=1003326590"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001372 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000438.ttl b/src/cco-iris/ont00000438.ttl new file mode 100644 index 00000000..9a6af108 --- /dev/null +++ b/src/cco-iris/ont00000438.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000438 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Official Documentation"@en ; + "An Act of Declarative Communication in which an Agent records some information for official use by another Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001374 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000439.ttl b/src/cco-iris/ont00000439.ttl new file mode 100644 index 00000000..ed3d5ac1 --- /dev/null +++ b/src/cco-iris/ont00000439.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000439 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Black"@en ; + "A Color that lacks any hues as parts."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000440.ttl b/src/cco-iris/ont00000440.ttl new file mode 100644 index 00000000..2c8041b0 --- /dev/null +++ b/src/cco-iris/ont00000440.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000440 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Watercraft"@en ; + "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by water travel."@en ; + "https://en.wikipedia.org/w/index.php?title=Watercraft&oldid=1054071067"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000713 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000441.ttl b/src/cco-iris/ont00000441.ttl new file mode 100644 index 00000000..579488a4 --- /dev/null +++ b/src/cco-iris/ont00000441.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000441 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Temperature"@en ; + "A Quality that inheres in a bearer in virtue of its thermal energy."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000442.ttl b/src/cco-iris/ont00000442.ttl new file mode 100644 index 00000000..7feb4e3c --- /dev/null +++ b/src/cco-iris/ont00000442.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000442 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radioactive"@en ; + "A Quality that inheres in a bearer in virtue of that bearer exhibiting or being caused by radioactivity."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000443.ttl b/src/cco-iris/ont00000443.ttl new file mode 100644 index 00000000..3f5e0f07 --- /dev/null +++ b/src/cco-iris/ont00000443.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000443 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Commercial Organization"@en ; + "An Organization that is the bearer of a Commercial Role and whose primary objective is to make a profit from the provision of goods or services."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000485 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000444.ttl b/src/cco-iris/ont00000444.ttl new file mode 100644 index 00000000..4b27a4cc --- /dev/null +++ b/src/cco-iris/ont00000444.ttl @@ -0,0 +1,73 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000444 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Energy"@en ; + "A Measurement Unit that is used as a standard for measurement of the Amount of work that is available in an object."@en ; + "ft-lbs, calorie, horsepower, kilowatt" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001391 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001560 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001563 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001653 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001689 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000445.ttl b/src/cco-iris/ont00000445.ttl new file mode 100644 index 00000000..1f52a2c0 --- /dev/null +++ b/src/cco-iris/ont00000445.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000081 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000145 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000212 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000277 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Weapon"@en ; + "A Material Artifact that is designed to destroy or inflict damage to structures or systems, or to kill or wound living things by creating specific lethal or nonlethal effects."@en ; + "Nonlethal effects include all outcomes short of death or destruction. This is captured by the fact that Damaged Stasis and Wounded Stasis are defined in terms of impairment of the Independent Continuant that participates in them."@en ; + "https://en.wikipedia.org/w/index.php?title=Weapon&oldid=1143263715"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000552 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000656 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001008 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001051 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001150 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000446.ttl b/src/cco-iris/ont00000446.ttl new file mode 100644 index 00000000..308266c4 --- /dev/null +++ b/src/cco-iris/ont00000446.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000446 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Circumference"@en ; + "A Perimeter that inheres in a circle or ellipse."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001293 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000447.ttl b/src/cco-iris/ont00000447.ttl new file mode 100644 index 00000000..5564a3cc --- /dev/null +++ b/src/cco-iris/ont00000447.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000447 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Triangular"@en ; + "A Shape Quality inhering in a bearer in virtue of it having exactly three angles and exactly three sides."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000448.ttl b/src/cco-iris/ont00000448.ttl new file mode 100644 index 00000000..04f3bd4a --- /dev/null +++ b/src/cco-iris/ont00000448.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000034 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000448 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motion Artifact Function"@en ; + "An Artifact Function that is realized in a process in which an entity changes its position with respect to time."@en ; + "https://en.wikipedia.org/wiki/Motion_(physics)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001252 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001353 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000449.ttl b/src/cco-iris/ont00000449.ttl new file mode 100644 index 00000000..25fd30e4 --- /dev/null +++ b/src/cco-iris/ont00000449.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000449 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Comment: Remuneration normally consists of salary or hourly wages, but also applies to commission, stock options, fringe benefits, etc."@en ; + rdfs:label "Act of Remuneration"@en ; + "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Employer) to compensate another Agent (the Employee) for the services they perform for the Employer."@en ; + "https://en.wikipedia.org/w/index.php?title=Remuneration&oldid=1033306001"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001334 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000450.ttl b/src/cco-iris/ont00000450.ttl new file mode 100644 index 00000000..1df729be --- /dev/null +++ b/src/cco-iris/ont00000450.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000450 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Silver Color"@en ; + "A Color that resembles Grey with the added feature of having a metallic shine."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000451.ttl b/src/cco-iris/ont00000451.ttl new file mode 100644 index 00000000..a6f28c78 --- /dev/null +++ b/src/cco-iris/ont00000451.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000451 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Collimation Artifact Function"@en ; + "An Artifact Function that is realized by an Artifact participating in a collimation event in which the Artifact narrows a beam of particles or waves by either causing the spatial cross-section of the beam to become smaller or by causing the directions of motion of the beam's constituents to be aligned in a specifc direction of Motion."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000452.ttl b/src/cco-iris/ont00000452.ttl new file mode 100644 index 00000000..95e42f6b --- /dev/null +++ b/src/cco-iris/ont00000452.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000452 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Timekeeping Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact is used to keep track of and report the current time."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000453.ttl b/src/cco-iris/ont00000453.ttl new file mode 100644 index 00000000..fac6a8d3 --- /dev/null +++ b/src/cco-iris/ont00000453.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000350 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000453 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Controlling air quality typically involves temperature control, oxygen replenishment, and removal of moisture, odor, smoke, heat, dust, airborne bacteria, carbon dioxide, and other undesired gases or particulates."@en ; + rdfs:label "Environment Control System"@en ; + "A Material Artifact that is designed to control the temperature, air quality, or other feature of a Site that is relevant to the comfort or operation of entities located within that Site."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000849 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001249 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000454.ttl b/src/cco-iris/ont00000454.ttl new file mode 100644 index 00000000..af331c93 --- /dev/null +++ b/src/cco-iris/ont00000454.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000454 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Compression Ignition System"@en ; + "An Ignition System that is designed to generate heat by compressing a portion of fuel and oxidizer mixture in order to initiate an Ignition process."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000742 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000455.ttl b/src/cco-iris/ont00000455.ttl new file mode 100644 index 00000000..0e2bfbbd --- /dev/null +++ b/src/cco-iris/ont00000455.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000455 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Ceremony"@en ; + "A Social Act of ritual significance, performed on a special occasion."@en ; + "https://en.wikipedia.org/w/index.php?title=Ceremony&oldid=1064081855"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000725 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000948 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001215 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001327 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000456.ttl b/src/cco-iris/ont00000456.ttl new file mode 100644 index 00000000..2b8d92b7 --- /dev/null +++ b/src/cco-iris/ont00000456.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000456 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Railway"@en ; + "A Land Transportation Artifact that is designed to enable Trains to transport passengers and goods."@en ; + "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001326 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000457.ttl b/src/cco-iris/ont00000457.ttl new file mode 100644 index 00000000..19b55493 --- /dev/null +++ b/src/cco-iris/ont00000457.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000091 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000255 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000376 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000457 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Material"@en ; + "A Portion of Processed Material that was produced to be used as the input for another Act of Artifact Processing."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000593 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000813 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000838 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000897 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001084 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000458.ttl b/src/cco-iris/ont00000458.ttl new file mode 100644 index 00000000..0f6ec8a0 --- /dev/null +++ b/src/cco-iris/ont00000458.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000458 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Coupling"@en ; + "A Material Artifact that is designed to connect two Shafts together at their ends for the purpose of transmitting power."@en ; + "https://en.wikipedia.org/w/index.php?title=Coupling&oldid=1055718683"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000459.ttl b/src/cco-iris/ont00000459.ttl new file mode 100644 index 00000000..e0d6523e --- /dev/null +++ b/src/cco-iris/ont00000459.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000459 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fluorescence"@en ; + "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light while absorbing shorter wavelength radiation, but not after."@en ; + "https://en.wikipedia.org/w/index.php?title=Fluorescence&oldid=1061358510"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001126 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000460.ttl b/src/cco-iris/ont00000460.ttl new file mode 100644 index 00000000..4958747b --- /dev/null +++ b/src/cco-iris/ont00000460.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000071 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000460 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Local Administrative Region"@en ; + "Locality"@en ; + "A Government Domain that delimits a local Government."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000718 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000887 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000461.ttl b/src/cco-iris/ont00000461.ttl new file mode 100644 index 00000000..56d0af2d --- /dev/null +++ b/src/cco-iris/ont00000461.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000461 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "ISSN Barcode"@en ; + "An EAN Barcode that is used to designate periodicals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000966 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000462.ttl b/src/cco-iris/ont00000462.ttl new file mode 100644 index 00000000..8d4ab313 --- /dev/null +++ b/src/cco-iris/ont00000462.ttl @@ -0,0 +1,71 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000034 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000462 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the BFO 'occupies temporal region' property) that the Entity bears the Function."@en ; + rdfs:label "Gain of Function"@en ; + "A Gain of Disposition in which some Independent Continuant becomes the bearer of some Function."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000609 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000463.ttl b/src/cco-iris/ont00000463.ttl new file mode 100644 index 00000000..d7b4a730 --- /dev/null +++ b/src/cco-iris/ont00000463.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000463 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Educational Training Instruction"@en ; + "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Educational Organization by imparting knowledge of a curriculum to an Agent either directly or indirectly through some communication medium."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001075 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000464.ttl b/src/cco-iris/ont00000464.ttl new file mode 100644 index 00000000..b6b29e3b --- /dev/null +++ b/src/cco-iris/ont00000464.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000464 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Oblong"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having an long thin shape with approximately parallel sides."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000465.ttl b/src/cco-iris/ont00000465.ttl new file mode 100644 index 00000000..8d7ba1b4 --- /dev/null +++ b/src/cco-iris/ont00000465.ttl @@ -0,0 +1,51 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000223 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000465 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment """A Day begins at midnight GMT within the Modified Julian Date reference system. The Modified Julian Date (MJD) is related to the Julian Date (JD) by the formula: +MJD = JD - 2400000.5"""@en ; + rdfs:label "Modified Julian Date"@en ; + "A Time of Day as specified according to the Julian Calendar using the Modified Julian Date epoch."@en ; + "MJD" ; + "http://aa.usno.navy.mil/data/docs/JulianDate.php" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000466.ttl b/src/cco-iris/ont00000466.ttl new file mode 100644 index 00000000..b451781a --- /dev/null +++ b/src/cco-iris/ont00000466.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000466 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Orientation Control Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Artifact is used to control the Orientation of some object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000467.ttl b/src/cco-iris/ont00000467.ttl new file mode 100644 index 00000000..c23c7c31 --- /dev/null +++ b/src/cco-iris/ont00000467.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000427 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000467 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Armored Personnel Carrier"@en ; + "An Armored Fighting Vehicle that is designed to transport infantry to the battlefield but which are not usually designed to take part in a direct-fire battle."@en ; + "APC" ; + "https://en.wikipedia.org/w/index.php?title=Armoured_personnel_carrier&oldid=1061608326"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000468.ttl b/src/cco-iris/ont00000468.ttl new file mode 100644 index 00000000..d252e82a --- /dev/null +++ b/src/cco-iris/ont00000468.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000468 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Office Building"@en ; + "A Commercial Facility that is designed as an environment for conducting commercial, professional, or bureaucratic work."@en ; + "https://en.wikipedia.org/w/index.php?title=Office&oldid=1063508719"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001102 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000469.ttl b/src/cco-iris/ont00000469.ttl new file mode 100644 index 00000000..09c91d12 --- /dev/null +++ b/src/cco-iris/ont00000469.ttl @@ -0,0 +1,97 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001900 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001913 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000275 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Coordinate Reference System"@en ; + "Geographic Coordinate System"@en ; + "A Spatial Reference System that is used to determine and identify the location of a point or object at or near the surface of the Earth."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001398 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001581 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001582 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001584 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001630 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001648 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001660 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000470.ttl b/src/cco-iris/ont00000470.ttl new file mode 100644 index 00000000..cbc1b8c9 --- /dev/null +++ b/src/cco-iris/ont00000470.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000189 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000470 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Academic Degree"@en ; + "A Certificate issued by an Educational Organization to a Person to indicate that the Person has satisfactorily completed a course of study, or as an honorary recognition of the Person's achievement."@en ; + "http://www.dictionary.com/browse/degree" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000471.ttl b/src/cco-iris/ont00000471.ttl new file mode 100644 index 00000000..4967448c --- /dev/null +++ b/src/cco-iris/ont00000471.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000471 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Warning Message"@en ; + "A Notification Message that is designed to bear an Information Content Entity that describes a possible or impending threat."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001046 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000472.ttl b/src/cco-iris/ont00000472.ttl new file mode 100644 index 00000000..782d7c2e --- /dev/null +++ b/src/cco-iris/ont00000472.ttl @@ -0,0 +1,84 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001864 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000029 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000213 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000251 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000472 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Region"@en ; + "A Site that is at or near the surface of the Earth."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000487 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001114 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001203 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000473.ttl b/src/cco-iris/ont00000473.ttl new file mode 100644 index 00000000..13a3d08b --- /dev/null +++ b/src/cco-iris/ont00000473.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000134 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000473 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Fourth-Order Administrative Region"@en ; + "A Government Domain that is a subdivision of a Third-Order Administrative Region."@en ; + "http://www.geonames.org/export/codes.html" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000474.ttl b/src/cco-iris/ont00000474.ttl new file mode 100644 index 00000000..7d8dc7cf --- /dev/null +++ b/src/cco-iris/ont00000474.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000474 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Curved"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having borders which are smoothly rounded."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000475.ttl b/src/cco-iris/ont00000475.ttl new file mode 100644 index 00000000..490cb76a --- /dev/null +++ b/src/cco-iris/ont00000475.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000049 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000475 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Cash"@en ; + "A Financial Instrument that is designed to be a ready medium of exchange."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000537 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001093 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001382 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000476.ttl b/src/cco-iris/ont00000476.ttl new file mode 100644 index 00000000..e07fe9df --- /dev/null +++ b/src/cco-iris/ont00000476.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000476 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Objective"@en ; + "A Directive Information Content Entity that prescribes some projected state that some Agent intends to achieve."@en ; + "http://en.wikipedia.org/wiki/Objective_(goal)" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000974 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000477.ttl b/src/cco-iris/ont00000477.ttl new file mode 100644 index 00000000..bba87603 --- /dev/null +++ b/src/cco-iris/ont00000477.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000477 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel Cell"@en ; + "An Electrical Power Source that consists in part of an anode, a cathode, and an electrolyte; converts chemical energy from a fuel into electricity through a chemical reaction of positively charged hydrogen ions with an oxidizing agent (typically oxygen); and, if given a continuous source of fuel and oxidizing agent, can continuously produce electricity."@en ; + "A Fuel Cell differs from a Battery in that it requires a continuous source of fuel and oxygen to sustain the chemical reaction, whereas a Battery only uses chemicals already stored inside it."@en ; + "https://en.wikipedia.org/w/index.php?title=Fuel_cell&oldid=1063586731"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001049 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000478.ttl b/src/cco-iris/ont00000478.ttl new file mode 100644 index 00000000..967bb5bc --- /dev/null +++ b/src/cco-iris/ont00000478.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000478 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cuboidal"@en ; + "A Three Dimensional Shape that inheres in a bearer in virtue of it having six Rectangular faces."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000565 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001360 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000479.ttl b/src/cco-iris/ont00000479.ttl new file mode 100644 index 00000000..d5de8897 --- /dev/null +++ b/src/cco-iris/ont00000479.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000349 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000479 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Public Safety Facility"@en ; + "A Facility that is designed for the prevention of and protection from events that could endanger, injure, or damage the general public."@en ; + "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001383 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000480.ttl b/src/cco-iris/ont00000480.ttl new file mode 100644 index 00000000..dfa48e7b --- /dev/null +++ b/src/cco-iris/ont00000480.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000480 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Life Support Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact materially affects an organism, where this causes that organism to continue living in a situation where death would otherwise occur."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000481.ttl b/src/cco-iris/ont00000481.ttl new file mode 100644 index 00000000..93bc1975 --- /dev/null +++ b/src/cco-iris/ont00000481.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000481 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Research and Development Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of producing new knowledge or of devising new applications of existing knowledge."@en ; + "https://en.wikipedia.org/w/index.php?title=Research_and_development&oldid=1062181110"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000482.ttl b/src/cco-iris/ont00000482.ttl new file mode 100644 index 00000000..4534512c --- /dev/null +++ b/src/cco-iris/ont00000482.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000289 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000482 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Synthetic Aperture Radar Imaging Artifact Function"@en ; + "A Radar Imaging Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities using the motion of a radar antenna over a targeted region to create a synthetic aperture."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000483.ttl b/src/cco-iris/ont00000483.ttl new file mode 100644 index 00000000..f6a0abc2 --- /dev/null +++ b/src/cco-iris/ont00000483.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000172 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000483 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Base"@en ; + "A Military Facility that is designed to shelter military equipment and personnel and to facilitate training and operations."@en ; + "https://en.wikipedia.org/w/index.php?title=Military_base&oldid=1047077734"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000737 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001052 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000484.ttl b/src/cco-iris/ont00000484.ttl new file mode 100644 index 00000000..66c31bd2 --- /dev/null +++ b/src/cco-iris/ont00000484.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000484 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Concave Shape"@en ; + "A Shape Quality that inheres in a bearer in virtue of the bearer having one or more cavities, such that at least one line connecting a pair of points on the surface of the bearer will lie outside."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000485.ttl b/src/cco-iris/ont00000485.ttl new file mode 100644 index 00000000..af62185b --- /dev/null +++ b/src/cco-iris/ont00000485.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000443 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000485 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Commercial Role"@en ; + "A Role that inheres in an Organization by virtue of its establishment as a for-profit business."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000486.ttl b/src/cco-iris/ont00000486.ttl new file mode 100644 index 00000000..020c3e73 --- /dev/null +++ b/src/cco-iris/ont00000486.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000392 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000486 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Neutral Role"@en ; + "An Allegiance Role that inheres in an Agent by virtue of that Agent not performing or being committed to performing Acts that have as their Objective to either support or undermine the Objectives of an Agent or Group of Agents involved in some conflict."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000666 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000487.ttl b/src/cco-iris/ont00000487.ttl new file mode 100644 index 00000000..cec1acb8 --- /dev/null +++ b/src/cco-iris/ont00000487.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000124 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000472 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000487 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Geospatial Location"@en ; + "A Geospatial Region that is at which an Entity or Event is located."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000567 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000488.ttl b/src/cco-iris/ont00000488.ttl new file mode 100644 index 00000000..650c31f6 --- /dev/null +++ b/src/cco-iris/ont00000488.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000488 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Tripod"@en ; + "A Material Artifact that consists of three legs and a platform that joins them and which is designed to support the weight and maintain the stability of objects that are attached to or rested on the platform."@en ; + "https://en.wikipedia.org/w/index.php?title=Tripod&oldid=1063988190"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000489.ttl b/src/cco-iris/ont00000489.ttl new file mode 100644 index 00000000..93905583 --- /dev/null +++ b/src/cco-iris/ont00000489.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000224 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000489 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "High Density Residential Area"@en ; + "A Populated Place which is characterized by densely contained multiple-unit living structures."@en ; + "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000490.ttl b/src/cco-iris/ont00000490.ttl new file mode 100644 index 00000000..7235d413 --- /dev/null +++ b/src/cco-iris/ont00000490.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000035 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000490 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "X-ray Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 30 petahertz and 30 exahertz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000754 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001170 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000491.ttl b/src/cco-iris/ont00000491.ttl new file mode 100644 index 00000000..23f1f5b0 --- /dev/null +++ b/src/cco-iris/ont00000491.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000491 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Detonating Artifact Function"@en ; + "An Artifact Function that is realized in processes of combustion involving a supersonic exothermic front accelerating through a medium that eventually drives a shock front propagating directly in front of it."@en ; + "https://en.wikipedia.org/w/index.php?title=Detonation&oldid=1061553336"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000492.ttl b/src/cco-iris/ont00000492.ttl new file mode 100644 index 00000000..d56ff30e --- /dev/null +++ b/src/cco-iris/ont00000492.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000492 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Email Messaging"@en ; + "Act of Emailing"@en ; + "An Act of Communication by Media in which text-based communication occurs between two or more people using personal computers or other devices using some Email Client Software conveyed over the Internet."@en ; + "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000493.ttl b/src/cco-iris/ont00000493.ttl new file mode 100644 index 00000000..77b8f56c --- /dev/null +++ b/src/cco-iris/ont00000493.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000493 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Code List"@en ; + "A List that contains an ordered sequence of Information Bearing Entities that carry Code Identifiers."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000799 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000494.ttl b/src/cco-iris/ont00000494.ttl new file mode 100644 index 00000000..0fba0749 --- /dev/null +++ b/src/cco-iris/ont00000494.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000494 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Serrated"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having multiple sharp points along a edge."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000495.ttl b/src/cco-iris/ont00000495.ttl new file mode 100644 index 00000000..2ec36029 --- /dev/null +++ b/src/cco-iris/ont00000495.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000273 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000495 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Communication Interference Artifact Function"@en ; + "A Communication Interference Artifact Function that is realized during events in which an Artifact is used to interfere with the transmission of information via radio waves."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000496.ttl b/src/cco-iris/ont00000496.ttl new file mode 100644 index 00000000..56f12883 --- /dev/null +++ b/src/cco-iris/ont00000496.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000146 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00000496 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Natural Language"@en ; + "A Language that is developed and evolves through use and repetition, rather than through conscious planning or premeditation."@en ; + "English" , + "Mandarin (Chinese)" , + "Spanish" ; + "https://en.wikipedia.org/w/index.php?title=Natural_language&oldid=1060890461"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001175 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000497.ttl b/src/cco-iris/ont00000497.ttl new file mode 100644 index 00000000..50aaf504 --- /dev/null +++ b/src/cco-iris/ont00000497.ttl @@ -0,0 +1,73 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000497 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Force"@en ; + "A Measurement Unit that is used as a standard for measurement of interactions in which the Motion or Velocity of an object is changed, unless the interaction is opposed."@en ; + "newton, dyne, pound force " ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001411 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001493 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001525 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001549 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001682 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000498.ttl b/src/cco-iris/ont00000498.ttl new file mode 100644 index 00000000..e437c36b --- /dev/null +++ b/src/cco-iris/ont00000498.ttl @@ -0,0 +1,73 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000132 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000359 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000498 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "A Julian Day begins at noon Universal Time and is twenty-four Hours in duration."@en ; + rdfs:label "Julian Day"@en ; + "A Calendar Day in the Julian Calendar."@en ; + "https://www.defit.org/julian-date/" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000749 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000921 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000499.ttl b/src/cco-iris/ont00000499.ttl new file mode 100644 index 00000000..b86c30b4 --- /dev/null +++ b/src/cco-iris/ont00000499.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000048 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000499 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wire Antenna"@en ; + "A Radio Antenna that consists primarily of a length of wire."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001054 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001138 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001230 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000500.ttl b/src/cco-iris/ont00000500.ttl new file mode 100644 index 00000000..01424d33 --- /dev/null +++ b/src/cco-iris/ont00000500.ttl @@ -0,0 +1,67 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000084 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000404 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000500 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Eye"@en ; + "A Bodily Component that consists of an organ that canonically affords the Agent it is part of with the ability to receive visual stimuli necessary for sight."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001125 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000501.ttl b/src/cco-iris/ont00000501.ttl new file mode 100644 index 00000000..9e71ad4f --- /dev/null +++ b/src/cco-iris/ont00000501.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000501 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Financial Withdrawal"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent to another Agent (the Depositor) from an account created by an earlier Act of Financial Deposit performed by the Depositor."@en ; + "http://en.wikipedia.org/wiki/Deposit_(bank)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000836 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000502.ttl b/src/cco-iris/ont00000502.ttl new file mode 100644 index 00000000..192e3e7a --- /dev/null +++ b/src/cco-iris/ont00000502.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000502 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Area Moment of Inertia"@en ; + "Measurement Unit of Second Area Moment"@en ; + "A Measurement Unit that is used as a standard for measurement of the distribution of Mass of an object with respect to an axis."@en ; + "A measure of an object’s resistance to bending or deflection."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001709 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000503.ttl b/src/cco-iris/ont00000503.ttl new file mode 100644 index 00000000..31b9c88c --- /dev/null +++ b/src/cco-iris/ont00000503.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000138 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000503 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power"@en ; + "A Process Profile that is characterized by the rate of Work, or Energy consumed, done in a given time period."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000504.ttl b/src/cco-iris/ont00000504.ttl new file mode 100644 index 00000000..cd6837ec --- /dev/null +++ b/src/cco-iris/ont00000504.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000504 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Processing Artifact Function"@en ; + "An Artifact Function that is realized by an Artifact participating in a visible light processing event."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000764 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000505.ttl b/src/cco-iris/ont00000505.ttl new file mode 100644 index 00000000..d7033a63 --- /dev/null +++ b/src/cco-iris/ont00000505.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000018 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000505 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Center of Mass"@en ; + "A Zero-Dimensional Spatial Region that is the point where the weighted position vectors of the distributed Mass of a Material Entity relative to this point sum to zero."@en ; + "https://en.wikipedia.org/w/index.php?title=Center_of_mass&oldid=1059976491"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000506.ttl b/src/cco-iris/ont00000506.ttl new file mode 100644 index 00000000..9065d105 --- /dev/null +++ b/src/cco-iris/ont00000506.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000506 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Contractor Role"@en ; + "A Role that inheres in an Agent or Group of Agents by virtue of that Agent or Group of Agents entering into a Contract to provide materials or labor to perform a service or complete a task."@en ; + "A Contractor Role differs from an Occupation Role in at least two ways. First, the Contract that binds the two parties together is not one of employment. Second, a Contractor Role is occupationally neutral in that an Agent can be contracted to perform any number of Occupational Roles."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000507.ttl b/src/cco-iris/ont00000507.ttl new file mode 100644 index 00000000..2c343307 --- /dev/null +++ b/src/cco-iris/ont00000507.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001907 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000507 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Ethnic Group"@en ; + "A Group of Persons who identify with one another based on one or more shared inherited characteristics such as language, ancestry, nationality, culture, customs, religion, or social experiences."@en ; + "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000780 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000914 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000508.ttl b/src/cco-iris/ont00000508.ttl new file mode 100644 index 00000000..d89360af --- /dev/null +++ b/src/cco-iris/ont00000508.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000508 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Near Ultraviolet Light Frequency"@en ; + "An Ultraviolet Light Frequency that is between 750 terahertz and 3 petahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000610 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000509.ttl b/src/cco-iris/ont00000509.ttl new file mode 100644 index 00000000..c8b5d735 --- /dev/null +++ b/src/cco-iris/ont00000509.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000509 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Service Provider"@en ; + "An Organization whose purpose is to provide a service to other Agents."@en ; + "https://en.wikipedia.org/w/index.php?title=Service_provider&oldid=1059415018"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000510.ttl b/src/cco-iris/ont00000510.ttl new file mode 100644 index 00000000..3f28d6e1 --- /dev/null +++ b/src/cco-iris/ont00000510.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000052 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000510 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mosque"@en ; + "A Religious Facility that is designed for Islamic worship and prayer."@en ; + "https://en.wikipedia.org/w/index.php?title=Mosque&oldid=1062609892"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000511.ttl b/src/cco-iris/ont00000511.ttl new file mode 100644 index 00000000..bc70a144 --- /dev/null +++ b/src/cco-iris/ont00000511.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000511 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Planning"@en ; + "A Planned Act that involves making a Plan to achieve some specified Objective."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000512.ttl b/src/cco-iris/ont00000512.ttl new file mode 100644 index 00000000..62c5803e --- /dev/null +++ b/src/cco-iris/ont00000512.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000512 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiation Emissivity"@en ; + "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to emit electromagnetic radiation of a given frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000628 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000513.ttl b/src/cco-iris/ont00000513.ttl new file mode 100644 index 00000000..04224567 --- /dev/null +++ b/src/cco-iris/ont00000513.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000513 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Tool Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Tool."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000514.ttl b/src/cco-iris/ont00000514.ttl new file mode 100644 index 00000000..3a47775d --- /dev/null +++ b/src/cco-iris/ont00000514.ttl @@ -0,0 +1,81 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000514 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transverse Wave Profile"@en ; + "Transverse Wave"@en ; + "A Wave Process Profile in which the displacement of participating particles is perpendicular to the direction of the Wave Process' propogation."@en ; + "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000752 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000951 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000983 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001028 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000515.ttl b/src/cco-iris/ont00000515.ttl new file mode 100644 index 00000000..5e5478a7 --- /dev/null +++ b/src/cco-iris/ont00000515.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000515 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Vehicle Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Vehicle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000516.ttl b/src/cco-iris/ont00000516.ttl new file mode 100644 index 00000000..4aa1f5f5 --- /dev/null +++ b/src/cco-iris/ont00000516.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000288 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000516 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pneumatic Power Source"@en ; + "A Power Source that is designed to generate, control, or transmit power by means of compressed air or compressed inert gases."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000517.ttl b/src/cco-iris/ont00000517.ttl new file mode 100644 index 00000000..e7c7226b --- /dev/null +++ b/src/cco-iris/ont00000517.ttl @@ -0,0 +1,100 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000027 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000149 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000386 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000492 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Communication by Media"@en ; + "An Act of Communication in which some Artifact is used to transfer an Information Bearing Entity from sender(s) to receiver(s)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000750 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000859 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000866 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001143 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001190 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001330 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000518.ttl b/src/cco-iris/ont00000518.ttl new file mode 100644 index 00000000..3129d7b7 --- /dev/null +++ b/src/cco-iris/ont00000518.ttl @@ -0,0 +1,688 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Currency"@en ; + "A Measurement Unit used in measurements of financial values."@en ; + "U.S. Dollar, Euro, Yuan, South African Rand" ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001385 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001386 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001387 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001389 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001394 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001396 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001399 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001400 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001401 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001404 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001409 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001410 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001415 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001420 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001426 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001427 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001435 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001441 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001443 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001447 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001448 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001449 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001452 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001455 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001458 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001460 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001464 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001465 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001473 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001479 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001481 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001482 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001484 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001485 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001487 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001490 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001492 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001497 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001498 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001501 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001503 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001505 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001507 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001508 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001509 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001510 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001512 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001513 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001514 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001515 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001517 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001518 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001519 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001520 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001521 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001531 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001532 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001535 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001539 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001540 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001542 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001545 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001546 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001547 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001556 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001558 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001561 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001562 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001575 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001577 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001578 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001586 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001592 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001593 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001594 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001595 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001600 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001601 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001605 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001610 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001614 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001616 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001617 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001618 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001619 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001620 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001621 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001622 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001623 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001627 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001631 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001632 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001633 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001635 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001638 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001639 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001640 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001649 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001650 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001652 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001654 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001655 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001657 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001662 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001665 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001668 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001670 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001671 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001673 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001679 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001684 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001688 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001690 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001699 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001703 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001705 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001708 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001710 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001717 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001718 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001719 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001720 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001721 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001722 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001725 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001726 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001731 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001734 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000519.ttl b/src/cco-iris/ont00000519.ttl new file mode 100644 index 00000000..25adb468 --- /dev/null +++ b/src/cco-iris/ont00000519.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000519 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 10–1 mm"@en ; + rdfs:label "Extremely High Frequency"@en ; + "ITU Band Number 11"@en , + "Millimeter Band Frequency"@en ; + "A Microwave Frequency that is between 30 and 300 GHz."@en ; + "EHF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000732 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000520.ttl b/src/cco-iris/ont00000520.ttl new file mode 100644 index 00000000..6ab7552b --- /dev/null +++ b/src/cco-iris/ont00000520.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000065 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000520 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Departure"@en ; + "An Act of Location Change that consists of the participating entity leaving its starting location such that the larger Act of Location Change is initiated."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000521.ttl b/src/cco-iris/ont00000521.ttl new file mode 100644 index 00000000..914435ba --- /dev/null +++ b/src/cco-iris/ont00000521.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000521 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Assassination"@en ; + "An Act of Murder of a prominent person."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001272 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000522.ttl b/src/cco-iris/ont00000522.ttl new file mode 100644 index 00000000..b8d60f3a --- /dev/null +++ b/src/cco-iris/ont00000522.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000294 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000522 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pulsejet Engine"@en ; + "Pulse Jet"@en , + "Pulsejet"@en ; + "An Air-Breathing Jet Engine that is capable of operating statically and uses intermittent (pulsing) Combustion of the fuel-oxidizer mixture before expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + "https://en.wikipedia.org/w/index.php?title=Pulsejet&oldid=1050473545"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000523.ttl b/src/cco-iris/ont00000523.ttl new file mode 100644 index 00000000..6158c1cb --- /dev/null +++ b/src/cco-iris/ont00000523.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000523 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loudness"@en ; + "A Sound Process Profile that is characterized by the amplitude and total energy of translated sound waves, typically on a continuum from soft to loud."@en ; + "https://byjus.com/physics/loudness-of-sound/"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000862 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000524.ttl b/src/cco-iris/ont00000524.ttl new file mode 100644 index 00000000..19953445 --- /dev/null +++ b/src/cco-iris/ont00000524.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000350 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000524 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Air Conditioning Unit"@en ; + "AC Unit"@en ; + "A Cooling System that is designed to remove excess heat and humidity from the air in an enclosed space."@en ; + "https://en.wikipedia.org/w/index.php?title=Air_conditioning&oldid=1063494896"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000525.ttl b/src/cco-iris/ont00000525.ttl new file mode 100644 index 00000000..f07d5294 --- /dev/null +++ b/src/cco-iris/ont00000525.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000525 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transparent"@en ; + "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit all or nearly all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs little or no electromagnetic radiation of that frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001384 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000526.ttl b/src/cco-iris/ont00000526.ttl new file mode 100644 index 00000000..e280ce01 --- /dev/null +++ b/src/cco-iris/ont00000526.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000526 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gamma-ray Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Gamma-rays to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000547 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000527.ttl b/src/cco-iris/ont00000527.ttl new file mode 100644 index 00000000..de9502c7 --- /dev/null +++ b/src/cco-iris/ont00000527.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000527 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Rotational Inertia"@en ; + "Measurement Unit of Moment of Inertia"@en , + "Measurement Unit of Rotational Mass"@en ; + "A Measurement Unit that is used as a standard for measurement of the distribution of Mass of an object with respect to its axis of rotation."@en ; + "A measure of an object’s resistance to change in its state of rotation."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001557 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001641 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000528.ttl b/src/cco-iris/ont00000528.ttl new file mode 100644 index 00000000..4183250c --- /dev/null +++ b/src/cco-iris/ont00000528.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000528 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "White"@en ; + "A Color of maximum brightness, the color of objects that reflect nearly all wavelengths of the visible light spectrum, thus considered achromatic."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000529.ttl b/src/cco-iris/ont00000529.ttl new file mode 100644 index 00000000..a5a38593 --- /dev/null +++ b/src/cco-iris/ont00000529.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000073 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000529 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Date Identifier"@en ; + "Day Identifier"@en ; + "A Temporal Interval Identifier that designates some Day."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000894 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001340 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000530.ttl b/src/cco-iris/ont00000530.ttl new file mode 100644 index 00000000..331df7c1 --- /dev/null +++ b/src/cco-iris/ont00000530.ttl @@ -0,0 +1,80 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000006 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000008 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000222 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000530 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Sound waves with frequencies in this range are typically audible to humans."@en ; + rdfs:label "Sonic Frequency"@en ; + "Audible Frequency"@en ; + "A Sound Frequency that is between 20 Hz and 20 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000842 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000927 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001111 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001167 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001231 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000531.ttl b/src/cco-iris/ont00000531.ttl new file mode 100644 index 00000000..8a3a7680 --- /dev/null +++ b/src/cco-iris/ont00000531.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000531 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communications Facility"@en ; + "A Facility that is designed to support processes of receiving or transmitting information."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000664 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000532.ttl b/src/cco-iris/ont00000532.ttl new file mode 100644 index 00000000..9e79c588 --- /dev/null +++ b/src/cco-iris/ont00000532.ttl @@ -0,0 +1,84 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001859 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000139 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000532 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + "2023-02-08T19:54:46-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Government of a Country"@en ; + "A Government that has legitimate authority within and is delimited by a Domain of a Country."@en ; + "Government of a Country"@en ; + "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001335 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000533.ttl b/src/cco-iris/ont00000533.ttl new file mode 100644 index 00000000..b8550d30 --- /dev/null +++ b/src/cco-iris/ont00000533.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000056 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000294 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000362 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000533 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Some (most) jet engines utilize turbines, but some do not. Most rocket engines do not utilize turbines, but some do."@en ; + rdfs:label "Jet Engine"@en ; + "A Reaction Engine that discharges a fast moving jet that generates Thrust by jet propulsion."@en ; + "https://en.wikipedia.org/w/index.php?title=Jet_engine&oldid=1060157063"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000534.ttl b/src/cco-iris/ont00000534.ttl new file mode 100644 index 00000000..afeda9cd --- /dev/null +++ b/src/cco-iris/ont00000534.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000534 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cutting Artifact Function"@en ; + "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired by being opened or divided."@en ; + "http://www.dictionary.com/browse/cutting" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001153 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000535.ttl b/src/cco-iris/ont00000535.ttl new file mode 100644 index 00000000..dcfe6d3a --- /dev/null +++ b/src/cco-iris/ont00000535.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000290 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000535 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Quality"@en ; + "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Quality that it bears."@en ; + "Weight Loss, Decreasing Temperature, decreasing color intensity, loss of structural integrity" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000536.ttl b/src/cco-iris/ont00000536.ttl new file mode 100644 index 00000000..0231f411 --- /dev/null +++ b/src/cco-iris/ont00000536.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000536 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bond Certificate"@en ; + "A Bond that consists of a Certificate."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001159 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000537.ttl b/src/cco-iris/ont00000537.ttl new file mode 100644 index 00000000..5f22112a --- /dev/null +++ b/src/cco-iris/ont00000537.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000475 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000537 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Financial Instrument"@en ; + "A Material Artifact that is designed to be a tradeable asset and that is legally sanctioned."@en ; + "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001159 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001278 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000538.ttl b/src/cco-iris/ont00000538.ttl new file mode 100644 index 00000000..f46bbfd0 --- /dev/null +++ b/src/cco-iris/ont00000538.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000538 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Defoliant Artifact Function"@en ; + "An Herbicide Artifact Function that is realized in a process that causes a plant to lose its leaves."@en ; + "https://en.wikipedia.org/w/index.php?title=Defoliant&oldid=1059494225"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000831 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000539.ttl b/src/cco-iris/ont00000539.ttl new file mode 100644 index 00000000..6d953a32 --- /dev/null +++ b/src/cco-iris/ont00000539.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000539 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Count Measurement Information Content Entity"@en ; + "A Ratio Measurement Information Content Entity that is a measurement of the number of members of some aggregate."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001022 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000540.ttl b/src/cco-iris/ont00000540.ttl new file mode 100644 index 00000000..27d6da47 --- /dev/null +++ b/src/cco-iris/ont00000540.ttl @@ -0,0 +1,81 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000203 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000223 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000399 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000540 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Temporal Instant Identifier"@en ; + "Zero-Dimensional Temporal Region Identifier"@en ; + "A Temporal Region Identifier that designates some Temporal Instant."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000827 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000541.ttl b/src/cco-iris/ont00000541.ttl new file mode 100644 index 00000000..47bb3e6f --- /dev/null +++ b/src/cco-iris/ont00000541.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000541 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Diameter"@en ; + "A One Dimensional Extent that inheres in a circle in virtue of the extent of a straight line that passes through the center of the circle and starts and ends on the circle's boundary."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001367 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000542.ttl b/src/cco-iris/ont00000542.ttl new file mode 100644 index 00000000..fb6e48e8 --- /dev/null +++ b/src/cco-iris/ont00000542.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000542 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Generically Dependent Continuant"@en ; + "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the carrier of some Generically Dependent Continuant."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000876 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000543.ttl b/src/cco-iris/ont00000543.ttl new file mode 100644 index 00000000..3262e5e4 --- /dev/null +++ b/src/cco-iris/ont00000543.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000543 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Disposition"@en ; + "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Disposition it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000854 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000982 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000544.ttl b/src/cco-iris/ont00000544.ttl new file mode 100644 index 00000000..a58ee47c --- /dev/null +++ b/src/cco-iris/ont00000544.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001936 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000544 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:comment "Although people speak of targeting a process, say, a parade, what in fact are being targeted are the material participants of that process. The disruption or ceasing of the process is the objective of some plan, but not technically a target. Only material things can be targeted for action. Even if some dependent entity is described as being the target, the material thing for which that dependent entity depends is the object of a targeting process."@en ; + rdfs:label "Target"@en ; + "A Material Entity that is the object of an Act of Targeting."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000741 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000545.ttl b/src/cco-iris/ont00000545.ttl new file mode 100644 index 00000000..a8b203fe --- /dev/null +++ b/src/cco-iris/ont00000545.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000545 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Seat of Local Government"@en ; + "City Hall"@en , + "Town Hall"@en ; + "A Government Building that is designed for the administration of a local community."@en ; + "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000946 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000546.ttl b/src/cco-iris/ont00000546.ttl new file mode 100644 index 00000000..2fd4a716 --- /dev/null +++ b/src/cco-iris/ont00000546.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000005 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000546 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Unplanned Act"@en ; + "Unintentional Act"@en ; + "An Act in which at least one Agent plays a causative role and which is not prescribed by some Objective held by any of the Agents."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000547.ttl b/src/cco-iris/ont00000547.ttl new file mode 100644 index 00000000..441b361c --- /dev/null +++ b/src/cco-iris/ont00000547.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000090 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000174 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000215 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000526 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000547 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telescope"@en ; + "An Imaging Instrument that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Electromagnetic Radiation to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000771 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000945 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001009 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000548.ttl b/src/cco-iris/ont00000548.ttl new file mode 100644 index 00000000..39c7374b --- /dev/null +++ b/src/cco-iris/ont00000548.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000548 + rdf:type owl:Class ; + rdfs:subClassOf ; + "Vulnerability | Definition of Vulnerability by Oxford Dictionary on Lexico.Com Also Meaning of Vulnerability. https://web.archive.org/web/20210118111731/https://www.lexico.com/en/definition/vulnerability. Accessed 19 Dec. 2022. " ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Vulnerability"@en ; + "A Disrupting Disposition the realization of which would disrupt a process that the bearer of the Disrupting Disposition has an interest in."@en ; + "This is defined class. A Vulnerability is indexed by the interest_in object property. A disposition can be a Vulnerability according to one index and not a Vulnerability according to another index." ; + "Vulnerability"@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000997 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000549.ttl b/src/cco-iris/ont00000549.ttl new file mode 100644 index 00000000..60a4be16 --- /dev/null +++ b/src/cco-iris/ont00000549.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000254 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000549 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Water Transportation Artifact"@en ; + "A Transportation Artifact that is fixed in place and designed to bear a Function, the realization of which is sometimes part of a process of moving Vehicles and Agents from one location to another via water."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000747 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000550.ttl b/src/cco-iris/ont00000550.ttl new file mode 100644 index 00000000..fd31c781 --- /dev/null +++ b/src/cco-iris/ont00000550.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000550 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Morning"@en ; + "A Temporal Interval that consists of the temporal regions between when the sun dawns (approximately 6:00am) and reaches its apex (approximately 12:00pm)."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000551.ttl b/src/cco-iris/ont00000551.ttl new file mode 100644 index 00000000..383e885f --- /dev/null +++ b/src/cco-iris/ont00000551.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000030 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000551 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Organism"@en ; + "An Object that is an Animal or Plant."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000562 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000871 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000552.ttl b/src/cco-iris/ont00000552.ttl new file mode 100644 index 00000000..14fce453 --- /dev/null +++ b/src/cco-iris/ont00000552.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000310 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000552 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Explosive Weapon"@en ; + "Bomb"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of a violent release of energy caused by the exothermic reaction of an explosive material."@en ; + "https://en.wikipedia.org/w/index.php?title=Explosive_weapon&oldid=1062481268"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000734 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000858 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000553.ttl b/src/cco-iris/ont00000553.ttl new file mode 100644 index 00000000..ed85f201 --- /dev/null +++ b/src/cco-iris/ont00000553.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001800 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000553 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Process Prohibition"@en ; + "A Process Regulation that prohibits some Process."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000554.ttl b/src/cco-iris/ont00000554.ttl new file mode 100644 index 00000000..53124edb --- /dev/null +++ b/src/cco-iris/ont00000554.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000004 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000013 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000395 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000554 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gain of Dependent Continuant"@en ; + "A Change in which an Independent Continuant becomes the bearer or carrier of some Dependent Continuant."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000555.ttl b/src/cco-iris/ont00000555.ttl new file mode 100644 index 00000000..b9b53ea2 --- /dev/null +++ b/src/cco-iris/ont00000555.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000135 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000555 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Enhanced Stasis"@en ; + "Enhanced"@en ; + "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has undergone improvement (i.e., an increase or gain) due to a previous action or event such that the Independent Continuant is now of greater value, usefulness, or functionality."@en ; + "http://www.thefreedictionary.com/enhance" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000556.ttl b/src/cco-iris/ont00000556.ttl new file mode 100644 index 00000000..11ff650b --- /dev/null +++ b/src/cco-iris/ont00000556.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000556 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Depending on the nature of the Flight or Mission, the Payload of a Vehicle may include cargo, passengers, flight crew, munitions, scientific instruments or experiments, or other equipment. Extra fuel, when optionally carried, is also considered part of the payload."@en ; + rdfs:label "Payload"@en ; + "A Material Entity that is transported by a Vehicle during an Act of Location Change for the purpose of being delivered to or performing one or more functions at a predefined location."@en ; + "In each case, the Payload is what provides the immediate reason for performing the Act of Location Change (e.g. transporting the passengers of a commercial airline flight to their destination; transporting food, fuel, oxygen, research equipment, and spare parts to the International Space Station; or conveying an array of sensors, cameras, and communications systems so they can operate during a Sun-Synchronous Earth Orbit)."@en ; + "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000557.ttl b/src/cco-iris/ont00000557.ttl new file mode 100644 index 00000000..ef2b547a --- /dev/null +++ b/src/cco-iris/ont00000557.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000557 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Non-Mission Capable"@en ; + "A Stasis of Mission Capability during which the participating Continuant is not capable of performing any of its primary functions for the specified Mission."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000783 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001132 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000558.ttl b/src/cco-iris/ont00000558.ttl new file mode 100644 index 00000000..6c1b12a7 --- /dev/null +++ b/src/cco-iris/ont00000558.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000099 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000558 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Visible Light Reflection Process"@en ; + "A Wave Process in which an Electromagnetic Wave with a Visible Light Frequency is reflected off a portion of matter."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000889 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000559.ttl b/src/cco-iris/ont00000559.ttl new file mode 100644 index 00000000..5d413252 --- /dev/null +++ b/src/cco-iris/ont00000559.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000241 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000559 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "QR Code"@en ; + "A Two-Dimensional Barcode that consists of numeric, alphanumeric, binary, or kanji information and is used primarily for tracking and marketing."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000560.ttl b/src/cco-iris/ont00000560.ttl new file mode 100644 index 00000000..5ccc3f83 --- /dev/null +++ b/src/cco-iris/ont00000560.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000560 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cone Shape"@en ; + "A Three Dimensional Shape that inheres in a bearer in virtue of it having a Round base that tapers smoothly to an apex."@en ; + "https://en.wikipedia.org/w/index.php?title=Cone&oldid=1058362269"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001360 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000561.ttl b/src/cco-iris/ont00000561.ttl new file mode 100644 index 00000000..7671f123 --- /dev/null +++ b/src/cco-iris/ont00000561.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000561 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Dam"@en ; + "A Material Artifact that is designed to impound surface water or underground streams."@en ; + "https://en.wikipedia.org/w/index.php?title=Dam&oldid=1053601756" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000562.ttl b/src/cco-iris/ont00000562.ttl new file mode 100644 index 00000000..3f071198 --- /dev/null +++ b/src/cco-iris/ont00000562.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000551 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000562 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Animal"@en ; + "An Organism that is multicellular, eukaryotic, heterotrophic, and capable of motility for part of its life."@en ; + "https://en.wikipedia.org/w/index.php?title=Animal&oldid=1063873549"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000563.ttl b/src/cco-iris/ont00000563.ttl new file mode 100644 index 00000000..45cf4178 --- /dev/null +++ b/src/cco-iris/ont00000563.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000563 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydrographic Feature"@en ; + "A Geographic Feature associated with water."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001081 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000564.ttl b/src/cco-iris/ont00000564.ttl new file mode 100644 index 00000000..49135b96 --- /dev/null +++ b/src/cco-iris/ont00000564.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000564 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Educational Organization"@en ; + "An Organization whose primary purpose is to provide training or otherwise facilitate learning or the acquisition of knowledge, Skills, values, beliefs, or habits."@en ; + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000565.ttl b/src/cco-iris/ont00000565.ttl new file mode 100644 index 00000000..234c5475 --- /dev/null +++ b/src/cco-iris/ont00000565.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000478 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000565 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cube Shape"@en ; + "A Cuboidal shape inhering in a bearer in virtue of it having six Square faces."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000566.ttl b/src/cco-iris/ont00000566.ttl new file mode 100644 index 00000000..eca62482 --- /dev/null +++ b/src/cco-iris/ont00000566.ttl @@ -0,0 +1,95 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000291 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000513 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000515 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Artifact Employment"@en ; + "A Planned Act of using an Artifact."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000612 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000836 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000902 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000935 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000981 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001246 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000567.ttl b/src/cco-iris/ont00000567.ttl new file mode 100644 index 00000000..c03e0b0e --- /dev/null +++ b/src/cco-iris/ont00000567.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000487 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000567 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "This is a general term that applies to both military and civilian activities, such as the Geospatial Region within which a company conducts its business."@en ; + rdfs:label "Operational Area"@en ; + "A Geospatial Location in which an Agent conducts some activity."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000568.ttl b/src/cco-iris/ont00000568.ttl new file mode 100644 index 00000000..0ad9cf83 --- /dev/null +++ b/src/cco-iris/ont00000568.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001889 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000568 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Organization Capability"@en ; + "An Agent Capability that inheres in an Organization to the extent of that Organization's capacity to realize it in Intentional Acts of a certain type."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000569.ttl b/src/cco-iris/ont00000569.ttl new file mode 100644 index 00000000..c473cbe7 --- /dev/null +++ b/src/cco-iris/ont00000569.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000569 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sensor"@en ; + "A Transducer that is designed to convert incoming energy into a output signal which reliably corresponds to changes in that energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000736 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001273 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000570.ttl b/src/cco-iris/ont00000570.ttl new file mode 100644 index 00000000..8ef1ab6f --- /dev/null +++ b/src/cco-iris/ont00000570.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000179 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000380 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000570 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Force"@en ; + "A Process Profile that is the rate of change of an object's Momentum, is the product of an object's Mass and Acceleration with respect to an inertial frame of reference, and is measured in units of Newtons (N)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001376 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000571.ttl b/src/cco-iris/ont00000571.ttl new file mode 100644 index 00000000..24faae6e --- /dev/null +++ b/src/cco-iris/ont00000571.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000571 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Article of Solid Waste"@en ; + "A Portion of Waste Material that has a low liquid content."@en ; + "https://stats.oecd.org/glossary/detail.asp?ID=2508" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000980 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000572.ttl b/src/cco-iris/ont00000572.ttl new file mode 100644 index 00000000..20eac7dc --- /dev/null +++ b/src/cco-iris/ont00000572.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000572 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sound Production"@en ; + "Sound Production Process"@en ; + "A Wave Production Process that produces a Sound Wave."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000765 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000573.ttl b/src/cco-iris/ont00000573.ttl new file mode 100644 index 00000000..945b5883 --- /dev/null +++ b/src/cco-iris/ont00000573.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000573 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Religious Training Acquisition"@en ; + "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tenets and/or practices of a religion from an Agent or communication medium that realizes a capacity derived from its affiliation with a Religious Organization."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000687 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000574.ttl b/src/cco-iris/ont00000574.ttl new file mode 100644 index 00000000..6cdea690 --- /dev/null +++ b/src/cco-iris/ont00000574.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000574 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Environmental Feature"@en ; + "A Material Entity that is either a natural or man-made feature of the environment."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001081 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001197 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000575.ttl b/src/cco-iris/ont00000575.ttl new file mode 100644 index 00000000..24b806e1 --- /dev/null +++ b/src/cco-iris/ont00000575.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000575 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Quality Specification"@en ; + "A Directive Information Content Entity that prescribes some Quality."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000693 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000919 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001304 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000576.ttl b/src/cco-iris/ont00000576.ttl new file mode 100644 index 00000000..22a911bf --- /dev/null +++ b/src/cco-iris/ont00000576.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000084 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000576 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Scalp"@en ; + "A Bodily Component that consists of the skin covering the top of the head of a human or other animal."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000577.ttl b/src/cco-iris/ont00000577.ttl new file mode 100644 index 00000000..1260728c --- /dev/null +++ b/src/cco-iris/ont00000577.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000577 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Rectifier"@en ; + "A Material Artifact that is designed to convert alternating current (AC) to direct current (DC)."@en ; + "https://en.wikipedia.org/w/index.php?title=Rectifier&oldid=1049943028"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000578.ttl b/src/cco-iris/ont00000578.ttl new file mode 100644 index 00000000..85728a98 --- /dev/null +++ b/src/cco-iris/ont00000578.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000578 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sloped"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border which is not level."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000579.ttl b/src/cco-iris/ont00000579.ttl new file mode 100644 index 00000000..8d6a46b4 --- /dev/null +++ b/src/cco-iris/ont00000579.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000579 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thin"@en ; + "Narrow"@en , + "Slender"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly smaller in proportion to its length or height."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000580.ttl b/src/cco-iris/ont00000580.ttl new file mode 100644 index 00000000..d10564e9 --- /dev/null +++ b/src/cco-iris/ont00000580.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000580 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sine Waveform"@en ; + "Sinusoidal Waveform"@en ; + "A Waveform that is characterized by a smooth curved shape due to the continuous non-linear transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001286 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000581.ttl b/src/cco-iris/ont00000581.ttl new file mode 100644 index 00000000..839d21de --- /dev/null +++ b/src/cco-iris/ont00000581.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000160 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000581 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Tool"@en ; + "A Material Artifact that is designed to assist in the performance of manual or mechanical work and not to be consumed in that process."@en ; + "https://en.wikipedia.org/w/index.php?title=Tool&oldid=1061967184"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000806 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000582.ttl b/src/cco-iris/ont00000582.ttl new file mode 100644 index 00000000..fba9a8d9 --- /dev/null +++ b/src/cco-iris/ont00000582.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000582 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Code 93 Barcode"@en ; + "A One-Dimensional Barcode that consists of up to 93 ASCII characters and is used in logistics to identify packages in retail inventory, lable electornic components, and provide supplementary delivery information."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000583.ttl b/src/cco-iris/ont00000583.ttl new file mode 100644 index 00000000..5a354c3d --- /dev/null +++ b/src/cco-iris/ont00000583.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000583 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motel"@en ; + "A Hotel that is designed to accommodate motor vehicles along with their occupants."@en ; + "https://en.wikipedia.org/w/index.php?title=Motel&oldid=1063898961"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000584.ttl b/src/cco-iris/ont00000584.ttl new file mode 100644 index 00000000..c9d33895 --- /dev/null +++ b/src/cco-iris/ont00000584.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000357 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000584 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "An Act of Position Change does not entail a change of location."@en ; + rdfs:label "Act of Position Change"@en ; + "An Act of Motion in which the position (i.e. the orientation, alignment, or arrangement) of some Object or of one or more of an Object's parts is changed by some Agent."@en ; + "a top spinning in place" , + "adjusting your posture" , + "raising your left arm" , + "swivelling your office chair to face the window" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000585.ttl b/src/cco-iris/ont00000585.ttl new file mode 100644 index 00000000..2cefd10e --- /dev/null +++ b/src/cco-iris/ont00000585.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000585 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sawtooth Waveform"@en ; + "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from minimum to maximum Amplitudes followed by a near-instantaneous transition from the maximum to minimum Amplitudes of the Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001286 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000586.ttl b/src/cco-iris/ont00000586.ttl new file mode 100644 index 00000000..8e3ffc88 --- /dev/null +++ b/src/cco-iris/ont00000586.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000238 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000586 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Controllable Pitch Propeller"@en ; + "Variable-Pitch Propeller"@en ; + "A Propeller whose blades are designed to be alterable by rotating the blades about their vertical axis by means of mechanical or hydraulic arrangement."@en ; + "https://en.wikipedia.org/w/index.php?title=Variable-pitch_propeller&oldid=1041375492"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000587.ttl b/src/cco-iris/ont00000587.ttl new file mode 100644 index 00000000..b330f695 --- /dev/null +++ b/src/cco-iris/ont00000587.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000392 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000587 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ally Role"@en ; + "An Allegiance Role that inheres in an Agent in virtue of that Agent's commitment to perform Acts that support the Objectives of a particular Agent or Group of Agents."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000860 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000588.ttl b/src/cco-iris/ont00000588.ttl new file mode 100644 index 00000000..52c2d221 --- /dev/null +++ b/src/cco-iris/ont00000588.ttl @@ -0,0 +1,79 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000121 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000356 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000416 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000588 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Mass Media Communication"@en ; + "An Act of Communication intended to reach a large audience using a medium such as the internet, television, radio, newspaper, and magazine."@en ; + "https://en.wikipedia.org/w/index.php?title=Media&oldid=1062799283"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000977 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001057 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001244 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001263 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000589.ttl b/src/cco-iris/ont00000589.ttl new file mode 100644 index 00000000..c5eee10e --- /dev/null +++ b/src/cco-iris/ont00000589.ttl @@ -0,0 +1,61 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000589 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Julian Date Fraction"@en ; + "Julian Date Time Identifier"@en , + "Julian Day Fraction"@en ; + "A Decimal Time of Day Identifier that designates an approximate Temporal Instant that is part of some Julian Day."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000833 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000973 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000590.ttl b/src/cco-iris/ont00000590.ttl new file mode 100644 index 00000000..dcbd4e10 --- /dev/null +++ b/src/cco-iris/ont00000590.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000590 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Convex Shape"@en ; + "A Shape Quality that inheres in a bearer in virtue of the bearer not having a cavity, such that no line connecting a pair of points on the surface of the bearer will lie outside."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000591.ttl b/src/cco-iris/ont00000591.ttl new file mode 100644 index 00000000..ddcc50aa --- /dev/null +++ b/src/cco-iris/ont00000591.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000124 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000029 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000591 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Artifact Location"@en ; + "A Site that is the location of some Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000592.ttl b/src/cco-iris/ont00000592.ttl new file mode 100644 index 00000000..9c05aa31 --- /dev/null +++ b/src/cco-iris/ont00000592.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000592 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en , + "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information ('Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."@en ; + rdfs:label "Veracity Measurement Information Content Entity"@en ; + "Accuracy of Information"@en , + "Trueness Measurement"@en , + "Veracity Measurement"@en ; + "A Measurement Information Content Entity that is a measurement of the extent to which a description conforms to the reality it describes."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000593.ttl b/src/cco-iris/ont00000593.ttl new file mode 100644 index 00000000..0dbb797e --- /dev/null +++ b/src/cco-iris/ont00000593.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000043 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000457 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000593 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Propellant"@en ; + "A Portion of Material that is designed to be used as an input in a Propulsion Process to produce Thrust."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000637 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000962 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001172 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000594.ttl b/src/cco-iris/ont00000594.ttl new file mode 100644 index 00000000..a1b5d60c --- /dev/null +++ b/src/cco-iris/ont00000594.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000007 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000594 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ignition Process"@en ; + "Ignition"@en ; + "A Natural Process that initiates a Combustion process."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000595.ttl b/src/cco-iris/ont00000595.ttl new file mode 100644 index 00000000..cd483364 --- /dev/null +++ b/src/cco-iris/ont00000595.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000065 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000595 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Cargo Transportation"@en ; + "An Act of Location Change involving the movement of manufactured goods through some Transportation Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000596.ttl b/src/cco-iris/ont00000596.ttl new file mode 100644 index 00000000..9843a97a --- /dev/null +++ b/src/cco-iris/ont00000596.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000596 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "JAN-13 Barcode"@en ; + "An EAN Barcode that consists of 13 numerical digits and is used primarily in Japan to designate products at the point of sale."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000966 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000597.ttl b/src/cco-iris/ont00000597.ttl new file mode 100644 index 00000000..a8448833 --- /dev/null +++ b/src/cco-iris/ont00000597.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000597 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Instrument Display Panel"@en ; + "An Information Bearing Artifact that is designed to bear information about some Artifact that is derived by the instrumentation Sensors of that Artifact."@en ; + "https://en.wikipedia.org/w/index.php?title=Flight_instruments&oldid=1062972990"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000598.ttl b/src/cco-iris/ont00000598.ttl new file mode 100644 index 00000000..8c8e5a3d --- /dev/null +++ b/src/cco-iris/ont00000598.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000047 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000598 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Valve"@en ; + "A Fluid Control Artifact that is designed to regulate, direct, or control the flow of fluid by opening, closing, or partially obstructing the fluid from moving along a passageway."@en ; + "https://en.wikipedia.org/w/index.php?title=Valve&oldid=1048906126"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001282 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000599.ttl b/src/cco-iris/ont00000599.ttl new file mode 100644 index 00000000..1bcbe675 --- /dev/null +++ b/src/cco-iris/ont00000599.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000599 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Interpersonal Relationship Role"@en ; + "A Role that inheres in a Person in virtue of the obligations, expectations, or social norms that govern that Person's Intentional Acts within the context of a relationship with another Person."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000600.ttl b/src/cco-iris/ont00000600.ttl new file mode 100644 index 00000000..f73a8582 --- /dev/null +++ b/src/cco-iris/ont00000600.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000600 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Legal Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of giving legal advice to clients drafting legal documents for clients and representing clients in legal negotiations and court proceedings such as lawsuits."@en ; + "https://en.wikipedia.org/w/index.php?title=Law&oldid=1060821734"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000601.ttl b/src/cco-iris/ont00000601.ttl new file mode 100644 index 00000000..5bbcb790 --- /dev/null +++ b/src/cco-iris/ont00000601.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000289 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000601 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Imaging Artifact Function"@en ; + "An Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000944 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001155 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000602.ttl b/src/cco-iris/ont00000602.ttl new file mode 100644 index 00000000..a8850270 --- /dev/null +++ b/src/cco-iris/ont00000602.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000602 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "ITF Barcode"@en ; + "A One-Dimensional Barcode that consists of an even number of numerical characters and is used primarily in packaging and distribution."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000603.ttl b/src/cco-iris/ont00000603.ttl new file mode 100644 index 00000000..71fc3ed0 --- /dev/null +++ b/src/cco-iris/ont00000603.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000603 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Navigation Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact is used to determine the precise location of itself or another object and plan a route to a specified destination."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000604.ttl b/src/cco-iris/ont00000604.ttl new file mode 100644 index 00000000..0d102c46 --- /dev/null +++ b/src/cco-iris/ont00000604.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000604 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Maximum Ordinal Measurement Information Content Entity"@en ; + "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the largest or having the greatest amount relative to a nominally described set of like entities."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000605.ttl b/src/cco-iris/ont00000605.ttl new file mode 100644 index 00000000..cae66420 --- /dev/null +++ b/src/cco-iris/ont00000605.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000003 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000605 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Abbreviated Name"@en ; + "A Designative Name that is a shortened form of a Proper Name."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000683 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000915 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001238 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000606.ttl b/src/cco-iris/ont00000606.ttl new file mode 100644 index 00000000..f22d1d57 --- /dev/null +++ b/src/cco-iris/ont00000606.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000053 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000606 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Trucks vary greatly in their size and power -- ranging from small ultra-light trucks to enormous heavy trucks. Trucks also vary greatly in their configurations -- ranging from very basic flatbeds or box trucks to highly specialized cargo carriers. Trucks may also be configured to mount specialized equipment, such as in the case of fire trucks, concrete mixers, and suction excavators."@en ; + rdfs:label "Truck"@en ; + "A Ground Motor Vehicle that is designed to be used to transport cargo."@en ; + "https://en.wikipedia.org/w/index.php?title=Truck&oldid=1060924486"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000607.ttl b/src/cco-iris/ont00000607.ttl new file mode 100644 index 00000000..b12dbf63 --- /dev/null +++ b/src/cco-iris/ont00000607.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000607 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thickness"@en ; + "A Depth that inheres in a bearer in virtue of it extending inward through an object."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000892 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000608.ttl b/src/cco-iris/ont00000608.ttl new file mode 100644 index 00000000..7c3bfe51 --- /dev/null +++ b/src/cco-iris/ont00000608.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000608 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Financial Value"@en ; + "A quality that inheres in an independent continuant to the degree that that independent continuant can serve as a medium of exchange in an economic system at a particular time."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001073 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000609.ttl b/src/cco-iris/ont00000609.ttl new file mode 100644 index 00000000..02b324e4 --- /dev/null +++ b/src/cco-iris/ont00000609.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000016 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000462 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000609 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the BFO 'occupies temporal region' property) that the Entity bears the Disposition."@en ; + rdfs:label "Gain of Disposition"@en ; + "A Gain of Realizable Entity in which some Independent Continuant becomes the bearer of some Disposition."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000642 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000610.ttl b/src/cco-iris/ont00000610.ttl new file mode 100644 index 00000000..529c0929 --- /dev/null +++ b/src/cco-iris/ont00000610.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000508 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000610 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ultraviolet Light Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 750 terahertz and 30 petahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000754 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001332 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000611.ttl b/src/cco-iris/ont00000611.ttl new file mode 100644 index 00000000..dd638bde --- /dev/null +++ b/src/cco-iris/ont00000611.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000611 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Realizable Entity"@en ; + "An Increase of Specifically Dependent Continuant in which some Independent Continuant has an increase of some Realizable Entity that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000786 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001214 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001356 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000612.ttl b/src/cco-iris/ont00000612.ttl new file mode 100644 index 00000000..da824ced --- /dev/null +++ b/src/cco-iris/ont00000612.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000612 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Weapon Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Weapon."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000613.ttl b/src/cco-iris/ont00000613.ttl new file mode 100644 index 00000000..9027df0d --- /dev/null +++ b/src/cco-iris/ont00000613.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000250 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000613 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Role"@en ; + "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Role."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000614.ttl b/src/cco-iris/ont00000614.ttl new file mode 100644 index 00000000..ae170e8d --- /dev/null +++ b/src/cco-iris/ont00000614.ttl @@ -0,0 +1,41 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000614 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "'Matter' here can also refer to the inertial energy of an object."@en , + "Typical unit of measure is the kilogram or pound."@en ; + rdfs:label "Mass"@en ; + "A Quality that inheres in a bearer in virtue of the amount of matter in that bearer."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000615.ttl b/src/cco-iris/ont00000615.ttl new file mode 100644 index 00000000..44cf3d29 --- /dev/null +++ b/src/cco-iris/ont00000615.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000433 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000615 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Encounter"@en ; + "An Act of Association wherein two or more Persons meet in a casual or unplanned manner."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=encounter (Sense Key: Encounter%2:38:00)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000616.ttl b/src/cco-iris/ont00000616.ttl new file mode 100644 index 00000000..53e4c194 --- /dev/null +++ b/src/cco-iris/ont00000616.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000616 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Religion"@en ; + "An Information Content Entity that consists of a collection of claims about the meaning or origin of existence or about the existence or nature of one or more deities, an afterlife, or spiritual or sacred entities, and which is accepted as true by an Agent or Group of Agents."@en ; + "http://www.dictionary.com/browse/religion" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000617.ttl b/src/cco-iris/ont00000617.ttl new file mode 100644 index 00000000..819e898b --- /dev/null +++ b/src/cco-iris/ont00000617.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000199 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000617 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrared Camera"@en ; + "Thermal Imaging Camera"@en , + "Thermographic Camera"@en ; + "A Camera that is designed to form and record an image generated from infrared radiation."@en ; + "https://en.wikipedia.org/w/index.php?title=Thermographic_camera&oldid=1063916009"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000618.ttl b/src/cco-iris/ont00000618.ttl new file mode 100644 index 00000000..82ae43d5 --- /dev/null +++ b/src/cco-iris/ont00000618.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000053 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000618 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ground Vehicle"@en ; + "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by some form of ground travel."@en ; + "https://en.wikipedia.org/w/index.php?title=Category:Land_vehicles&oldid=546083623"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000713 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000796 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000840 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000619.ttl b/src/cco-iris/ont00000619.ttl new file mode 100644 index 00000000..574d5666 --- /dev/null +++ b/src/cco-iris/ont00000619.ttl @@ -0,0 +1,85 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000225 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000619 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Week"@en ; + "A Temporal Interval that is equal to seven consecutive Days."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=week" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000810 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001023 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000620.ttl b/src/cco-iris/ont00000620.ttl new file mode 100644 index 00000000..36bd0b2b --- /dev/null +++ b/src/cco-iris/ont00000620.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000257 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000620 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiopacity"@en ; + "Radiodensity"@en ; + "An Opacity that inheres in a bearer in virtue of its capacity to allow or prevent X-rays to pass through it."@en ; + "https://en.wikipedia.org/w/index.php?title=Radiodensity&oldid=1048274724"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000695 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001384 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000621.ttl b/src/cco-iris/ont00000621.ttl new file mode 100644 index 00000000..47718937 --- /dev/null +++ b/src/cco-iris/ont00000621.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000621 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Inverse Sawtooth Waveform"@en ; + "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from maximum to minimum Amplitudes followed by a near-instantaneous transition from the minimum to maximum Amplitudes of the Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001286 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000622.ttl b/src/cco-iris/ont00000622.ttl new file mode 100644 index 00000000..f136ff65 --- /dev/null +++ b/src/cco-iris/ont00000622.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000622 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Fully Mission Capable"@en ; + "A Stasis of Mission Capability during which the participating Continuant is capable of performing all of its primary functions for the specified Mission."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001132 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000623.ttl b/src/cco-iris/ont00000623.ttl new file mode 100644 index 00000000..e6be40f9 --- /dev/null +++ b/src/cco-iris/ont00000623.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000623 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Impact Shielding Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact reduces the damage caused to the shielded object by an impact with another object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000624.ttl b/src/cco-iris/ont00000624.ttl new file mode 100644 index 00000000..421308e4 --- /dev/null +++ b/src/cco-iris/ont00000624.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000624 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Report"@en ; + "A Document that is designed to bear some specific Information Content Entity that conveys an account of some event, situation, or the result of some observation or inquiry."@en ; + "https://en.wikipedia.org/w/index.php?title=Report&oldid=1063765657"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001298 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000625.ttl b/src/cco-iris/ont00000625.ttl new file mode 100644 index 00000000..faf58e1e --- /dev/null +++ b/src/cco-iris/ont00000625.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000625 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nozzle Throat"@en ; + "A Fluid Control Artifact that consists of the narrowest portion of a Nozzle that is designed to converge the flow of fluid in order to increase the Velocity of the flow."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000626.ttl b/src/cco-iris/ont00000626.ttl new file mode 100644 index 00000000..a2051e12 --- /dev/null +++ b/src/cco-iris/ont00000626.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000626 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Since predictions are inherently about not-yet-existant things, the Modal Relation Ontology term 'describes' (i.e. mro:describes) should be used (instead of the standard cco:describes) to relate instances of Predictive Information Content Entity to the entities they are about."@en ; + rdfs:label "Predictive Information Content Entity"@en ; + "Prediction"@en , + "Prediction Information Content Entity"@en ; + "A Descriptive Information Content Entity that describes an uncertain future event."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000627.ttl b/src/cco-iris/ont00000627.ttl new file mode 100644 index 00000000..f7932c99 --- /dev/null +++ b/src/cco-iris/ont00000627.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000627 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Infrastructure Element"@en ; + "A Material Entity that bears an Infrastructure Role."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001141 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000628.ttl b/src/cco-iris/ont00000628.ttl new file mode 100644 index 00000000..e6e5e3ca --- /dev/null +++ b/src/cco-iris/ont00000628.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000016 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000512 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000628 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electromagnetic Radiation Property"@en ; + "A Disposition that inheres in an bearer in virtue of how that bearer interacts with electromagnetic radiation."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000784 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001137 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001291 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001384 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000629.ttl b/src/cco-iris/ont00000629.ttl new file mode 100644 index 00000000..d0ba432a --- /dev/null +++ b/src/cco-iris/ont00000629.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000629 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Deception Artifact Function"@en ; + "An Artifact Function that is realized in processes which misinform or mislead some other entity."@en ; + "https://en.wikipedia.org/w/index.php?title=Deception&oldid=1061346984"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000630.ttl b/src/cco-iris/ont00000630.ttl new file mode 100644 index 00000000..38336e1e --- /dev/null +++ b/src/cco-iris/ont00000630.ttl @@ -0,0 +1,88 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000124 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000630 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Universal Time Reference System"@en ; + "A Solar Time Reference System that is based on the average speed of the Earth's rotation and which uses the prime meridian at 0° longitude as a reference point."@en ; + "UT" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001436 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001491 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001506 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001537 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001548 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001625 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001695 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001716 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000631.ttl b/src/cco-iris/ont00000631.ttl new file mode 100644 index 00000000..6981eb7c --- /dev/null +++ b/src/cco-iris/ont00000631.ttl @@ -0,0 +1,79 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000171 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000139 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000631 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + "2023-02-06T10:14:09-05:00"@en ; + rdfs:label "Material Territory of a Country"@en ; + "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a The Domain of a Country."@en ; + "Material Territory of a Country"@en ; + "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000662 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000632.ttl b/src/cco-iris/ont00000632.ttl new file mode 100644 index 00000000..3675870b --- /dev/null +++ b/src/cco-iris/ont00000632.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000016 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000632 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Magnetism"@en ; + "A Disposition that is realized when its bearer exerts a magnetic force on another entity."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000633.ttl b/src/cco-iris/ont00000633.ttl new file mode 100644 index 00000000..19d296ca --- /dev/null +++ b/src/cco-iris/ont00000633.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000633 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "When an object is \"weighed\", in the typical case, it is done so by taking into account the local force of gravity to determine the object's mass, whose standard of measure is the kilogram. The actual unit of measure of weight is the newton."@en ; + rdfs:label "Weight"@en ; + "A Quality that inheres in some material entity with a mass in virtue of its location in some gravitational field."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000634.ttl b/src/cco-iris/ont00000634.ttl new file mode 100644 index 00000000..d8a1224e --- /dev/null +++ b/src/cco-iris/ont00000634.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000343 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000431 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000634 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Steam Engine"@en ; + "An External Combustion Engine that is designed to use steam as its working fluid."@en ; + "https://en.wikipedia.org/w/index.php?title=Steam_engine&oldid=1064097686"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000788 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000635.ttl b/src/cco-iris/ont00000635.ttl new file mode 100644 index 00000000..024f55ac --- /dev/null +++ b/src/cco-iris/ont00000635.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000635 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Refraction Artifact Function"@en ; + "An Artifact Function that is realized by an Artifact participating in a refraction event in which the Artifact causes a change in direction of wave propagation due to a change in its transmission medium."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000636.ttl b/src/cco-iris/ont00000636.ttl new file mode 100644 index 00000000..02c5f866 --- /dev/null +++ b/src/cco-iris/ont00000636.ttl @@ -0,0 +1,52 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000345 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000636 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Note that, while most if not all Acts of Appraisal involve some estimating and many Acts of Estimation involve some appraising (i.e. these classes are not disjoint), neither class subsumes the other. For example, some Acts of Appraisal (e.g. a tax assessor appraising the value of a building) impart a normative element to the measured value while others (e.g. a gustatory appraisal that fresh green beans taste better than canned green beans) involve complete information. Furthermore, many Acts of Estimation (e.g. estimating the height of a tree) are concerned solely with determining a numerical value (as opposed to the nature, value, importance, condition, or quality)."@en ; + rdfs:label "Act of Appraisal"@en ; + "An Act of Measuring that involves evaluating, assessing, estimating, or judging the nature, value, importance, condition, or quality of something or someone."@en ; + "a food critic rating the quality of a restaurant's ambiance, service, and food" , + "a mechanic assessing whether a damaged vehicle is repairable" , + "an insurance agent appraising the financial value of a building" ; + "In the context of an Act of Appraisal, the terms 'value', 'condition', and 'quality' do not have the same meanings as their counterparts that are defined in the Common Core Ontologies. For example, a knife may be appraised to be of high quality if it is sharp and sturdy or to be of inferior quality if it is dull or fragile."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000637.ttl b/src/cco-iris/ont00000637.ttl new file mode 100644 index 00000000..8077d30c --- /dev/null +++ b/src/cco-iris/ont00000637.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000593 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000637 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Gaseous Propellant"@en ; + "A Portion of Propellant that is stored in a gaseous state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000638.ttl b/src/cco-iris/ont00000638.ttl new file mode 100644 index 00000000..442eebef --- /dev/null +++ b/src/cco-iris/ont00000638.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000210 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000638 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heat Engine"@en ; + "An Engine that is designed to convert thermal energy into mechanical energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000746 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000639.ttl b/src/cco-iris/ont00000639.ttl new file mode 100644 index 00000000..e831be6d --- /dev/null +++ b/src/cco-iris/ont00000639.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000060 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000104 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000271 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000639 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mine"@en ; + "A Facility that is designed to support the extraction of minerals or other geological materials from an orebody, lode, vein, seam, reef, or placer deposit within the earth."@en ; + "https://en.wikipedia.org/w/index.php?title=Mining&oldid=1062844924"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000640.ttl b/src/cco-iris/ont00000640.ttl new file mode 100644 index 00000000..4821ba73 --- /dev/null +++ b/src/cco-iris/ont00000640.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000640 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Email Message"@en ; + "A Message that is transmitted to the recipient's Email Box."@en ; + "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001002 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000641.ttl b/src/cco-iris/ont00000641.ttl new file mode 100644 index 00000000..1f532234 --- /dev/null +++ b/src/cco-iris/ont00000641.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000641 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Entertainment Facility"@en ; + "A Facility that is designed to host activities that are intended to hold the interest of, or give pleasure or delight to, an audience."@en ; + "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000802 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000642.ttl b/src/cco-iris/ont00000642.ttl new file mode 100644 index 00000000..b9355cd6 --- /dev/null +++ b/src/cco-iris/ont00000642.ttl @@ -0,0 +1,85 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000395 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000609 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000642 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Realizable Entity"@en ; + "A Gain of Specifically Dependent Continuant in which some Independent Continuant becomes the bearer of some Realizable Entity."@en ; + "An informant becomes unreliable (disposition), A person begins to speak French (function), a person becomes a welder (role)." ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001194 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000643.ttl b/src/cco-iris/ont00000643.ttl new file mode 100644 index 00000000..83218bce --- /dev/null +++ b/src/cco-iris/ont00000643.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000643 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 10–1 km"@en ; + rdfs:label "Low Frequency"@en ; + "ITU Band Number 5"@en ; + "A Radio Frequency that is between 30 and 300 kHz."@en ; + "LF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000644.ttl b/src/cco-iris/ont00000644.ttl new file mode 100644 index 00000000..1fe1bb30 --- /dev/null +++ b/src/cco-iris/ont00000644.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000004 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000644 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Oscillation is often thought of in the sense of motion, e.g., a swinging clock pendulum. However, the repetitive variation in location around a central point is technically a process of vibration, sometimes referred to as mechanical oscillation. Use the term Vibration Motion for those cases."@en ; + rdfs:label "Oscillation Process"@en ; + "Oscillation"@en ; + "A Change in which the dependent entity alternates between two or more stases."@en ; + "https://en.wikipedia.org/w/index.php?title=Oscillation&oldid=1002978272"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000645.ttl b/src/cco-iris/ont00000645.ttl new file mode 100644 index 00000000..4266b58b --- /dev/null +++ b/src/cco-iris/ont00000645.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000645 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Permanent Resident"@en ; + "A person with a Permanent Resident Role."@en ; + "Permanent Resident"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000917 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000646.ttl b/src/cco-iris/ont00000646.ttl new file mode 100644 index 00000000..bda37857 --- /dev/null +++ b/src/cco-iris/ont00000646.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000247 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000646 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Highway"@en ; + "A Road that is designed to enable Ground Vehicles to travel between relatively major destinations."@en ; + "https://en.wikipedia.org/w/index.php?title=Highway&oldid=1063985949"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001015 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000647.ttl b/src/cco-iris/ont00000647.ttl new file mode 100644 index 00000000..f9cce949 --- /dev/null +++ b/src/cco-iris/ont00000647.ttl @@ -0,0 +1,71 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001939 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000175 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000647 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Organization Member"@en ; + "A Person who is affiliated with some Organization by being a member of that Organization."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000648.ttl b/src/cco-iris/ont00000648.ttl new file mode 100644 index 00000000..519d9bd6 --- /dev/null +++ b/src/cco-iris/ont00000648.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000648 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Color Brightness"@en ; + "Color Intensity"@en ; + "An Optical Property that inheres in a bearer in virtue of its capacity to reflect or radiate light."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000784 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000649.ttl b/src/cco-iris/ont00000649.ttl new file mode 100644 index 00000000..f7486a8c --- /dev/null +++ b/src/cco-iris/ont00000649.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000003 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00000077 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000649 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Non-Name Identifier"@en ; + "ID"@en , + "Identifier"@en ; + "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified namespace or context, is not a Designative Name, may be automatically or randomly generated, and typically has no preexisting cultural or social significance."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000923 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000650.ttl b/src/cco-iris/ont00000650.ttl new file mode 100644 index 00000000..da35dffa --- /dev/null +++ b/src/cco-iris/ont00000650.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000214 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000650 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ground Moving Target Indication Artifact Function"@en ; + "A Moving Target Indication Artifact Function that inheres in Artifacts that are designed to identify and track entities moving on or near the ground."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000651.ttl b/src/cco-iris/ont00000651.ttl new file mode 100644 index 00000000..a20a655f --- /dev/null +++ b/src/cco-iris/ont00000651.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000651 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Containing Artifact Function"@en ; + "An Artifact Function that is realized in a process in which one entity contains another."@en ; + "http://www.dictionary.com/browse/containing" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000652.ttl b/src/cco-iris/ont00000652.ttl new file mode 100644 index 00000000..19e28d80 --- /dev/null +++ b/src/cco-iris/ont00000652.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000652 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decoy"@en ; + "A Material Artifact that is designed to distract or conceal what an individual or group might be looking for."@en ; + "https://en.wikipedia.org/w/index.php?title=Decoy&oldid=1058455081"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000653.ttl b/src/cco-iris/ont00000653.ttl new file mode 100644 index 00000000..3323dbd9 --- /dev/null +++ b/src/cco-iris/ont00000653.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000653 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Algorithm"@en ; + "A Directive Information Content Entity that prescribes some Process and contains a finite sequence of unambiguous instructions in order to achieve some Objective."@en ; + "http://purl.obolibrary.org/obo/IAO_0000064"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000654.ttl b/src/cco-iris/ont00000654.ttl new file mode 100644 index 00000000..b3f5ea4a --- /dev/null +++ b/src/cco-iris/ont00000654.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000654 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Terrorism"@en ; + "An Act of Violence which creates fear and which is prescribed by religious, political or ideological objectives, and which deliberately target or disregard the safety of civilians and are committed by members of non-government organizations."@en ; + "https://en.wikipedia.org/w/index.php?title=Terrorism&oldid=1063471352"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001147 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000655.ttl b/src/cco-iris/ont00000655.ttl new file mode 100644 index 00000000..f80ef8ba --- /dev/null +++ b/src/cco-iris/ont00000655.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000655 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mailing Facility"@en ; + "A Facility that is designed for the systematic physical transportation of documents and packages."@en ; + "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000905 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000656.ttl b/src/cco-iris/ont00000656.ttl new file mode 100644 index 00000000..5e2ea860 --- /dev/null +++ b/src/cco-iris/ont00000656.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000656 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiological Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing radioactive material."@en ; + "https://en.wikipedia.org/w/index.php?title=Radiological_warfare&oldid=1060817328"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000657.ttl b/src/cco-iris/ont00000657.ttl new file mode 100644 index 00000000..d7868873 --- /dev/null +++ b/src/cco-iris/ont00000657.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000657 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Distance Measurement Artifact Function"@en ; + "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the spatial Distance to a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001100 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000658.ttl b/src/cco-iris/ont00000658.ttl new file mode 100644 index 00000000..abd59c08 --- /dev/null +++ b/src/cco-iris/ont00000658.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000658 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Missile Launcher"@en ; + "A Projectile Launcher that is designed to launch one or more Precision-Guided Missiles."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001051 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000659.ttl b/src/cco-iris/ont00000659.ttl new file mode 100644 index 00000000..be514c0e --- /dev/null +++ b/src/cco-iris/ont00000659.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000659 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Torque"@en ; + "Measurement Unit of Moment of Force"@en , + "Measurement Unit of Rotational Force"@en ; + "A Measurement Unit that is used as a standard for measurement of the rate of change of angular momentum of an object."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001504 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001555 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000660.ttl b/src/cco-iris/ont00000660.ttl new file mode 100644 index 00000000..fddc42d7 --- /dev/null +++ b/src/cco-iris/ont00000660.ttl @@ -0,0 +1,70 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001819 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000660 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Effect"@en ; + "Consequence"@en ; + "A Process that follows and is caused by some previous Process."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=effect" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000855 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000661.ttl b/src/cco-iris/ont00000661.ttl new file mode 100644 index 00000000..6e15e5ae --- /dev/null +++ b/src/cco-iris/ont00000661.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000661 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Government Artifact Function"@en ; + "A Service Artifact Function that is realized in processes in which public policy is administered and the actions of its members are directed."@en ; + "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000662.ttl b/src/cco-iris/ont00000662.ttl new file mode 100644 index 00000000..0215f740 --- /dev/null +++ b/src/cco-iris/ont00000662.ttl @@ -0,0 +1,96 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000171 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000139 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000631 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000662 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + "2023-02-06T10:14:09-05:00"@en ; + rdfs:label "Material Territory of a Government Domain"@en ; + "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a Government Domain"@en ; + "Material Territory of a Government Domain"@en ; + "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001341 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000663.ttl b/src/cco-iris/ont00000663.ttl new file mode 100644 index 00000000..55024708 --- /dev/null +++ b/src/cco-iris/ont00000663.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000301 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000663 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Transmission Artifact"@en ; + "A Material Artifact that is designed to transfer and regulate Power flow from a Power Source to an application point."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000664.ttl b/src/cco-iris/ont00000664.ttl new file mode 100644 index 00000000..f1e8e72d --- /dev/null +++ b/src/cco-iris/ont00000664.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000531 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000664 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Relay Station"@en ; + "A Communications Facility that is designed to support the receiving and re-transmitting of radio signals."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000665.ttl b/src/cco-iris/ont00000665.ttl new file mode 100644 index 00000000..43d4330a --- /dev/null +++ b/src/cco-iris/ont00000665.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000665 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cleaning Artifact Function"@en ; + "An Artifact Function that is realized in processes in which some Artifact is used to remove foreign objects from another object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000666.ttl b/src/cco-iris/ont00000666.ttl new file mode 100644 index 00000000..1d248f6d --- /dev/null +++ b/src/cco-iris/ont00000666.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000486 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000666 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Neutral Person"@en ; + "Unallied Person" ; + "A Person who is the bearer of some Neutral Role."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000667.ttl b/src/cco-iris/ont00000667.ttl new file mode 100644 index 00000000..d55a8107 --- /dev/null +++ b/src/cco-iris/ont00000667.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000667 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Combat Outpost"@en ; + "A Military Facility that is designed to support the conduction of combat operations of limited scope or size."@en ; + "https://en.wikipedia.org/wiki/Outpost_(military)" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001052 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000668.ttl b/src/cco-iris/ont00000668.ttl new file mode 100644 index 00000000..74336d42 --- /dev/null +++ b/src/cco-iris/ont00000668.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000668 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Battery Terminal"@en ; + "A Material Artifact that is designed to connect a load or charger to a single or multiple-cell Battery."@en ; + "https://en.wikipedia.org/w/index.php?title=Battery_terminal&oldid=1059455659"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000669.ttl b/src/cco-iris/ont00000669.ttl new file mode 100644 index 00000000..60a4df47 --- /dev/null +++ b/src/cco-iris/ont00000669.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000669 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Distance Measurement Information Content Entity"@en ; + "A Ratio Measurement Information Content Entity that is a measurement of a One-Dimensional Extent inhering in some Site that is externally connected to two Independent Continuants."@en ; + "Displacement (vector) is the shortest possible distance (scalar) between two points. Further thought is needed to adequately handle measurements of distance traveled along a path, e.g., a circuitous path or an arc (such as the surface of a planet), versus the simple case of a direct, straight line between two points."@en , + "Distance is a measure between two reference points, which are located on or in, or in some manner part of, the two obejcts for which the length of the extent between is sought. For exmple, the center point of the indentation of a ball in the sand and the edge of the foul line, the forwardmost point on a car's bumper and the closest point on the 2-dimensional plane that serves as the fiat boundary of a crosswalk, the center of an antenna array and closest point on ground."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001022 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000670.ttl b/src/cco-iris/ont00000670.ttl new file mode 100644 index 00000000..9a09fdce --- /dev/null +++ b/src/cco-iris/ont00000670.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000670 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Distribution Port"@en ; + "A Port that is designed with the cargo handling equipment necessary for the loading and unloading of Watercraft"@en ; + "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001258 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000671.ttl b/src/cco-iris/ont00000671.ttl new file mode 100644 index 00000000..cd0808ff --- /dev/null +++ b/src/cco-iris/ont00000671.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000415 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000671 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Anti-Bacterial Artifact Function"@en ; + "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some bacterium."@en ; + "https://en.wikipedia.org/w/index.php?title=Antibiotic&oldid=1063633090"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000672.ttl b/src/cco-iris/ont00000672.ttl new file mode 100644 index 00000000..1f9c0cbb --- /dev/null +++ b/src/cco-iris/ont00000672.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000672 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 10,000–1,000 km"@en ; + rdfs:label "Super Low Frequency"@en ; + "ITU Band Number 2"@en ; + "A Radio Frequency that is between 30 and 300 Hz."@en ; + "SLF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000673.ttl b/src/cco-iris/ont00000673.ttl new file mode 100644 index 00000000..b5ee481d --- /dev/null +++ b/src/cco-iris/ont00000673.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000673 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prosthetic Foot"@en ; + "A Prosthesis that is designed to replace a missing foot."@en ; + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000715 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000674.ttl b/src/cco-iris/ont00000674.ttl new file mode 100644 index 00000000..6942f406 --- /dev/null +++ b/src/cco-iris/ont00000674.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000227 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000425 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000674 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar Year"@en ; + "A Year that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Year."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000832 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000675.ttl b/src/cco-iris/ont00000675.ttl new file mode 100644 index 00000000..1024090c --- /dev/null +++ b/src/cco-iris/ont00000675.ttl @@ -0,0 +1,85 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001857 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000260 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000675 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Sound Wave Process"@en ; + "A Mechanical Wave Process of Pressure and displacement that is parallel to the propogation direction of the Wave Process through a medium."@en ; + "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000862 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001028 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001227 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000676.ttl b/src/cco-iris/ont00000676.ttl new file mode 100644 index 00000000..10e32cee --- /dev/null +++ b/src/cco-iris/ont00000676.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000676 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Inhabitancy"@en ; + "A Planned Act in which a Person lives at a Site for a period of time that may be as short as 1 day/night or as long as the Person's entire life."@en ; + "http://www.merriam-webster.com/dictionary/inhabit" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000739 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001128 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000677.ttl b/src/cco-iris/ont00000677.ttl new file mode 100644 index 00000000..030d414d --- /dev/null +++ b/src/cco-iris/ont00000677.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000232 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000677 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Product Transport Facility"@en ; + "A Facility that is designed to transport some product."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000705 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000867 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000678.ttl b/src/cco-iris/ont00000678.ttl new file mode 100644 index 00000000..f3888fe6 --- /dev/null +++ b/src/cco-iris/ont00000678.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000098 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000678 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Voltage Regulating Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Artifact is used to cause a change in the voltage magnitude between the sending and receiving end of an electrical component."@en ; + "https://en.wikipedia.org/w/index.php?title=Voltage_regulation&oldid=1045628774"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000679.ttl b/src/cco-iris/ont00000679.ttl new file mode 100644 index 00000000..06cd73c9 --- /dev/null +++ b/src/cco-iris/ont00000679.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000679 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Attitude Control Artifact Function"@en ; + "Orientation Control Artifact Function"@en ; + "An Artifact Function that is realized by an Artifact participating in an attitude control process."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000680.ttl b/src/cco-iris/ont00000680.ttl new file mode 100644 index 00000000..23585754 --- /dev/null +++ b/src/cco-iris/ont00000680.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000680 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Medical Depot"@en ; + "A Storage Facility that is designed to store medical supplies."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000681.ttl b/src/cco-iris/ont00000681.ttl new file mode 100644 index 00000000..f5b68afc --- /dev/null +++ b/src/cco-iris/ont00000681.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000236 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000681 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "External Navigation Lighting System"@en ; + "A Lighting System that is designed to be attached to some Vehicle and to emit colored light in order to signal that Vehicle's position, heading, and status."@en ; + "https://en.wikipedia.org/w/index.php?title=Navigation_light&oldid=1034200601"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000682.ttl b/src/cco-iris/ont00000682.ttl new file mode 100644 index 00000000..66dd07ff --- /dev/null +++ b/src/cco-iris/ont00000682.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000136 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000682 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mirror"@en ; + "An Optical Instrument that is designed to reflect light that has a wavelength within a given range and is incident on its relflecting surface such that the reflected light maintains most of the characteristics of the original light."@en ; + "https://en.wikipedia.org/w/index.php?title=Mirror&oldid=1063296474"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000683.ttl b/src/cco-iris/ont00000683.ttl new file mode 100644 index 00000000..aeff5de2 --- /dev/null +++ b/src/cco-iris/ont00000683.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000605 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000683 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Diminutive Name"@en ; + "An Abbreviated Name that is a familiar form of a Proper Name."@en ; + "Alex, Bob, Cathy" ; + "\"Familiar form of a Proper Name\" means: that the name is (originally) a short, affectionate version of the fuller name, used (originally) by family or friends."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000684.ttl b/src/cco-iris/ont00000684.ttl new file mode 100644 index 00000000..0d161eb7 --- /dev/null +++ b/src/cco-iris/ont00000684.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000684 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Contract Formation"@en ; + "An Act of Promising having a lawful object entered into voluntarily by two or more agents with legal capacity, each of whom intends to create one or more legal obligations between them."@en ; + "https://en.wikipedia.org/w/index.php?title=Contract&oldid=1061365227"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000821 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000685.ttl b/src/cco-iris/ont00000685.ttl new file mode 100644 index 00000000..50b545e9 --- /dev/null +++ b/src/cco-iris/ont00000685.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000207 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000685 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Government Domain Border"@en ; + "A Geospatial Boundary that is a boundary of some Government Domain."@en ; + "https://en.wikipedia.org/w/index.php?title=Border&oldid=1061275162"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000686.ttl b/src/cco-iris/ont00000686.ttl new file mode 100644 index 00000000..ff5c958e --- /dev/null +++ b/src/cco-iris/ont00000686.ttl @@ -0,0 +1,158 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001879 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000006 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000008 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000003 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000292 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000390 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000399 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000649 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith , + ; + rdfs:label "Designative Information Content Entity"@en ; + "Designative ICE"@en ; + "An Information Content Entity that consists of a set of symbols that denote some Entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001045 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001103 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000687.ttl b/src/cco-iris/ont00000687.ttl new file mode 100644 index 00000000..5f61b638 --- /dev/null +++ b/src/cco-iris/ont00000687.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000234 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000235 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000237 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000573 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000687 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Training Acquisition"@en ; + "An Act of Training performed by an Agent by acquiring knowledge from another Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000925 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001074 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000688.ttl b/src/cco-iris/ont00000688.ttl new file mode 100644 index 00000000..19d21573 --- /dev/null +++ b/src/cco-iris/ont00000688.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000294 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000688 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Turbofan Air-Breathing Jet Engine"@en ; + "An Air-Breathing Jet Engine that uses a Turbofan, which consists of a Turbine and a Fan."@en ; + "https://en.wikipedia.org/w/index.php?title=Turbofan&oldid=1063724215"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000689.ttl b/src/cco-iris/ont00000689.ttl new file mode 100644 index 00000000..d60544f5 --- /dev/null +++ b/src/cco-iris/ont00000689.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000689 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Switch Artifact Function"@en ; + "An Artifact Function that is realized in a process of breaking an electric circuit by interrupting the current or diverting it from one conductor to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Switch&oldid=1059685800"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000690.ttl b/src/cco-iris/ont00000690.ttl new file mode 100644 index 00000000..2d542ef6 --- /dev/null +++ b/src/cco-iris/ont00000690.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000346 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000690 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Instrument"@en ; + "A Communication Instrument that is designed for use by some Agent in some Act of Communication where the recipient of that communication is potentially a significant distance away from the Agent."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000906 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000907 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000691.ttl b/src/cco-iris/ont00000691.ttl new file mode 100644 index 00000000..0faef319 --- /dev/null +++ b/src/cco-iris/ont00000691.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000020 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000691 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel Tank"@en ; + "A Container that is designed to store a Portion of Fuel."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000692.ttl b/src/cco-iris/ont00000692.ttl new file mode 100644 index 00000000..badf46c9 --- /dev/null +++ b/src/cco-iris/ont00000692.ttl @@ -0,0 +1,51 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000692 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Every probability measurement is made within a particular context given certain background assumptions."@en ; + rdfs:label "Probability Measurement Information Content Entity"@en ; + "Likelihood Measurement"@en , + "Probability Measurement"@en ; + "A Measurement Information Content Entity that is a measurement of the likelihood that a Process or Process Aggregate occurs."@en ; + "https://en.wikipedia.org/w/index.php?title=Probability&oldid=1059657543"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000693.ttl b/src/cco-iris/ont00000693.ttl new file mode 100644 index 00000000..b3fe7bfd --- /dev/null +++ b/src/cco-iris/ont00000693.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000575 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000693 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mass Specification"@en ; + "A Quality Specification that prescribes the Amount of Mass that a Material Entity should have."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000694.ttl b/src/cco-iris/ont00000694.ttl new file mode 100644 index 00000000..b90f918f --- /dev/null +++ b/src/cco-iris/ont00000694.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000694 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nozzle Mouth"@en ; + "A Fluid Control Artifact that consists of the portion of a Nozzle at the end that is designed to be where the flow of fluid exits the Nozzle."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000695.ttl b/src/cco-iris/ont00000695.ttl new file mode 100644 index 00000000..5b329664 --- /dev/null +++ b/src/cco-iris/ont00000695.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000620 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000695 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiolucent"@en ; + "Hypodense"@en , + "Transradiance"@en ; + "A Radiopacity that inheres in a bearer in virtue of its capacity to permit most X-rays to pass through it."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000696.ttl b/src/cco-iris/ont00000696.ttl new file mode 100644 index 00000000..4186554d --- /dev/null +++ b/src/cco-iris/ont00000696.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000696 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ideology"@en ; + "An Information Content Entity that consists of a collection of claims about how some part of the world is or should be and which is accepted as true by an Agent or Group of Agents such that it forms the basis of their beliefs, goals, expectations, and motivations."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000976 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000697.ttl b/src/cco-iris/ont00000697.ttl new file mode 100644 index 00000000..534db69a --- /dev/null +++ b/src/cco-iris/ont00000697.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000279 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000697 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Enemy Person"@en ; + "A Person who is the bearer of some Enemy Role."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000698.ttl b/src/cco-iris/ont00000698.ttl new file mode 100644 index 00000000..45f357b9 --- /dev/null +++ b/src/cco-iris/ont00000698.ttl @@ -0,0 +1,51 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000252 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000698 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "By increasing the Exhaust Velocity of the gas, the Nozzle increases the Thrust generated."@en ; + rdfs:label "Convergent-Divergent Nozzle"@en ; + "CD Nozzle"@en , + "de Laval Nozzle"@en ; + "A Nozzle that consists of a tube with an asymmetric hourglass shape that is designed to accelerate hot pressurized gas by converting the heat energy of the gas flow into kinetic energy as it passes through the Nozzle Throat to generate increased Exhaust Velocity of the gas as it exits the Nozzle."@en ; + "https://en.wikipedia.org/w/index.php?title=De_Laval_nozzle&oldid=1062746288"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000699.ttl b/src/cco-iris/ont00000699.ttl new file mode 100644 index 00000000..43ee036c --- /dev/null +++ b/src/cco-iris/ont00000699.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000699 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Afternoon"@en ; + "A Temporal Interval that consists of the temporal regions between when the sun is at its apex (approximately 12:00pm) and when it sets (approximately 6:00pm)."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000700.ttl b/src/cco-iris/ont00000700.ttl new file mode 100644 index 00000000..394f57a5 --- /dev/null +++ b/src/cco-iris/ont00000700.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000700 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Computer Network"@en ; + "Data Network"@en ; + "A Telecommunication Network that is designed to allow the exchange of data between two or more computers connected to the network."@en ; + "https://en.wikipedia.org/w/index.php?title=Computer_network&oldid=1061571662"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000998 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000701.ttl b/src/cco-iris/ont00000701.ttl new file mode 100644 index 00000000..9c172e42 --- /dev/null +++ b/src/cco-iris/ont00000701.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000701 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wire Receiver"@en ; + "A Radio Receiver that uses a Wire Antenna to intercept radio signals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001145 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000702.ttl b/src/cco-iris/ont00000702.ttl new file mode 100644 index 00000000..b5b73e68 --- /dev/null +++ b/src/cco-iris/ont00000702.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000702 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Image"@en ; + "An Information Bearing Artifact that is designed to carry an Information Content Entity that represents some entity owing to a visual isomorphism between the carrying artifact and the entity."@en ; + "https://en.wikipedia.org/w/index.php?title=Image&oldid=1062709732"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000743 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000703.ttl b/src/cco-iris/ont00000703.ttl new file mode 100644 index 00000000..28a73be1 --- /dev/null +++ b/src/cco-iris/ont00000703.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000159 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000703 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "System Clock"@en ; + "A Timekeeping Instrument that is part of a computer an is designed to issue a steady high-frequency signal that is used to synchronize all of the computer's internal components."@en ; + "http://www.thefreedictionary.com/system+clock" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000704.ttl b/src/cco-iris/ont00000704.ttl new file mode 100644 index 00000000..000f5ef6 --- /dev/null +++ b/src/cco-iris/ont00000704.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000704 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Tunnel"@en ; + "A Land Transportation Artifact that is designed to enable Ground Vehicles to travel underneath a surrounding soil, earth, or rock formation."@en ; + "https://en.wikipedia.org/w/index.php?title=Tunnel&oldid=1062456881"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001326 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000705.ttl b/src/cco-iris/ont00000705.ttl new file mode 100644 index 00000000..265bbf51 --- /dev/null +++ b/src/cco-iris/ont00000705.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000677 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000705 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Transmission Line"@en ; + "A Product Transport Facility that is designed to transmit electricity over distance via a system of above ground wires including their supports."@en ; + "https://en.wikipedia.org/w/index.php?title=Electric_power_transmission&oldid=1062551058"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000706.ttl b/src/cco-iris/ont00000706.ttl new file mode 100644 index 00000000..6b0d91ad --- /dev/null +++ b/src/cco-iris/ont00000706.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000706 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Terminal Board"@en ; + "A Material Artifact that is designed to join electrical terminations and create an electrical circuit by means of a block which connects individual wires without a splice or physically joining the ends."@en ; + "https://en.wikipedia.org/w/index.php?title=Electrical_connector&oldid=1061247409"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000707.ttl b/src/cco-iris/ont00000707.ttl new file mode 100644 index 00000000..6b76293b --- /dev/null +++ b/src/cco-iris/ont00000707.ttl @@ -0,0 +1,83 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000707 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Angle"@en ; + "A Measurement Unit that is used as a standard for measurement of the angle between two lines or planes in relation to a vertex."@en ; + "degrees, radians" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001388 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001453 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001489 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001604 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001609 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001659 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001685 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000708.ttl b/src/cco-iris/ont00000708.ttl new file mode 100644 index 00000000..376ae6cd --- /dev/null +++ b/src/cco-iris/ont00000708.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000708 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Water Tower"@en ; + "A Facility that is the bearer of functions realized in processes of storing water in an elevated container."@en ; + "https://en.wikipedia.org/w/index.php?title=Water_tower&oldid=1059754959"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000709.ttl b/src/cco-iris/ont00000709.ttl new file mode 100644 index 00000000..c29a965f --- /dev/null +++ b/src/cco-iris/ont00000709.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000709 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Visual Prosthesis"@en ; + "Bionic Eye"@en ; + "An Artificial Eye that is designed to replace a missing eye, which performs the function of an eye."@en ; + "https://en.wikipedia.org/w/index.php?title=Visual_prosthesis&oldid=1059269261"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001248 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000710.ttl b/src/cco-iris/ont00000710.ttl new file mode 100644 index 00000000..3b35c815 --- /dev/null +++ b/src/cco-iris/ont00000710.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000710 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Command Post Facility"@en ; + "A Military Facility that is designed to support the command and control of Military Operations or Forces."@en ; + "http://www.dictionary.com/browse/command-post" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001052 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000711.ttl b/src/cco-iris/ont00000711.ttl new file mode 100644 index 00000000..6a0696a4 --- /dev/null +++ b/src/cco-iris/ont00000711.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000156 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000711 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Semi-automatic Pistol"@en ; + "A Hand Gun that has a single fixed firing chamber machined into the rear of the barrel and an ammunition magazine capable of holding multiple Cartridges such that the Hand Gun is designed to automatically reload each time it is fired and to fire a Bullet with each successive pull of the trigger until the stored ammunition is depleted."@en ; + "https://en.wikipedia.org/w/index.php?title=Semi-automatic_pistol&oldid=1058568715"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000712.ttl b/src/cco-iris/ont00000712.ttl new file mode 100644 index 00000000..cfc9cb0f --- /dev/null +++ b/src/cco-iris/ont00000712.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000712 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Acceleration"@en ; + "A Process Profile that is the rate of change of the Velocity of an object."@en ; + "https://en.wikipedia.org/w/index.php?title=Acceleration&oldid=1062249960"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000763 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001112 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000713.ttl b/src/cco-iris/ont00000713.ttl new file mode 100644 index 00000000..dabebd51 --- /dev/null +++ b/src/cco-iris/ont00000713.ttl @@ -0,0 +1,85 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000440 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000618 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000713 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vehicle"@en ; + "A Material Artifact that is designed to facilitate the movement of material entities from one location to another by conveying them there."@en ; + "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001043 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001071 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001139 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001185 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000714.ttl b/src/cco-iris/ont00000714.ttl new file mode 100644 index 00000000..ce794e90 --- /dev/null +++ b/src/cco-iris/ont00000714.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000714 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Horn Antenna"@en ; + "Microwave Horn"@en ; + "A Radio Antenna that consists of a flaring metal waveguide shaped like a horn to direct radio waves in a beam and can be used on its own or as a feeder for larger antenna structures, such as Parabolic Antennas."@en ; + "https://en.wikipedia.org/w/index.php?title=Horn_antenna&oldid=1050375403"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001192 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000715.ttl b/src/cco-iris/ont00000715.ttl new file mode 100644 index 00000000..5b29ba53 --- /dev/null +++ b/src/cco-iris/ont00000715.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000299 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000341 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000417 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000673 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000715 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prosthesis"@en ; + "A Medical Artifact that is designed to replace a missing body part."@en ; + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001188 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001248 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001381 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000716.ttl b/src/cco-iris/ont00000716.ttl new file mode 100644 index 00000000..42ac7582 --- /dev/null +++ b/src/cco-iris/ont00000716.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000716 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electric Battery"@en ; + "Battery"@en ; + "An Electrical Power Source that is designed to produce electric power by converting chemical energy to electrical energy."@en ; + "https://en.wikipedia.org/wiki/Battery_(electricity)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001049 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001050 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001105 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000717.ttl b/src/cco-iris/ont00000717.ttl new file mode 100644 index 00000000..885a009a --- /dev/null +++ b/src/cco-iris/ont00000717.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000717 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fossil Fuel Power Plant"@en ; + "An Electric Power Station that is designed to convert fossil fuels (e.g. coal, natural gas, or petroleum) into electrical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Fossil_fuel&oldid=1062298144"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001076 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000718.ttl b/src/cco-iris/ont00000718.ttl new file mode 100644 index 00000000..145a0d6e --- /dev/null +++ b/src/cco-iris/ont00000718.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000460 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000718 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Village"@en ; + "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a hamlet but smaller than that of a Town."@en ; + "http://www.merriam-webster.com/dictionary/village" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000719.ttl b/src/cco-iris/ont00000719.ttl new file mode 100644 index 00000000..2d1d8c32 --- /dev/null +++ b/src/cco-iris/ont00000719.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000282 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000719 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Counterfeit Instrument"@en ; + "A Material Artifact that is designed to be a fake replica of some genuine Artifact."@en ; + "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001161 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000720.ttl b/src/cco-iris/ont00000720.ttl new file mode 100644 index 00000000..9be39b2b --- /dev/null +++ b/src/cco-iris/ont00000720.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000020 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000720 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cryogenic Storage Dewar"@en ; + "A Container that is designed to store a Portion of Cryogenic Material (such as liquid helium or liquid oxygen) and which consists of, minimally, walls that are constructed from two or more layers that are separated by a high vacuum to provide thermal insulation between the interior and exterior of the dewar."@en ; + "https://en.wikipedia.org/w/index.php?title=Cryogenic_storage_dewar&oldid=1021282649"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000721.ttl b/src/cco-iris/ont00000721.ttl new file mode 100644 index 00000000..7753e04b --- /dev/null +++ b/src/cco-iris/ont00000721.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000721 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Polarizing Prism"@en ; + "A Prism designed to split a beam of light entering the Prism into components of varying polarization."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000804 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000722.ttl b/src/cco-iris/ont00000722.ttl new file mode 100644 index 00000000..ffb3693b --- /dev/null +++ b/src/cco-iris/ont00000722.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000146 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000722 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sea Level"@en ; + "A Fiat Surface that divides the spheroid composed of Earth and its atmosphere at some point that corresponds to the mean level of calm water in the Earth’s oceans."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000723.ttl b/src/cco-iris/ont00000723.ttl new file mode 100644 index 00000000..73259106 --- /dev/null +++ b/src/cco-iris/ont00000723.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000086 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000723 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vehicle Control System"@en ; + "A Control System that is designed to enable some Agent to control some Vehicle."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000781 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000877 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001019 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000724.ttl b/src/cco-iris/ont00000724.ttl new file mode 100644 index 00000000..2885834d --- /dev/null +++ b/src/cco-iris/ont00000724.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000724 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Parabolic Antenna"@en ; + "Dish Antenna"@en , + "Parabolic Dish"@en ; + "A Radio Antenna that uses a parabolic reflector to direct or receive radio waves and has a very high gain."@en ; + "https://en.wikipedia.org/w/index.php?title=Parabolic_antenna&oldid=1057213241"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001192 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000725.ttl b/src/cco-iris/ont00000725.ttl new file mode 100644 index 00000000..6fa4ed7a --- /dev/null +++ b/src/cco-iris/ont00000725.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000455 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000725 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wedding"@en ; + "Act of Wedding Ceremony"@en ; + "An Act of Ceremony in which two Persons are united in Marriage or a similar institution."@en ; + "https://en.wikipedia.org/w/index.php?title=Wedding&oldid=1063857279"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000726.ttl b/src/cco-iris/ont00000726.ttl new file mode 100644 index 00000000..bedfee0a --- /dev/null +++ b/src/cco-iris/ont00000726.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000004 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000290 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000726 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Dependent Continuant"@en ; + "A Change in which some Independent Continuant has a decrease in the level of some Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001322 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000727.ttl b/src/cco-iris/ont00000727.ttl new file mode 100644 index 00000000..57c13b16 --- /dev/null +++ b/src/cco-iris/ont00000727.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000076 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000727 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication Artifact Function"@en ; + "An Artifact Function that is realized in a process in which meaningful signs are conveyed from one entity to another."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001148 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000728.ttl b/src/cco-iris/ont00000728.ttl new file mode 100644 index 00000000..b1866a05 --- /dev/null +++ b/src/cco-iris/ont00000728.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000215 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000728 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The submillimeter waveband is between the far-infrared and microwave wavebands and is typically taken to have a wavelength of between a few hundred micrometers and a millimeter."@en ; + rdfs:label "Submillimeter Wavelength Radio Telescope"@en ; + "Microwave Telescope"@en ; + "A Radio Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves from the submillimeter waveband (i.e. microwaves) to form an enhanced image of the Object."@en ; + "http://kp12m.as.arizona.edu/docs/what_is_submillimeter.htm, https://en.wikipedia.org/wiki/Submillimetre_astronomy" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000729.ttl b/src/cco-iris/ont00000729.ttl new file mode 100644 index 00000000..9ee50e50 --- /dev/null +++ b/src/cco-iris/ont00000729.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000275 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000729 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spherical Coordinate System"@en ; + "A Spatial Reference System for three-dimensional spatial regions that identifies each point using an ordered triple of numerical coordinates that consist of the radial distance of the point of interest from a fixed origin, its polar angle measured from a fixed zenith direction, and the azimuth angle of its orthogonal projection measured from a fixed direction on a reference plane that passes through the origin and is orthogonal to the zenith."@en ; + "https://en.wikipedia.org/w/index.php?title=Spherical_coordinate_system&oldid=1061029174"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000730.ttl b/src/cco-iris/ont00000730.ttl new file mode 100644 index 00000000..82342b51 --- /dev/null +++ b/src/cco-iris/ont00000730.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000730 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydraulic Power Transfer Unit"@en ; + "A Material Artifact that is designed to transfer hydraulic power from one of an Aircraft's hydraulic systems to another in the event that a system has failed or been turned off."@en ; + "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000731.ttl b/src/cco-iris/ont00000731.ttl new file mode 100644 index 00000000..83542a33 --- /dev/null +++ b/src/cco-iris/ont00000731.ttl @@ -0,0 +1,61 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000731 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en , + "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations ('Deviation Measurement Information Content Entity')."@en ; + rdfs:label "Deviation Measurement Information Content Entity"@en ; + "Conformance Measurement"@en , + "Degree of Conformance"@en , + "Degree of Deviation"@en , + "Deviation Measurement"@en ; + "A Measurement Information Content Entity that is a measurement of the extent to which an entity conforms to how it is expected or supposed to be."@en ; + "a missile impact deviates from its target location by 100 feet" , + "a satellite deviaties from its predicted orbital path by 5 kilometers" , + "an overweight piece of luggage deviates from an airline's maximum allowed weight by +10 pounds" ; + "In order for a Deviation to exist, an entity must first be expected, represented, prescribed, or predicted as being a certain way. Then, at a future time, this value can be compared to its actual, reported, or measured value to determine the Deviation between these values."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000732.ttl b/src/cco-iris/ont00000732.ttl new file mode 100644 index 00000000..1ccdab90 --- /dev/null +++ b/src/cco-iris/ont00000732.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000519 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000732 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 1,000–1 mm"@en ; + rdfs:label "Microwave Frequency"@en ; + "A Radio Frequency that is between 300 MHz and 300 GHz."@en ; + "https://en.wikipedia.org/w/index.php?title=Microwave&oldid=1062124842"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000989 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001108 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000733.ttl b/src/cco-iris/ont00000733.ttl new file mode 100644 index 00000000..47e05f41 --- /dev/null +++ b/src/cco-iris/ont00000733.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000733 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spherical"@en ; + "A Three Dimensional Shape inhering in a bearer in virtue of all of its cross sections being round."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001360 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000734.ttl b/src/cco-iris/ont00000734.ttl new file mode 100644 index 00000000..d6b89d50 --- /dev/null +++ b/src/cco-iris/ont00000734.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000552 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000734 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Land Mine"@en ; + "An Explosive Weapon that is designed to be concealed under or on the ground and to detonate as its target passes over or near it."@en ; + "https://en.wikipedia.org/w/index.php?title=Land_mine&oldid=1060289159"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000735.ttl b/src/cco-iris/ont00000735.ttl new file mode 100644 index 00000000..149d86ab --- /dev/null +++ b/src/cco-iris/ont00000735.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000406 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000735 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Region Bounding Box Identifier List"@en ; + "A Measurement Unit of Geocoordinate that is comprised of 4 pairs of coordinates, one for each of the 4 defining points (North, West, South, East) of a Geospatial Region Bounding Box."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000736.ttl b/src/cco-iris/ont00000736.ttl new file mode 100644 index 00000000..3d93fd7d --- /dev/null +++ b/src/cco-iris/ont00000736.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000092 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000569 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000736 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transducer"@en ; + "A Material Artifact that is designed to convert one form of energy to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001242 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000737.ttl b/src/cco-iris/ont00000737.ttl new file mode 100644 index 00000000..5dc817b5 --- /dev/null +++ b/src/cco-iris/ont00000737.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000483 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000737 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Forward Operations Base"@en ; + "Forward Operating Base"@en ; + "A Military Base that is located relatively close to an offensive Area of Operations, is supported by the Base of Operations, and is designed to support local strategic objectives and tactical operations."@en ; + "FOB" ; + "https://en.wikipedia.org/w/index.php?title=Forward_operating_base&oldid=1059263624"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000738.ttl b/src/cco-iris/ont00000738.ttl new file mode 100644 index 00000000..4351ddf2 --- /dev/null +++ b/src/cco-iris/ont00000738.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000738 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Length"@en ; + "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's greatest extent in one direction."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001367 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000739.ttl b/src/cco-iris/ont00000739.ttl new file mode 100644 index 00000000..d0e59e47 --- /dev/null +++ b/src/cco-iris/ont00000739.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000676 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000739 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Sojourn"@en ; + "An Act of Inhabitancy in which a Person lives in a dwelling temporarily, often during stages of an Act of Travel."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000740.ttl b/src/cco-iris/ont00000740.ttl new file mode 100644 index 00000000..9d8e16db --- /dev/null +++ b/src/cco-iris/ont00000740.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000002 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000740 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "This class is designed to group continuants according to a very broad criterion and is not intended to be used as a parent class for entities that can be more specifically represented under another class. Hence, Natural Resource may be an appropriate subtype but Money, Oil, and Gold Mine are not."@en ; + rdfs:label "Resource"@en ; + "A Continuant that is owned by, in the possession of, or is otherwise controlled by an Agent such that it could be used by that Agent."@en ; + "a group of interns" , + "a knowledge base" , + "a plot of land" , + "a software program" , + "a sum of money" , + "a vehicle" ; + "Resources are Resources for some Agent. If no instance of Agent existed, no instance of Resource would exist either. It is not a requirement that something be valuable in order for it to be a Resource. Thus the value of something can drastically change without altering whether that thing is a Resource."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000741.ttl b/src/cco-iris/ont00000741.ttl new file mode 100644 index 00000000..77d800a0 --- /dev/null +++ b/src/cco-iris/ont00000741.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001936 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000544 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000741 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Targeting"@en ; + "A Planned Act wherein some Agent maintains one or more entities as the objects of potential action given some operational requirement."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000742.ttl b/src/cco-iris/ont00000742.ttl new file mode 100644 index 00000000..1c7d0d4f --- /dev/null +++ b/src/cco-iris/ont00000742.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000409 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000454 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000742 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ignition System"@en ; + "A Material Artifact that is designed to produce an Ignition process."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000743.ttl b/src/cco-iris/ont00000743.ttl new file mode 100644 index 00000000..8330c194 --- /dev/null +++ b/src/cco-iris/ont00000743.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000702 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000743 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Chart"@en ; + "An Image that is designed to carry some Representational Information Content Entity that is prescribed by some canonical visual format."@en ; + "Adapted from “Chart.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/chart. Accessed 4 Aug. 2024." ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000744.ttl b/src/cco-iris/ont00000744.ttl new file mode 100644 index 00000000..4fec5d93 --- /dev/null +++ b/src/cco-iris/ont00000744.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000433 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000744 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Social Group Membership"@en ; + "An Act of Association wherein a Person belongs to some Social Group."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000745.ttl b/src/cco-iris/ont00000745.ttl new file mode 100644 index 00000000..fbc46e43 --- /dev/null +++ b/src/cco-iris/ont00000745.ttl @@ -0,0 +1,61 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000029 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000154 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000745 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Point Estimate Information Content Entity"@en ; + "Best Estimate"@en , + "Point Estimate"@en , + "Point Estimate Measurement Information Content Entity"@en ; + "An Estimate Information Content Entity that consists of a single value for the measured entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000896 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001176 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000746.ttl b/src/cco-iris/ont00000746.ttl new file mode 100644 index 00000000..4a18442d --- /dev/null +++ b/src/cco-iris/ont00000746.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000394 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000431 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000638 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000746 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Combustion Engine"@en ; + "A Heat Engine that is designed to convert thermal energy that is generated through a local Combustion process into mechanical energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000747.ttl b/src/cco-iris/ont00000747.ttl new file mode 100644 index 00000000..e3e72a53 --- /dev/null +++ b/src/cco-iris/ont00000747.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000549 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000747 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Canal"@en ; + "A Water Transportation Artifact that is an artificial Hydrographic Feature designed to convey water or enable Watercraft to travel inland."@en ; + "https://en.wikipedia.org/w/index.php?title=Canal&oldid=1059514223" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000748.ttl b/src/cco-iris/ont00000748.ttl new file mode 100644 index 00000000..e5e95e50 --- /dev/null +++ b/src/cco-iris/ont00000748.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000748 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bullet"@en ; + "A Portion of Ammunition that is designed to be projected by a Firearm, Sling, Slingshot, or Air Gun, but which does not (typically) contain explosives."@en ; + "https://en.wikipedia.org/w/index.php?title=Bullet&oldid=1062391591"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001150 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000749.ttl b/src/cco-iris/ont00000749.ttl new file mode 100644 index 00000000..690afab0 --- /dev/null +++ b/src/cco-iris/ont00000749.ttl @@ -0,0 +1,67 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000498 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000749 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Julian Day Number"@en ; + "A Decimal Date Identifier that designates some Julian Day by using a number to indicate the sequential ordering of the Day since the Julian Date epoch."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000833 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000894 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000750.ttl b/src/cco-iris/ont00000750.ttl new file mode 100644 index 00000000..015db62e --- /dev/null +++ b/src/cco-iris/ont00000750.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000750 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Text Messaging"@en ; + "Act of Text Messaging"@en , + "Act of Texting"@en ; + "An Act of Communication by Media involving the exchange of brief written messages between fixed-line phone or mobile phone and fixed or portable devices over a network."@en ; + "https://en.wikipedia.org/w/index.php?title=Text_messaging&oldid=1062261405"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000751.ttl b/src/cco-iris/ont00000751.ttl new file mode 100644 index 00000000..46ada4f2 --- /dev/null +++ b/src/cco-iris/ont00000751.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001910 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000751 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Action Permission"@en ; + "Authorization"@en , + "License"@en ; + "A Process Regulation that permits some Process."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000752.ttl b/src/cco-iris/ont00000752.ttl new file mode 100644 index 00000000..59f3c8e2 --- /dev/null +++ b/src/cco-iris/ont00000752.ttl @@ -0,0 +1,93 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001857 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000099 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000313 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000514 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000752 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:comment "This is a defined class used to group process profiles of Wave Processes. Note that not every relevant process profile can be asserted as a subtype, however, because they (e.g. Frequency and Amplitude) are applicable to other processes as well (e.g. Oscillation Process)."@en ; + rdfs:label "Wave Process Profile"@en ; + "A Process Profile of a Wave Process."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000760 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001227 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001286 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000753.ttl b/src/cco-iris/ont00000753.ttl new file mode 100644 index 00000000..ecebaebb --- /dev/null +++ b/src/cco-iris/ont00000753.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000753 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 1,000–100 km"@en ; + rdfs:label "Ultra Low Frequency"@en ; + "ITU Band Number 3"@en ; + "A Radio Frequency that is between 300 Hz and 3 kHz."@en ; + "ULF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000754.ttl b/src/cco-iris/ont00000754.ttl new file mode 100644 index 00000000..ccf226ea --- /dev/null +++ b/src/cco-iris/ont00000754.ttl @@ -0,0 +1,80 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000261 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000391 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000490 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000610 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000754 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Divisions between EM radiation frequencies are fiat and sources vary on where to draw boundaries."@en ; + rdfs:label "Electromagnetic Radiation Frequency"@en ; + "A Frequency that is characterized by the rate of Oscillations per second of an Electromagnetic Wave."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001047 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001056 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001337 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000755.ttl b/src/cco-iris/ont00000755.ttl new file mode 100644 index 00000000..7253009b --- /dev/null +++ b/src/cco-iris/ont00000755.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000026 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000755 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Zenith"@en ; + "A One-Dimensional Spatial Region that extends from a given location upward along the local vertical direction pointing in the direction opposite the apparent Gravitational Force at that location."@en ; + "https://en.wikipedia.org/w/index.php?title=Zenith&oldid=1052625030"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000756.ttl b/src/cco-iris/ont00000756.ttl new file mode 100644 index 00000000..c14ff536 --- /dev/null +++ b/src/cco-iris/ont00000756.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000756 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Database"@en ; + "An Information Bearing Artifact that is designed to bear some set of specific Information Content Entities and to be rapidly searchable and retrievable."@en ; + "https://en.wikipedia.org/w/index.php?title=Database&oldid=1057024641"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000757.ttl b/src/cco-iris/ont00000757.ttl new file mode 100644 index 00000000..1220ee57 --- /dev/null +++ b/src/cco-iris/ont00000757.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000052 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000757 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Synagogue"@en ; + "A Religious Facility that is designed for Judaic worship and prayer."@en ; + "https://en.wikipedia.org/w/index.php?title=Synagogue&oldid=1063773298"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000758.ttl b/src/cco-iris/ont00000758.ttl new file mode 100644 index 00000000..3a9c5607 --- /dev/null +++ b/src/cco-iris/ont00000758.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000758 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Component Role"@en ; + "A Role that inheres in an entity having a discrete structure in virtue of that entity being part of a system considered at a particular level of analysis."@en ; + "ISO/IEC. 1998. Information Technology ― System and Software Integrity Levels Geneva, Switzerland: International Organization for Standardization (ISO)/International Electrotechnical Commission (IEC). ISO/IEC. 15026:1998. : 3.1"@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000759.ttl b/src/cco-iris/ont00000759.ttl new file mode 100644 index 00000000..1e1dc930 --- /dev/null +++ b/src/cco-iris/ont00000759.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000759 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Color Saturation"@en ; + "An Optical Property that inheres in a bearer in virtue of its capacity to reflect high intensity light distributed across fewer wavelengths, typically considered on a continuum of purity."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000784 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000760.ttl b/src/cco-iris/ont00000760.ttl new file mode 100644 index 00000000..69dee2c7 --- /dev/null +++ b/src/cco-iris/ont00000760.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000752 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000760 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Surface Wave Profile"@en ; + "Surface Wave"@en ; + "A Wave Process Profile in which the Wave Process propogates along the surface of a medium and which involves both transverse and longitudinal wave profiles such that the motion of the displacement of participating particles is circular or elliptical."@en ; + "the motion of an ocean wave" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000761.ttl b/src/cco-iris/ont00000761.ttl new file mode 100644 index 00000000..3917c0f5 --- /dev/null +++ b/src/cco-iris/ont00000761.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000226 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000761 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pier"@en ; + "A Transportation Facility that is designed to partially enclose a harbor and form a landing place for Watercraft."@en ; + "https://en.wikipedia.org/w/index.php?title=Pier&oldid=1057802753"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000762.ttl b/src/cco-iris/ont00000762.ttl new file mode 100644 index 00000000..651a0994 --- /dev/null +++ b/src/cco-iris/ont00000762.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000415 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000762 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fungicide Artifact Function"@en ; + "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some fungus or fungal spore."@en ; + "https://en.wikipedia.org/w/index.php?title=Fungicide&oldid=1056769271"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000763.ttl b/src/cco-iris/ont00000763.ttl new file mode 100644 index 00000000..8f88f6a2 --- /dev/null +++ b/src/cco-iris/ont00000763.ttl @@ -0,0 +1,81 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000296 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000712 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000763 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Velocity"@en ; + "A Process Profile of an object's Motion that is characterized by its Speed and direction with respect to a frame of reference."@en ; + "https://en.wikipedia.org/w/index.php?title=Velocity&oldid=1063300750"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000789 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001219 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000764.ttl b/src/cco-iris/ont00000764.ttl new file mode 100644 index 00000000..f540cd00 --- /dev/null +++ b/src/cco-iris/ont00000764.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000504 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000764 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Focusing Artifact Function"@en ; + "An Optical Processing Artifact Function that is realized by an Artifact participating in a light focusing event in which the Artifact causes the light beam to converge on a target spatial point."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000765.ttl b/src/cco-iris/ont00000765.ttl new file mode 100644 index 00000000..00af854c --- /dev/null +++ b/src/cco-iris/ont00000765.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000062 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000007 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000099 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000572 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000765 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wave Production"@en ; + "Wave Production Process"@en ; + "A Natural Process in which a Wave Process is generated."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000766.ttl b/src/cco-iris/ont00000766.ttl new file mode 100644 index 00000000..8b185dad --- /dev/null +++ b/src/cco-iris/ont00000766.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000766 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hardness"@en ; + "A Quality that inheres in a bearer in virtue of the degree to which it can be turned, bowed, or twisted without breaking."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000767.ttl b/src/cco-iris/ont00000767.ttl new file mode 100644 index 00000000..776f61bd --- /dev/null +++ b/src/cco-iris/ont00000767.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000767 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "A Lubrication System typical consists of a reservoir, pump, heat exchanger, filter, regulator, valves, sensors, pipes, and hoses. In some cases it also includes the passageways and openings within the artifact it is designed to lubricate. For example, the oil holes in a bearing and crankshaft."@en ; + rdfs:label "Lubrication System"@en ; + "A Material Artifact that is designed to contain, transfer, and regulate the flow of lubricant to multiple locations in an Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000768.ttl b/src/cco-iris/ont00000768.ttl new file mode 100644 index 00000000..df8f9b66 --- /dev/null +++ b/src/cco-iris/ont00000768.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000768 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Amount"@en ; + "A Quality that inheres in a bearer in virtue of the total, aggregate or sum of a number of discrete items or material the entity contains as parts."@en ; + "http://en.wiktionary.org/wiki/amount" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000769.ttl b/src/cco-iris/ont00000769.ttl new file mode 100644 index 00000000..85e596f1 --- /dev/null +++ b/src/cco-iris/ont00000769.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000133 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000769 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Requesting"@en ; + "An Act of Directive Communication performed by asking for something."@en ; + "http://www.merriam-webster.com/dictionary/request" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000770.ttl b/src/cco-iris/ont00000770.ttl new file mode 100644 index 00000000..02461973 --- /dev/null +++ b/src/cco-iris/ont00000770.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000770 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Density"@en ; + "A Measurement Unit that is used as a standard for measurement of the mass of an object per unit of its total volume."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001402 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001568 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001569 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000771.ttl b/src/cco-iris/ont00000771.ttl new file mode 100644 index 00000000..f1e63343 --- /dev/null +++ b/src/cco-iris/ont00000771.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000199 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000304 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000547 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000771 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Imaging Instrument"@en ; + "A Material Artifact that is designed to produce images (visual representations) of an entity."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000772.ttl b/src/cco-iris/ont00000772.ttl new file mode 100644 index 00000000..bf6d81b9 --- /dev/null +++ b/src/cco-iris/ont00000772.ttl @@ -0,0 +1,47 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000772 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "An Impulse changes the Momentum (and potentially also the direction of Motion) of the object it is applied to and is typically measured in Newton meters."@en ; + rdfs:label "Impulsive Force"@en ; + "Imp"@en , + "Impulse"@en , + "J"@en ; + "A Process Profile that is the integral of a Force that is applied to a portion of matter over a period of time."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000773.ttl b/src/cco-iris/ont00000773.ttl new file mode 100644 index 00000000..afa0f0b6 --- /dev/null +++ b/src/cco-iris/ont00000773.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000773 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Curvilinear Motion"@en ; + "Curved Motion"@en ; + "A Translational Motion process in which an Object moves along a curved path."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000789 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000774.ttl b/src/cco-iris/ont00000774.ttl new file mode 100644 index 00000000..72293d30 --- /dev/null +++ b/src/cco-iris/ont00000774.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000199 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000774 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Video Camera"@en ; + "A Camera that is designed to form and digitally or physically record a continuous stream of subsequent images of an entity or scene such that the images can be played back in succession as a video."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001034 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000775.ttl b/src/cco-iris/ont00000775.ttl new file mode 100644 index 00000000..6993f961 --- /dev/null +++ b/src/cco-iris/ont00000775.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000775 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Locomotive"@en ; + "A Rail Transport Vehicle that is designed to provide the motive power for a Train."@en ; + "https://en.wikipedia.org/w/index.php?title=Locomotive&oldid=1062802629"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000796 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000776.ttl b/src/cco-iris/ont00000776.ttl new file mode 100644 index 00000000..c1308f19 --- /dev/null +++ b/src/cco-iris/ont00000776.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000776 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Signal Detection Artifact Function"@en ; + "An Artifact Function that is realized in the process of discerning between information-bearing patterns and random patterns, or noise, that distract from the information."@en ; + "https://en.wikipedia.org/w/index.php?title=Detection_theory&oldid=1049765804"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000777.ttl b/src/cco-iris/ont00000777.ttl new file mode 100644 index 00000000..ed6953b7 --- /dev/null +++ b/src/cco-iris/ont00000777.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000777 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydraulic Motor"@en ; + "A Physically Powered Engine that converts hydraulic pressure and flow into torque and angular displacement."@en ; + "https://en.wikipedia.org/w/index.php?title=Hydraulic_motor&oldid=1027427666"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001221 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000778.ttl b/src/cco-iris/ont00000778.ttl new file mode 100644 index 00000000..b737f5b3 --- /dev/null +++ b/src/cco-iris/ont00000778.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000778 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Chemical Depot"@en ; + "A Storage Facility that is designed to store chemicals."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000779.ttl b/src/cco-iris/ont00000779.ttl new file mode 100644 index 00000000..fa36d685 --- /dev/null +++ b/src/cco-iris/ont00000779.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000024 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000779 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Cryosphere"@en ; + "A fiat object part of the frozen part of a natural satellite's hydosphere"@en ; + "https://oceanservice.noaa.gov/facts/cryosphere.html (accessed 03/06/2023)"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000780.ttl b/src/cco-iris/ont00000780.ttl new file mode 100644 index 00000000..68113386 --- /dev/null +++ b/src/cco-iris/ont00000780.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001907 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000507 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000780 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ethnicity"@en ; + "A Quality that inheres in its bearers by virtue of a common heritage, often consisting of a common language, a common culture (often including a shared religion) and an ideology that stresses common ancestry or endogamy."@en ; + "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000781.ttl b/src/cco-iris/ont00000781.ttl new file mode 100644 index 00000000..a37b2805 --- /dev/null +++ b/src/cco-iris/ont00000781.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000012 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000153 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000723 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000781 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Control System"@en ; + "A Material Artifact that is designed to manage, command, direct, or regulate the behavior of at least one other Artifact."@en ; + "https://en.wikipedia.org/w/index.php?title=Control_system&oldid=1061817176"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000782.ttl b/src/cco-iris/ont00000782.ttl new file mode 100644 index 00000000..9a3312dd --- /dev/null +++ b/src/cco-iris/ont00000782.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000245 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000248 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000381 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000423 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000782 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Factory"@en ; + "A Facility that is designed for manufacturing or refining material products."@en ; + "https://en.wikipedia.org/w/index.php?title=Factory&oldid=1064125324"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001283 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001311 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000783.ttl b/src/cco-iris/ont00000783.ttl new file mode 100644 index 00000000..b7e0d9aa --- /dev/null +++ b/src/cco-iris/ont00000783.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001819 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000557 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000783 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Stasis of Non-Mission Capable Maintenance"@en ; + "A Stasis of Non-Mission Capable during which the participating Continuant is not capable of performing its primary functions for the specified Mission due to participating in an Act Of Maintenance."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000950 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000784.ttl b/src/cco-iris/ont00000784.ttl new file mode 100644 index 00000000..c21ee69e --- /dev/null +++ b/src/cco-iris/ont00000784.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000628 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000648 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000759 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000784 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Property"@en ; + "An Electromagnetic Radiation Property that is realized when its bearer interacts with electromagnetic waves within the visible light spectrum."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001126 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001186 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000785.ttl b/src/cco-iris/ont00000785.ttl new file mode 100644 index 00000000..d096625d --- /dev/null +++ b/src/cco-iris/ont00000785.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000785 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Repeater"@en ; + "A Radio Transceiver that is designed to receive a radio signal, amplify it, and retransmit it (often on another frequency)."@en ; + "https://en.wikipedia.org/w/index.php?title=Repeater&oldid=1040047439"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001320 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000786.ttl b/src/cco-iris/ont00000786.ttl new file mode 100644 index 00000000..0ef2c99c --- /dev/null +++ b/src/cco-iris/ont00000786.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000611 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000786 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Role"@en ; + "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Role that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000787.ttl b/src/cco-iris/ont00000787.ttl new file mode 100644 index 00000000..743c79c5 --- /dev/null +++ b/src/cco-iris/ont00000787.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000787 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Altitude"@en ; + "A Height that inheres in a Site that externally connects an Independent Continuant to either the surface of the Earth or the Earth's mean Sea Level."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000967 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000788.ttl b/src/cco-iris/ont00000788.ttl new file mode 100644 index 00000000..e279f2ea --- /dev/null +++ b/src/cco-iris/ont00000788.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000634 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000788 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Turbine Steam Engine"@en ; + "Steam Turbine"@en ; + "A Steam Engine that is designed to extract thermal energy from pressurized steam and use it to do mechanical work on a rotating output shaft."@en ; + "https://en.wikipedia.org/w/index.php?title=Steam_turbine&oldid=1060224962"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000789.ttl b/src/cco-iris/ont00000789.ttl new file mode 100644 index 00000000..44c26aea --- /dev/null +++ b/src/cco-iris/ont00000789.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000384 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000763 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000773 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000789 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Translational Motion"@en ; + "A Motion Process in which the participating Object changes its position from one portion of space to another."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001133 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000790.ttl b/src/cco-iris/ont00000790.ttl new file mode 100644 index 00000000..bba7bf1e --- /dev/null +++ b/src/cco-iris/ont00000790.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000790 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Direct Current Power Source"@en ; + "An Electrical Power Source that is designed to transfer electrical power in the form of direct current."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001049 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000791.ttl b/src/cco-iris/ont00000791.ttl new file mode 100644 index 00000000..f3a5d869 --- /dev/null +++ b/src/cco-iris/ont00000791.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000267 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000412 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000791 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Chemical Reaction Artifact Function"@en ; + "An Artifact Function that is realized in a process that leads to the transformation of one set of chemical substances to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Chemical_reaction&oldid=1063262412"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000808 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001160 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001234 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001281 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000792.ttl b/src/cco-iris/ont00000792.ttl new file mode 100644 index 00000000..33949f37 --- /dev/null +++ b/src/cco-iris/ont00000792.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000792 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Catadioptric Optical Telescope"@en ; + "Catadioptric Telescope"@en ; + "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light through the use of a combination of Lenses and Mirrors to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Catadioptric_system&oldid=1017210114"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001009 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000793.ttl b/src/cco-iris/ont00000793.ttl new file mode 100644 index 00000000..30fb4ead --- /dev/null +++ b/src/cco-iris/ont00000793.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000793 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel Ventilation System"@en ; + "A Fluid Control Artifact that is designed to allow air into the Fuel Tank to take the place of burned fuel."@en ; + "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000794.ttl b/src/cco-iris/ont00000794.ttl new file mode 100644 index 00000000..4b430f23 --- /dev/null +++ b/src/cco-iris/ont00000794.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000207 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000794 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Ellipse"@en ; + "A One-Dimensional Geospatial Boundary that is formed by following a symmetric arc between four vertices which are connected to the center point of the ellipse via a straight line."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000795.ttl b/src/cco-iris/ont00000795.ttl new file mode 100644 index 00000000..603c27dd --- /dev/null +++ b/src/cco-iris/ont00000795.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000098 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000162 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000194 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000795 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Conduction Artifact Function"@en ; + "An Electrical Artifact Function that is realized by an Artifact being used to conduct an electric current."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000796.ttl b/src/cco-iris/ont00000796.ttl new file mode 100644 index 00000000..cee79cdf --- /dev/null +++ b/src/cco-iris/ont00000796.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000618 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000775 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000796 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rail Transport Vehicle"@en ; + "A Ground Vehicle that is designed to convey cargo, passengers, or equipment by Railway."@en ; + "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000928 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001030 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001198 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000797.ttl b/src/cco-iris/ont00000797.ttl new file mode 100644 index 00000000..befd354a --- /dev/null +++ b/src/cco-iris/ont00000797.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000797 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hazel"@en ; + "A Color that is a combination of Brown and Green, typically associated with eye color."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000798.ttl b/src/cco-iris/ont00000798.ttl new file mode 100644 index 00000000..211dafdf --- /dev/null +++ b/src/cco-iris/ont00000798.ttl @@ -0,0 +1,137 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000101 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000064 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000159 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000189 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000382 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000597 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000702 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000756 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Information Bearing Artifact"@en ; + "A Material Artifact that carries an Information Content Entity and is designed to do so using a particular format or structure."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000799 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000874 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000893 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001002 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001064 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001156 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001228 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001298 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000799.ttl b/src/cco-iris/ont00000799.ttl new file mode 100644 index 00000000..9b9360ec --- /dev/null +++ b/src/cco-iris/ont00000799.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000493 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000799 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "List"@en ; + "An Information Bearing Artifact that consists of one or more Information Bearing Artifacts that carry Information Content Entities and are the subjects of some Sequence Position Ordinality."@en ; + "https://en.wikipedia.org/w/index.php?title=List_(abstract_data_type)&oldid=1041588680"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000800.ttl b/src/cco-iris/ont00000800.ttl new file mode 100644 index 00000000..91604ede --- /dev/null +++ b/src/cco-iris/ont00000800.ttl @@ -0,0 +1,122 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000132 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000073 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000211 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000223 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000529 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000619 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Day"@en ; + "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one rotation around its Rotational Axis as specified relative to a particular Temporal Reference System."@en ; + "Unless otherwise specified, a Day is assumed to be relative to the rotational motion of the Earth and is approximately equal to a twenty-four hour temporal region for which the start and end times are specified by the Temporal Reference System used."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=day" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000921 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001058 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000801.ttl b/src/cco-iris/ont00000801.ttl new file mode 100644 index 00000000..a839d7a2 --- /dev/null +++ b/src/cco-iris/ont00000801.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000161 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000801 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "y-Axis"@en ; + "A Coordinate System Axis designated by the variable 'y'."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000802.ttl b/src/cco-iris/ont00000802.ttl new file mode 100644 index 00000000..63ee489c --- /dev/null +++ b/src/cco-iris/ont00000802.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000641 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000802 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stage"@en ; + "An Entertainment Facility that is designed to provide a space upon which entertaining performances or productions can occur."@en ; + "https://en.wikipedia.org/wiki/Stage_(theatre)" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000803.ttl b/src/cco-iris/ont00000803.ttl new file mode 100644 index 00000000..8930121c --- /dev/null +++ b/src/cco-iris/ont00000803.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000803 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Round"@en ; + "Circular"@en ; + "A Shape Quality that inheres in a bearer in virtue of every point along its circumference being equidistant from the center."@en ; + "http://www.merriam-webster.com/dictionary/round" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000804.ttl b/src/cco-iris/ont00000804.ttl new file mode 100644 index 00000000..8e1a99fb --- /dev/null +++ b/src/cco-iris/ont00000804.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000001 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000028 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000136 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000721 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000804 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prism"@en ; + "An Optical Instrument that is designed to refract light and which consists of a transparent material with flat polished surfaces where at least two of these surfaces have an angle between them."@en ; + "https://en.wikipedia.org/w/index.php?title=Prism&oldid=1060221124"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000988 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000805.ttl b/src/cco-iris/ont00000805.ttl new file mode 100644 index 00000000..a97fe2ba --- /dev/null +++ b/src/cco-iris/ont00000805.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000805 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Coiled"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer being wound in concentric rings or spirals."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000806.ttl b/src/cco-iris/ont00000806.ttl new file mode 100644 index 00000000..6cc3a306 --- /dev/null +++ b/src/cco-iris/ont00000806.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000581 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000806 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Tool"@en ; + "A Tool that is designed to be actuated by a Power Source and mechanism other than or in addition to manual labor."@en ; + "https://en.wikipedia.org/w/index.php?title=Power_tool&oldid=1057147715"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000807.ttl b/src/cco-iris/ont00000807.ttl new file mode 100644 index 00000000..a512c520 --- /dev/null +++ b/src/cco-iris/ont00000807.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000394 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000807 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Compression Ignition Engine"@en ; + "An Internal Combustion Engine that is designed to operate by igniting a portion of Fuel and Oxidizer mixture using heat generated via compression of the mixture."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000808.ttl b/src/cco-iris/ont00000808.ttl new file mode 100644 index 00000000..7785e900 --- /dev/null +++ b/src/cco-iris/ont00000808.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000791 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000808 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reactant Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in a process in which a substance or compound is added to a system in order to bring about a chemical reaction and is consumed in the course of the reaction."@en ; + "https://en.wikipedia.org/w/index.php?title=Reagent&oldid=1017651471"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000809.ttl b/src/cco-iris/ont00000809.ttl new file mode 100644 index 00000000..0dd33531 --- /dev/null +++ b/src/cco-iris/ont00000809.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000809 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Submersible Artifact Function"@en ; + "An Artifact Function that is realized in processes of operating while submerged in water."@en ; + "https://en.wikipedia.org/w/index.php?title=Submersible&oldid=1062994844"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000810.ttl b/src/cco-iris/ont00000810.ttl new file mode 100644 index 00000000..f2a12292 --- /dev/null +++ b/src/cco-iris/ont00000810.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000619 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000810 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Week Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Weeks and spans at least one Week."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000811.ttl b/src/cco-iris/ont00000811.ttl new file mode 100644 index 00000000..30aaeaae --- /dev/null +++ b/src/cco-iris/ont00000811.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000811 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Wave Conversion Artifact Function"@en ; + "An Artifact Function that is realized by an Artifact being used to convert electric power into radio waves or radio waves into electric power."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000812.ttl b/src/cco-iris/ont00000812.ttl new file mode 100644 index 00000000..f803f4d9 --- /dev/null +++ b/src/cco-iris/ont00000812.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000812 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electromagnetic Pulse"@en ; + "EMP"@en , + "Transient Electromagnetic Disturbance"@en ; + "An Electromagnetic Wave Process that consists of a short high-energy burst of electromagnetic energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_pulse&oldid=1060859738"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000951 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000813.ttl b/src/cco-iris/ont00000813.ttl new file mode 100644 index 00000000..51935fef --- /dev/null +++ b/src/cco-iris/ont00000813.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000457 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000813 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Nuclear Fuel"@en ; + "A Portion of Material that is designed to be used in a nuclear fission process to produce energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000814.ttl b/src/cco-iris/ont00000814.ttl new file mode 100644 index 00000000..6dd4f599 --- /dev/null +++ b/src/cco-iris/ont00000814.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000814 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Water Treatment Facility"@en ; + "A Facility that is designed for making water more acceptable for a specific end-use."@en ; + "https://en.wikipedia.org/w/index.php?title=Water_treatment&oldid=1061706931"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000815.ttl b/src/cco-iris/ont00000815.ttl new file mode 100644 index 00000000..5650dd64 --- /dev/null +++ b/src/cco-iris/ont00000815.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000815 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Folded"@en ; + "A Shape Quality inhering in a bearer in virtue of one part of the bearer being layered over another connected part."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000816.ttl b/src/cco-iris/ont00000816.ttl new file mode 100644 index 00000000..080c6b91 --- /dev/null +++ b/src/cco-iris/ont00000816.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000255 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000816 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Nitrogen"@en ; + "A Portion of Cryogenic Material that is composed (almost) entirely of liquid nitrogen."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000817.ttl b/src/cco-iris/ont00000817.ttl new file mode 100644 index 00000000..91422e64 --- /dev/null +++ b/src/cco-iris/ont00000817.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000207 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000817 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Line String"@en ; + "A One-Dimensional Geospatial Boundary that has two or more Geospatial Positions as vertices, where each vertex is connected to only one other vertex by a straight line."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000939 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001130 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000818.ttl b/src/cco-iris/ont00000818.ttl new file mode 100644 index 00000000..d875fc8c --- /dev/null +++ b/src/cco-iris/ont00000818.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000818 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Orange"@en ; + "A Color that is between Red and Yellow with a wavelength in the visible spectrum typically between 590 to 635 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000819.ttl b/src/cco-iris/ont00000819.ttl new file mode 100644 index 00000000..a9e1e142 --- /dev/null +++ b/src/cco-iris/ont00000819.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000135 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000335 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000819 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis"@en ; + "A Process in which one or more Independent Continuants endure in an unchanging condition."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000820.ttl b/src/cco-iris/ont00000820.ttl new file mode 100644 index 00000000..97b6b654 --- /dev/null +++ b/src/cco-iris/ont00000820.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000246 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000820 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Function"@en ; + "A Stasis of Realizable Entity in which some Independent Continuant bears some Function that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000821.ttl b/src/cco-iris/ont00000821.ttl new file mode 100644 index 00000000..518fed39 --- /dev/null +++ b/src/cco-iris/ont00000821.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000684 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000821 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Promising"@en ; + "An Act of Commissive Communication performed by declaring that the promising agent will do, or refrain from doing, the specified action."@en ; + "http://www.merriam-webster.com/dictionary/promise" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001162 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000822.ttl b/src/cco-iris/ont00000822.ttl new file mode 100644 index 00000000..fb713a46 --- /dev/null +++ b/src/cco-iris/ont00000822.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000822 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 100–10 km"@en ; + rdfs:label "Very Low Frequency"@en ; + "ITU Band Number 4"@en ; + "A Radio Frequency that is between 3 and 30 kHz."@en ; + "VLF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000823.ttl b/src/cco-iris/ont00000823.ttl new file mode 100644 index 00000000..12eb76f2 --- /dev/null +++ b/src/cco-iris/ont00000823.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000823 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Communication Artifact Function"@en ; + "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of visible light."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001148 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000824.ttl b/src/cco-iris/ont00000824.ttl new file mode 100644 index 00000000..71c8dacb --- /dev/null +++ b/src/cco-iris/ont00000824.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000246 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000824 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Role"@en ; + "A Stasis of Realizable Entity in which some Independent Continuant bears some Role that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000825.ttl b/src/cco-iris/ont00000825.ttl new file mode 100644 index 00000000..a94d2df1 --- /dev/null +++ b/src/cco-iris/ont00000825.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000059 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000346 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000825 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Network Line"@en ; + "A Communication Artifact that is designed to be the physical transmission medium that connects two or more Telecommunication Network Nodes within a Telecommunication Network to facilitate communication between the Nodes."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications_link&oldid=1062252217"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000826.ttl b/src/cco-iris/ont00000826.ttl new file mode 100644 index 00000000..1af4184b --- /dev/null +++ b/src/cco-iris/ont00000826.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000826 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Refractivity"@en ; + "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of that bearer to change the direction of a propagating wave when passing through it."@en ; + "https://en.wikipedia.org/w/index.php?title=Refractive_index&oldid=1062519140"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001137 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000827.ttl b/src/cco-iris/ont00000827.ttl new file mode 100644 index 00000000..9a6a8165 --- /dev/null +++ b/src/cco-iris/ont00000827.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000080 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000223 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000540 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000827 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Time of Day Identifier"@en ; + "A Temporal Instant Identifier that designates some Time of Day."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000973 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000828.ttl b/src/cco-iris/ont00000828.ttl new file mode 100644 index 00000000..06700c84 --- /dev/null +++ b/src/cco-iris/ont00000828.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000415 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000828 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pesticide Artifact Function"@en ; + "A Poison Artifact Function that is realized in a process which causes illness in, or the death of, a living thing that is detrimental to humans or human concerns."@en ; + "http://www.dictionary.com/browse/pesticide" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000831 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001123 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001255 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000829.ttl b/src/cco-iris/ont00000829.ttl new file mode 100644 index 00000000..36f1068e --- /dev/null +++ b/src/cco-iris/ont00000829.ttl @@ -0,0 +1,67 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001837 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001908 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000390 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000829 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment """Standards of date, time, and time zone data formats: +ISO/WD 8601-2 (http://www.loc.gov/standards/datetime/iso-tc154-wg5_n0039_iso_wd_8601-2_2016-02-16.pdf) +W3C (https://www.w3.org/TR/NOTE-datetime)"""@en , + "There is no class 'Time Zone' (the region), only 'Time Zone Identifier' (the designator for some region). Instances of 'Time Zone Identifier' should be related to instances of 'Information Bearing Entity' by means of the object properites 'uses time zone identifier' and 'time zone identifier used by' as appropriate. This is supposed to be analogous to the way we represent the relationship between measurement values and measurement units, where the relevant instance of Information Bearing Entity 'uses measurement unit' some instance of Measurement Unit (i.e., an instance of Information Content Entity)."@en ; + rdfs:label "Time Zone Identifier"@en ; + "A Spatial Region Identifier that designates the region associated with some uniform standard time for legal, commercial, or social purposes."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000830.ttl b/src/cco-iris/ont00000830.ttl new file mode 100644 index 00000000..bd63c846 --- /dev/null +++ b/src/cco-iris/ont00000830.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000830 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "An object's speed is the scalar absolute value of it's Velocity."@en ; + rdfs:label "Speed"@en ; + "A Process Profile that is characterized by the magnitude of an object's motion with respect to a frame of reference during some time period."@en ; + "https://en.wikipedia.org/w/index.php?title=Speed&oldid=1058949945"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000831.ttl b/src/cco-iris/ont00000831.ttl new file mode 100644 index 00000000..9a029d63 --- /dev/null +++ b/src/cco-iris/ont00000831.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000538 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000828 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000831 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Herbicide Artifact Function"@en ; + "A Pesticide Artifact Function that is realized in a process which causes harm to, or the death to, unwanted plants."@en ; + "https://en.wikipedia.org/w/index.php?title=Herbicide&oldid=1061228045"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000832.ttl b/src/cco-iris/ont00000832.ttl new file mode 100644 index 00000000..c6e3cc78 --- /dev/null +++ b/src/cco-iris/ont00000832.ttl @@ -0,0 +1,90 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000225 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000674 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000832 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Year"@en ; + "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one Orbital Revolution around its Primary Body as specified relative to a particular Temporal Reference System."@en ; + "Unless otherwise specified, a Year is assumed to be relative to the Orbiting of the Earth around the Sun and is approximately equal to 12 Months or 365 Days."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=year" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001088 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001206 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000833.ttl b/src/cco-iris/ont00000833.ttl new file mode 100644 index 00000000..e2f9345c --- /dev/null +++ b/src/cco-iris/ont00000833.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000359 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000589 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000749 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000833 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Julian Date Identifier"@en ; + "A Decimal Time of Day Identifier that designates a Julian Date and is composed of both a Julian Day Number and a Julian Date Fraction."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000973 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000834.ttl b/src/cco-iris/ont00000834.ttl new file mode 100644 index 00000000..55de0268 --- /dev/null +++ b/src/cco-iris/ont00000834.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000834 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mid Infrared Light Frequency"@en ; + "An Infrared Light Frequency that is between 20 and 214 terahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001337 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000835.ttl b/src/cco-iris/ont00000835.ttl new file mode 100644 index 00000000..25962338 --- /dev/null +++ b/src/cco-iris/ont00000835.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000835 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Body Shape"@en ; + "A Shape Quality inhering in a Person's body by virtue of the body's general outline or figure."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000836.ttl b/src/cco-iris/ont00000836.ttl new file mode 100644 index 00000000..d0dee61b --- /dev/null +++ b/src/cco-iris/ont00000836.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000137 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000322 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000501 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000836 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Financial Instrument Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Financial Instrument."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000839 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000884 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001039 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001334 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000837.ttl b/src/cco-iris/ont00000837.ttl new file mode 100644 index 00000000..16a40beb --- /dev/null +++ b/src/cco-iris/ont00000837.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000383 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000837 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Family"@en ; + "A Group of Persons related to one another by ancestry or marriage."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000914 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000838.ttl b/src/cco-iris/ont00000838.ttl new file mode 100644 index 00000000..aa923c35 --- /dev/null +++ b/src/cco-iris/ont00000838.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000039 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000457 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000838 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Fuel"@en ; + "A Portion of Material that is designed to release thermal energy when reacted with other substances."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001020 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001135 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000839.ttl b/src/cco-iris/ont00000839.ttl new file mode 100644 index 00000000..4275220f --- /dev/null +++ b/src/cco-iris/ont00000839.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000836 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000839 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Donating"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is tranfered by an Agent (the Donor) to another Agent (the Recipient) without return consideration."@en ; + "https://en.wikipedia.org/w/index.php?title=Donation&oldid=1059373518"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000840.ttl b/src/cco-iris/ont00000840.ttl new file mode 100644 index 00000000..b5251dfd --- /dev/null +++ b/src/cco-iris/ont00000840.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000618 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000840 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bicycle"@en ; + "A Ground Vehicle that consists of two wheels, one in front of the other, attached to a frame along with handlebars and pedals such that it is designed to receive its motive power from pedaling."@en ; + "https://en.wikipedia.org/w/index.php?title=Bicycle&oldid=1063761124"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000841.ttl b/src/cco-iris/ont00000841.ttl new file mode 100644 index 00000000..328efa93 --- /dev/null +++ b/src/cco-iris/ont00000841.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000841 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Explosive Artifact Function"@en ; + "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired beucase of the rapid increase in volume and release of energy in an extreme manner."@en ; + "http://www.dictionary.com/browse/explosive" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001153 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000842.ttl b/src/cco-iris/ont00000842.ttl new file mode 100644 index 00000000..3f1f9b07 --- /dev/null +++ b/src/cco-iris/ont00000842.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000530 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000842 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sub-Bass Frequency"@en ; + "A Sonic Frequency that is between 20 and 60 Hz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000843.ttl b/src/cco-iris/ont00000843.ttl new file mode 100644 index 00000000..3650b1de --- /dev/null +++ b/src/cco-iris/ont00000843.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000843 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Solar Panel"@en ; + "An Electrical Power Source that consists in part of one or more photovoltaic (i.e. solar) cells that convert light energy (photons) directly into electricity by means of the photovoltaic effect."@en ; + "https://en.wikipedia.org/w/index.php?title=Solar_cell&oldid=1063439932"^^xsd:anyURI , + "https://en.wikipedia.org/w/index.php?title=Solar_panel&oldid=1064397496"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001049 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000844.ttl b/src/cco-iris/ont00000844.ttl new file mode 100644 index 00000000..e0e46ca8 --- /dev/null +++ b/src/cco-iris/ont00000844.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000844 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Temperature"@en ; + "A Measurement Unit that is used as a standard for measurement of the thermal energy in an object."@en ; + "celsius, fahrenheit, kelvin" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001572 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001606 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001724 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000845.ttl b/src/cco-iris/ont00000845.ttl new file mode 100644 index 00000000..b82ee886 --- /dev/null +++ b/src/cco-iris/ont00000845.ttl @@ -0,0 +1,41 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000845 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "A percentage is one way to express a proportional measure where the decimal expression of the proportion is multiplied by 100, thus giving the proportional value with respect to a whole of 100. E.g., the ratio of pigs to cows on a farm is 44 to 79 (44:79 or 44/79). The proportion of pigs to total animals is 44 to 123 or 44/123. The percentage of pigs is the decimal equivalent of the proportion (0.36) multiplied by a 100 (36%). The percentage can be expressed as a proportion where the numerator value is transformed for a denominator of 100, i.e., 36 of a 100 animals are pigs (36/100)."@en , + "We may want to add either a subclass for Percentage or a data property (has percentage value) that links the percentage expression for a proportion to the relevant IBE."@en ; + rdfs:label "Proportional Ratio Measurement Information Content Entity"@en ; + "A Ratio Measurement Information Content Entity that is a measurement of a portion of a whole (described by the numerator) compared against that whole (described by the denominator) where the whole is a nominally described set of like entities."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001022 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000846.ttl b/src/cco-iris/ont00000846.ttl new file mode 100644 index 00000000..7e41021c --- /dev/null +++ b/src/cco-iris/ont00000846.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000846 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydroelectric Power Plant"@en ; + "An Electric Power Station that is designed to convert hydropower into electrical power."@en ; + "https://en.wikipedia.org/w/index.php?title=Hydroelectricity&oldid=1062438236"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001076 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000847.ttl b/src/cco-iris/ont00000847.ttl new file mode 100644 index 00000000..fc3d724f --- /dev/null +++ b/src/cco-iris/ont00000847.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000847 + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Active Stasis"@en ; + "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact is realizing one or more of its designed Artifact Functions (especially one of its primary functions)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000936 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001213 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001246 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000848.ttl b/src/cco-iris/ont00000848.ttl new file mode 100644 index 00000000..56c87ce3 --- /dev/null +++ b/src/cco-iris/ont00000848.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000088 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000848 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mounted Gun"@en ; + "A Firearm that is designed to be fired while mounted."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001077 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001217 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000849.ttl b/src/cco-iris/ont00000849.ttl new file mode 100644 index 00000000..c8c4038c --- /dev/null +++ b/src/cco-iris/ont00000849.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000453 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000849 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heating System"@en ; + "An Environment Control System that is designed to heat the air or objects in a Site."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000850.ttl b/src/cco-iris/ont00000850.ttl new file mode 100644 index 00000000..57093b34 --- /dev/null +++ b/src/cco-iris/ont00000850.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000135 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000430 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000850 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Quality"@en ; + "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Quality that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000851.ttl b/src/cco-iris/ont00000851.ttl new file mode 100644 index 00000000..f975f12a --- /dev/null +++ b/src/cco-iris/ont00000851.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000851 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Light Machine Gun"@en ; + "A Long Gun that is designed to fire bullets in quick succession from an ammunition belt or magazine and to be employed by an individual soldier, with or without assistance, and typically weighing 9-22 lbs."@en ; + "https://en.wikipedia.org/w/index.php?title=Light_machine_gun&oldid=1063598801"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001104 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000852.ttl b/src/cco-iris/ont00000852.ttl new file mode 100644 index 00000000..9df4d067 --- /dev/null +++ b/src/cco-iris/ont00000852.ttl @@ -0,0 +1,73 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000852 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Work"@en ; + "A Measurement Unit that is used as a standard for measurement of displacements of points to which Forces have been applied."@en ; + "joule, erg, kilowatt hour" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001391 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001560 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001563 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001653 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001689 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000853.ttl b/src/cco-iris/ont00000853.ttl new file mode 100644 index 00000000..ad68a056 --- /dev/null +++ b/src/cco-iris/ont00000853.ttl @@ -0,0 +1,104 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001917 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001966 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001982 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000398 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000626 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Descriptive Information Content Entity"@en ; + "Descriptive ICE"@en ; + "An Information Content Entity that consists of a set of propositions that describe some Entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000854.ttl b/src/cco-iris/ont00000854.ttl new file mode 100644 index 00000000..d99346d8 --- /dev/null +++ b/src/cco-iris/ont00000854.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000033 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000290 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000543 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000854 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Realizable Entity"@en ; + "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Realizable Entity that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000855.ttl b/src/cco-iris/ont00000855.ttl new file mode 100644 index 00000000..56060580 --- /dev/null +++ b/src/cco-iris/ont00000855.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000132 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001819 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000065 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000660 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000855 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Effect of Location Change"@en ; + "An Effect caused by some Act of Location Change and which results in an Object being located in a different place."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000856.ttl b/src/cco-iris/ont00000856.ttl new file mode 100644 index 00000000..c4a66500 --- /dev/null +++ b/src/cco-iris/ont00000856.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000182 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000856 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Artifact History"@en ; + "A History of an Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000857.ttl b/src/cco-iris/ont00000857.ttl new file mode 100644 index 00000000..df2f2119 --- /dev/null +++ b/src/cco-iris/ont00000857.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000857 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ultra High Frequency Communication Instrument"@en ; + "A Radio Communication Instrument that is designed to participate in some process that has process part some Ultra High Frequency."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000903 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000858.ttl b/src/cco-iris/ont00000858.ttl new file mode 100644 index 00000000..9ba89a9f --- /dev/null +++ b/src/cco-iris/ont00000858.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000552 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000858 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Improvised Explosive Device"@en ; + "An Explosive Weapon that is designed to be used in non-conventional military action."@en ; + "IED" ; + "https://en.wikipedia.org/w/index.php?title=Improvised_explosive_device&oldid=1063432318"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000859.ttl b/src/cco-iris/ont00000859.ttl new file mode 100644 index 00000000..f1f9eed8 --- /dev/null +++ b/src/cco-iris/ont00000859.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000859 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Television Broadcast"@en ; + "Act of Television Broadcasting"@en ; + "An Act of Communciation by Media that is transmitted to an audience through a television network."@en ; + "https://en.wikipedia.org/w/index.php?title=Television_broadcasting&oldid=1063890047"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000860.ttl b/src/cco-iris/ont00000860.ttl new file mode 100644 index 00000000..74623f1f --- /dev/null +++ b/src/cco-iris/ont00000860.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000587 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000860 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Allied Person"@en ; + "A Person who is the bearer of some Ally Role."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000861.ttl b/src/cco-iris/ont00000861.ttl new file mode 100644 index 00000000..e46666ec --- /dev/null +++ b/src/cco-iris/ont00000861.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000861 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Split"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a linear opening, or having been divided into parts."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000862.ttl b/src/cco-iris/ont00000862.ttl new file mode 100644 index 00000000..c7a22c6b --- /dev/null +++ b/src/cco-iris/ont00000862.ttl @@ -0,0 +1,85 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001857 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000523 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000675 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000862 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Sound Process Profile"@en ; + "Sound Quality"@en ; + "A Process Profile that is part of a sound reception process and is characterized by properties of incoming sound waves as they are translated by some sensory system."@en ; + "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI , + "http://www.animations.physics.unsw.edu.au/waves-sound/quantifying/index.html" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000953 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001338 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000863.ttl b/src/cco-iris/ont00000863.ttl new file mode 100644 index 00000000..a8a810e7 --- /dev/null +++ b/src/cco-iris/ont00000863.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000379 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000863 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Confessing"@en ; + "An Act of Representative Communication in which a person makes an admission of misdeeds or faults."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000864.ttl b/src/cco-iris/ont00000864.ttl new file mode 100644 index 00000000..473c8060 --- /dev/null +++ b/src/cco-iris/ont00000864.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000864 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Public Safety Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of preventing and responding to events that could endanger the safety of the general public from significant danger, injury/harm, or damage, such as crimes or disasters (natural or man-made)."@en ; + "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000865.ttl b/src/cco-iris/ont00000865.ttl new file mode 100644 index 00000000..56d36347 --- /dev/null +++ b/src/cco-iris/ont00000865.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000250 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000865 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Specifically Dependent Continuant"@en ; + "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Specifically Dependent Continuant."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000876 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001127 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000866.ttl b/src/cco-iris/ont00000866.ttl new file mode 100644 index 00000000..12700b04 --- /dev/null +++ b/src/cco-iris/ont00000866.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000866 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Broadcast"@en ; + "Act of Radio Broadcasting"@en ; + "An Act of Communciation by Media that is transmitted to an audience through a radio network."@en ; + "https://en.wikipedia.org/w/index.php?title=Radio_network&oldid=1037183126"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000867.ttl b/src/cco-iris/ont00000867.ttl new file mode 100644 index 00000000..0a57f0b9 --- /dev/null +++ b/src/cco-iris/ont00000867.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000677 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000867 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pipeline"@en ; + "A Product Transport Facility that is designed to transport goods or materials through a pipe."@en ; + "https://en.wikipedia.org/w/index.php?title=Pipeline&oldid=1024308788"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000868.ttl b/src/cco-iris/ont00000868.ttl new file mode 100644 index 00000000..463a2c20 --- /dev/null +++ b/src/cco-iris/ont00000868.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000868 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rocket Pod"@en ; + "A Rocket Launcher that is designed to contain several Unguided Rockets held in individual tubes and to be used by Aircraft or Helicopters for close air support."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001173 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000869.ttl b/src/cco-iris/ont00000869.ttl new file mode 100644 index 00000000..597e755f --- /dev/null +++ b/src/cco-iris/ont00000869.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000199 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000869 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Camera"@en ; + "A Camera that is designed to form and record an image generated from visible light."@en ; + "https://en.wikipedia.org/w/index.php?title=Camera&oldid=1063931551"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000870.ttl b/src/cco-iris/ont00000870.ttl new file mode 100644 index 00000000..ab1e7584 --- /dev/null +++ b/src/cco-iris/ont00000870.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000328 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000870 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrastructure System"@en ; + "Infrastructure"@en ; + "A Material Entity that is composed of elements bearing Infrastructure Roles and is by itself sufficient to provide a planned service or benefit to some organization that maintains its elements."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000954 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000871.ttl b/src/cco-iris/ont00000871.ttl new file mode 100644 index 00000000..2df48414 --- /dev/null +++ b/src/cco-iris/ont00000871.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000551 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000871 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Plant"@en ; + "An Organism that is multicellular, eukaryotic, autotrophic, and has cells that contain chloroplasts and walls made of cellulose."@en ; + "https://en.wikipedia.org/w/index.php?title=Plant&oldid=1060821100"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000872.ttl b/src/cco-iris/ont00000872.ttl new file mode 100644 index 00000000..a9373ac3 --- /dev/null +++ b/src/cco-iris/ont00000872.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000872 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Brown"@en ; + "A Color that consists of dark orange and red, and of very low intensity."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000873.ttl b/src/cco-iris/ont00000873.ttl new file mode 100644 index 00000000..c0d8be7f --- /dev/null +++ b/src/cco-iris/ont00000873.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000873 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Physiographic Feature"@en ; + "A Geographic Feature that is a geomorphological unit characterized by its surface form and location in the landscape."@en ; + "https://en.wikipedia.org/w/index.php?title=Landform&oldid=1060439172"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001081 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000874.ttl b/src/cco-iris/ont00000874.ttl new file mode 100644 index 00000000..e53fb736 --- /dev/null +++ b/src/cco-iris/ont00000874.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000874 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Video"@en ; + "An Information Bearing Artifact that is designed to bear some specific Information Content Entity in the form of a sequence of representations that are presented sufficiently rapidly to create the appearance of motion and continuity."@en ; + "https://en.wikipedia.org/w/index.php?title=Video&oldid=1049376249"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000875.ttl b/src/cco-iris/ont00000875.ttl new file mode 100644 index 00000000..a8d4e245 --- /dev/null +++ b/src/cco-iris/ont00000875.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000875 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Personal Communication"@en ; + "An Act of Communication having a small audience."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000876.ttl b/src/cco-iris/ont00000876.ttl new file mode 100644 index 00000000..c6b397ff --- /dev/null +++ b/src/cco-iris/ont00000876.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000004 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000542 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000865 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000876 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Dependent Continuant"@en ; + "A Change in which some Independent Continuant ceases to be the bearer or carrier of some Dependent Continuant."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000877.ttl b/src/cco-iris/ont00000877.ttl new file mode 100644 index 00000000..5475d5e8 --- /dev/null +++ b/src/cco-iris/ont00000877.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000723 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000877 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Brake Control System"@en ; + "A Vehicle Control System that is designed to control the process of braking with the aim of preventing rolling, skidding, and hydroplaning."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000878.ttl b/src/cco-iris/ont00000878.ttl new file mode 100644 index 00000000..54a254a7 --- /dev/null +++ b/src/cco-iris/ont00000878.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000325 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000878 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Identification Friend or Foe Transponder"@en ; + "IFF"@en ; + "A Radio Transponder that is designed to automatically transmit a predefined signal in response to receiving an appropriate interrogation signal such that the entity it is located on can be positively identified as friendly."@en ; + "https://en.wikipedia.org/w/index.php?title=Identification_friend_or_foe&oldid=1055168718"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000879.ttl b/src/cco-iris/ont00000879.ttl new file mode 100644 index 00000000..e20710b0 --- /dev/null +++ b/src/cco-iris/ont00000879.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000433 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000879 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Religious Group Affiliation"@en ; + "An Act of Association wherein some Person belongs to some Religious Demonination or sub-Denomination."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000880.ttl b/src/cco-iris/ont00000880.ttl new file mode 100644 index 00000000..521d7398 --- /dev/null +++ b/src/cco-iris/ont00000880.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000880 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Religious Artifact Function"@en ; + "A Service Artifact Function that is realized in processes related to worship and prayer."@en ; + "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000881.ttl b/src/cco-iris/ont00000881.ttl new file mode 100644 index 00000000..68879cb2 --- /dev/null +++ b/src/cco-iris/ont00000881.ttl @@ -0,0 +1,89 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000045 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000220 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000375 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000680 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000708 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000778 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Storage Facility"@en ; + "A Facility that is designed to store materials or goods."@en ; + "https://en.wikipedia.org/w/index.php?title=Storage&oldid=1048222564"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000957 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001257 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001344 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000882.ttl b/src/cco-iris/ont00000882.ttl new file mode 100644 index 00000000..086c80de --- /dev/null +++ b/src/cco-iris/ont00000882.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000882 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wind Farm"@en ; + "An Electric Power Station that is designed to convert the wind's kinetic energy into electrical power by means of wind turbines."@en ; + "https://en.wikipedia.org/w/index.php?title=Wind_farm&oldid=1062817899"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001076 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000883.ttl b/src/cco-iris/ont00000883.ttl new file mode 100644 index 00000000..f04b8b6b --- /dev/null +++ b/src/cco-iris/ont00000883.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000883 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Inviting"@en ; + "An Act of Commissive Communication performed by requesting the presence or participation of the audience, and which may include offering an incentive or inducement."@en ; + "http://www.merriam-webster.com/dictionary/invite" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001162 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000884.ttl b/src/cco-iris/ont00000884.ttl new file mode 100644 index 00000000..dea0fb59 --- /dev/null +++ b/src/cco-iris/ont00000884.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000836 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000884 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Loaning"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is given by an Agent (the Creditor) to another Agent (the Debtor) in order to receive Repayments from the Debtor which are of greater Financial Value."@en ; + "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000885.ttl b/src/cco-iris/ont00000885.ttl new file mode 100644 index 00000000..3ef97591 --- /dev/null +++ b/src/cco-iris/ont00000885.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000885 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wavy"@en ; + "Undulate"@en ; + "A Shape Quality inhering in a bearer in virtue of it having a sinuous or rippled border."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000886.ttl b/src/cco-iris/ont00000886.ttl new file mode 100644 index 00000000..416fcfd2 --- /dev/null +++ b/src/cco-iris/ont00000886.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000422 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000886 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wired Communication Reception Artifact Function"@en ; + "A Communication Reception Artifact Function that is realized during events in which an Artifact receives information transmitted from another Artifact, where the transmission of information occurs via a direct connection using an electrical conductor."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000887.ttl b/src/cco-iris/ont00000887.ttl new file mode 100644 index 00000000..4f3187af --- /dev/null +++ b/src/cco-iris/ont00000887.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000460 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000887 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "City"@en ; + "A Local Administrative Region in which a relatively large human population permanently resides; is designated as a city based on a particular administrative, legal, or historical status; and which delimits a local Government that typically oversees the provision of systems for sanitation, utilities, land usage, housing, and transportation."@en ; + "https://en.wikipedia.org/w/index.php?title=City&oldid=1062635325"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000888.ttl b/src/cco-iris/ont00000888.ttl new file mode 100644 index 00000000..9b06a256 --- /dev/null +++ b/src/cco-iris/ont00000888.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000888 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "High Frequency Communication Instrument"@en ; + "A Radio Communication Instrument that is designed to participate in some process that has process part some High Frequency."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000903 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000889.ttl b/src/cco-iris/ont00000889.ttl new file mode 100644 index 00000000..942e7b6d --- /dev/null +++ b/src/cco-iris/ont00000889.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000037 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000558 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000889 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Visible Observation"@en ; + "An Act of Observation that involves visual perception."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000890.ttl b/src/cco-iris/ont00000890.ttl new file mode 100644 index 00000000..eb762cfe --- /dev/null +++ b/src/cco-iris/ont00000890.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000065 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000200 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000890 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Travel"@en ; + "An Act of Location Change wherein one or more Persons move between relatively distant geographical locations for any purpose and any duration, with or without any means of transport."@en ; + "https://en.wikipedia.org/w/index.php?title=Travel&oldid=1037229469"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001339 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000891.ttl b/src/cco-iris/ont00000891.ttl new file mode 100644 index 00000000..00274e01 --- /dev/null +++ b/src/cco-iris/ont00000891.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000276 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000891 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar System"@en ; + "A Temporal Reference System that is designed to organize and identify dates."@en ; + "Calendars typically organize dates through the use of naming and temporal conventions based on Days, Weeks, Months, and Years."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000916 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000892.ttl b/src/cco-iris/ont00000892.ttl new file mode 100644 index 00000000..fbbe7146 --- /dev/null +++ b/src/cco-iris/ont00000892.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000607 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000892 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Depth"@en ; + "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a downward, backward, or inward direction."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001367 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000893.ttl b/src/cco-iris/ont00000893.ttl new file mode 100644 index 00000000..c8a4806f --- /dev/null +++ b/src/cco-iris/ont00000893.ttl @@ -0,0 +1,72 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000893 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "An empty notebook, when manufactured, is a medium but not yet a carrier of information content. However, a book, in the sense of a novel or collection of philosophical essays or poems, depends necessarily on it carrying some information content. Thus, there are no empty books. Likewise, there are no empty databases, only portions of digital storage that have not yet been configured to carry some information content according to a database software application."@en ; + rdfs:label "Information Medium Artifact"@en ; + "A Material Artifact that is designed to have some Information Bearing Artifact as part."@en ; + "A magnetic hard drive" , + "A notebook" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001151 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001179 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000894.ttl b/src/cco-iris/ont00000894.ttl new file mode 100644 index 00000000..7a8c1603 --- /dev/null +++ b/src/cco-iris/ont00000894.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000087 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000529 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000749 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000894 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decimal Date Identifier"@en ; + "A Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since a specified Reference Time."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000895.ttl b/src/cco-iris/ont00000895.ttl new file mode 100644 index 00000000..e656c624 --- /dev/null +++ b/src/cco-iris/ont00000895.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000335 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000895 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Married"@en ; + "Married Stasis"@en ; + "A Stasis of Generically Dependent Continuant that consists of a socially, culturally, or ritually recognized union or legal contract between spouses that establishes rights and obligations between them, between them and their children, and between them and their in-laws."@en ; + "https://en.wikipedia.org/w/index.php?title=Marriage&oldid=1064076951"^^xsd:anyURI , + "Haviland, William A.; Prins, Harald E. L.; McBride, Bunny; Walrath, Dana (2011). Cultural Anthropology: The Human Challenge (13th ed.). Cengage Learning. ISBN 978-0-495-81178-7" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000896.ttl b/src/cco-iris/ont00000896.ttl new file mode 100644 index 00000000..5d1e9148 --- /dev/null +++ b/src/cco-iris/ont00000896.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000745 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000896 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mean Point Estimate Information Content Entity"@en ; + "Arithmetic Mean"@en , + "Average"@en , + "Mean"@en ; + "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the sum of all the values in the set divided by the total number of values in the set."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000897.ttl b/src/cco-iris/ont00000897.ttl new file mode 100644 index 00000000..8e1b07e9 --- /dev/null +++ b/src/cco-iris/ont00000897.ttl @@ -0,0 +1,51 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000457 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000897 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Oxidizers are essential participants in many processes including combustion and rusting. Hence, a portion of oxidizer must always be present along with a portion of fuel in order for combustion to occur."@en ; + rdfs:label "Portion of Oxidizer"@en ; + "Portion of Oxidant"@en , + "Portion of Oxidizing Agent"@en ; + "A Portion of Material that is disposed to steal electrons from other substances (i.e. to oxidize other substances) as a participant in a reduction-oxidation process."@en ; + "oxygen, hydrogen peroxide, chlorine, sulfiric acid, potassium nitrate" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000898.ttl b/src/cco-iris/ont00000898.ttl new file mode 100644 index 00000000..e8d5d449 --- /dev/null +++ b/src/cco-iris/ont00000898.ttl @@ -0,0 +1,96 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000176 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000898 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Geopolitical Power Role"@en ; + "A Role had by an Organization, that is perceived by an International Community as capable of performing influential acts in that community, and which would be realized in performing such acts."@en ; + "Geopolitical Power Role"@en ; + "https://chass.usu.edu/international-studies/aggies-go/power" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000899.ttl b/src/cco-iris/ont00000899.ttl new file mode 100644 index 00000000..04c37d66 --- /dev/null +++ b/src/cco-iris/ont00000899.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000899 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "MSI Plessey Barcode"@en ; + "A One-Dimensional Barcode that consists of an indefinite number of numerical characters and is used for inventory control and marking storage containers and shelves in warehouse environments."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000900.ttl b/src/cco-iris/ont00000900.ttl new file mode 100644 index 00000000..a3be8586 --- /dev/null +++ b/src/cco-iris/ont00000900.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000900 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Communication Relay Artifact Function"@en ; + "A Communication Relay Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information without the use of wires from one Artifact to another for the purpose of communiction."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001169 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000901.ttl b/src/cco-iris/ont00000901.ttl new file mode 100644 index 00000000..386999f6 --- /dev/null +++ b/src/cco-iris/ont00000901.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000901 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decontamination Facility"@en ; + "A Washing Facility that is designed to wash personnel or equipment after (potential) contamination by radioactive, biological, or chemical material."@en ; + "https://en.wikipedia.org/w/index.php?title=Decontamination&oldid=1049850150"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001375 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000902.ttl b/src/cco-iris/ont00000902.ttl new file mode 100644 index 00000000..eab4ccf5 --- /dev/null +++ b/src/cco-iris/ont00000902.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000902 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Facility Use"@en ; + "An Act of Artifact Employment in which an Agent makes use of some Facility."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000903.ttl b/src/cco-iris/ont00000903.ttl new file mode 100644 index 00000000..7eb5bf2e --- /dev/null +++ b/src/cco-iris/ont00000903.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000050 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000269 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000325 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000346 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000857 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000888 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000903 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Communication Instrument"@en ; + "A Communication Instrument that is designed to enable communication between two or more entities via the use of radio waves."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001145 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001320 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000904.ttl b/src/cco-iris/ont00000904.ttl new file mode 100644 index 00000000..b1d5780c --- /dev/null +++ b/src/cco-iris/ont00000904.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001944 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000122 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000205 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000904 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Vehicle Track"@en ; + "An Object Track for a Vehicle during some motion."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000905.ttl b/src/cco-iris/ont00000905.ttl new file mode 100644 index 00000000..662680e4 --- /dev/null +++ b/src/cco-iris/ont00000905.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000655 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000905 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Post Office"@en ; + "A Mailing Facility that is designed for serving customers of the national postal system."@en ; + "https://en.wikipedia.org/w/index.php?title=Post_office&oldid=1063684373"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000906.ttl b/src/cco-iris/ont00000906.ttl new file mode 100644 index 00000000..bb8b2b3d --- /dev/null +++ b/src/cco-iris/ont00000906.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000690 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000906 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Email Box"@en ; + "A Telecommunication Instrument that is designed to be the delivery destination of Email Messages that are addressed to the corresponding Email Address."@en ; + "https://en.wikipedia.org/w/index.php?title=Email_box&oldid=1061295368"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000907.ttl b/src/cco-iris/ont00000907.ttl new file mode 100644 index 00000000..e27d5c93 --- /dev/null +++ b/src/cco-iris/ont00000907.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000057 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000690 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000907 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telephone"@en ; + "Phone"@en ; + "A Telecommunication Instrument that is designed to provide point-to-point communication between agents by means of audio messages."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000933 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000908.ttl b/src/cco-iris/ont00000908.ttl new file mode 100644 index 00000000..da27bdf4 --- /dev/null +++ b/src/cco-iris/ont00000908.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000051 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000908 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Artifact Processing"@en ; + "A Planned Act of performing a series of mechanical or chemical operations on something in order to change or preserve it."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000970 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001196 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001359 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000909.ttl b/src/cco-iris/ont00000909.ttl new file mode 100644 index 00000000..0aa29a6b --- /dev/null +++ b/src/cco-iris/ont00000909.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000909 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Emergency AC/DC Power Source"@en ; + "An Electrical Power Source that is designed to provide electrical power in an emergency situation by means of both alternating current and direct current."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001049 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000910.ttl b/src/cco-iris/ont00000910.ttl new file mode 100644 index 00000000..27670d33 --- /dev/null +++ b/src/cco-iris/ont00000910.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000910 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Amplitude"@en ; + "A Process Profile of an Oscillation Process that is the absolute value of the maximum displacement from a zero, equilibrium, or mean value during one cycle of the Oscillation Process."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000911.ttl b/src/cco-iris/ont00000911.ttl new file mode 100644 index 00000000..546a7556 --- /dev/null +++ b/src/cco-iris/ont00000911.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000026 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000911 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Semi-Major Axis"@en ; + "A One-Dimensional Spatial Region that is equal to half the length of the Major Axis of an Ellipse."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000912.ttl b/src/cco-iris/ont00000912.ttl new file mode 100644 index 00000000..3a57e3a5 --- /dev/null +++ b/src/cco-iris/ont00000912.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000912 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pyramidal"@en ; + "A Three Dimensional Shape that inheres in a bearer in virtue of it having a polygonal base with vertices that all connect to the same apex to form triangular faces."@en ; + "https://en.wikipedia.org/wiki/Pyramid_(geometry)" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001360 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000913.ttl b/src/cco-iris/ont00000913.ttl new file mode 100644 index 00000000..aab5e387 --- /dev/null +++ b/src/cco-iris/ont00000913.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000913 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Maroon"@en ; + "A Color consisting of purple and brown hue."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000914.ttl b/src/cco-iris/ont00000914.ttl new file mode 100644 index 00000000..b5c7d665 --- /dev/null +++ b/src/cco-iris/ont00000914.ttl @@ -0,0 +1,79 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000141 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000300 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000507 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000837 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000914 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + rdfs:label "Group of Persons"@en ; + "A Group of Agents that has only Persons as parts."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001284 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000915.ttl b/src/cco-iris/ont00000915.ttl new file mode 100644 index 00000000..2a823c3c --- /dev/null +++ b/src/cco-iris/ont00000915.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000605 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000915 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Acronym"@en ; + "An Abbreviated Name that combines the initial letters of a Designative Name and which is pronounced as a word."@en ; + "Wi-Fi, ASCII, OPSEC" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000916.ttl b/src/cco-iris/ont00000916.ttl new file mode 100644 index 00000000..7ef354e0 --- /dev/null +++ b/src/cco-iris/ont00000916.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000891 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000916 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lunar Calendar System"@en ; + "A Calendar System that is designed to organize and identify dates based on the cycles of the Moon's phases."@en ; + "https://en.wikipedia.org/w/index.php?title=Lunar_calendar&oldid=1055396837"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000917.ttl b/src/cco-iris/ont00000917.ttl new file mode 100644 index 00000000..1dcf2e9d --- /dev/null +++ b/src/cco-iris/ont00000917.ttl @@ -0,0 +1,88 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000645 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000917 + rdf:type owl:Class ; + rdfs:subClassOf ; + "Permanent Residency - Wikipedia. https://en.wikipedia.org/wiki/Permanent_residency. Accessed 10 Feb. 2023." ; + "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Permanent Resident Role"@en ; + "A role inhering in a Person by virtue of that Person being recognized as having legal resident status in a Government Domain in which that person is not a citizen but where they have the right to reside on a permanent basis."@en ; + "Permanent Resident Role"@en ; + "https://en.wikipedia.org/wiki/Permanent_residency" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000918.ttl b/src/cco-iris/ont00000918.ttl new file mode 100644 index 00000000..79621c0c --- /dev/null +++ b/src/cco-iris/ont00000918.ttl @@ -0,0 +1,70 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000315 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000346 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000918 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Telecommunication Network Node"@en ; + "A Communication Artifact that consists of a connection point, redistribution point, or endpoint that is designed to be part of a Telecommunication Network and can be either active or passive."@en ; + "https://en.wikipedia.org/wiki/Node_(networking)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000998 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001247 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000919.ttl b/src/cco-iris/ont00000919.ttl new file mode 100644 index 00000000..0f056d40 --- /dev/null +++ b/src/cco-iris/ont00000919.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000575 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000919 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Parts List"@en ; + "A Quality Specification that prescribes the Amount of some type of Artifact that are part of or located on another Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000920.ttl b/src/cco-iris/ont00000920.ttl new file mode 100644 index 00000000..88c803ec --- /dev/null +++ b/src/cco-iris/ont00000920.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001803 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000007 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000191 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000920 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Death"@en ; + "A Natural Process in which all biological functions that sustain a living organism cease."@en ; + "https://en.wikipedia.org/w/index.php?title=Death&oldid=1064114499"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001236 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000921.ttl b/src/cco-iris/ont00000921.ttl new file mode 100644 index 00000000..ad86f744 --- /dev/null +++ b/src/cco-iris/ont00000921.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000435 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000498 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000921 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar Day"@en ; + "A Day that begins and ends concurrently with the Seconds specified by a Calendar System to be the first and last Seconds of the Day."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000922.ttl b/src/cco-iris/ont00000922.ttl new file mode 100644 index 00000000..9eef4d97 --- /dev/null +++ b/src/cco-iris/ont00000922.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000065 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000922 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Arrival"@en ; + "An Act of Location Change that consists of the participating entity reaching its destination such that the larger Act of Location Change is completed."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000923.ttl b/src/cco-iris/ont00000923.ttl new file mode 100644 index 00000000..34be5b3b --- /dev/null +++ b/src/cco-iris/ont00000923.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000077 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00000649 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000923 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Arbitrary Identifier"@en ; + "Arbitrary ID"@en ; + "A Non-Name Identifier that consists of a string of characters that does not follow an encoding system."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000924.ttl b/src/cco-iris/ont00000924.ttl new file mode 100644 index 00000000..d0eee09f --- /dev/null +++ b/src/cco-iris/ont00000924.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000924 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "A Beginning of Life Stasis (BoL) is a relatively brief Operational Stasis that is primarily of interest for the purpose of establishing a baseline for operational parameters to be compared to the designed specifications as well as the Artifact's performance throughout its operational life."@en ; + rdfs:label "Beginning of Life Stasis"@en ; + "A Operational Stasis that holds during a Temporal Interval when an Artifact is first put into operational use such that its designed set of Artifact Functions is capable of operating at or near their designed peak performance levels."@en ; + "BOL" , + "BoL" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001191 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000925.ttl b/src/cco-iris/ont00000925.ttl new file mode 100644 index 00000000..511eae61 --- /dev/null +++ b/src/cco-iris/ont00000925.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000687 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000925 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Military Training Acquisition"@en ; + "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of Military Operations from an Agent or communication medium that realizes a capacity derived from its affiliation with a Military Organization."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000926.ttl b/src/cco-iris/ont00000926.ttl new file mode 100644 index 00000000..fbebcf8a --- /dev/null +++ b/src/cco-iris/ont00000926.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000123 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000926 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Apologizing"@en ; + "An Act of Expressive Communication performed by acknowledging and expressing regret for a fault, shortcoming, or failure."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=apologizing" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000927.ttl b/src/cco-iris/ont00000927.ttl new file mode 100644 index 00000000..8c7bb69e --- /dev/null +++ b/src/cco-iris/ont00000927.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000530 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000927 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bass Frequency"@en ; + "A Sonic Frequency that is between 60 and 250 Hz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000928.ttl b/src/cco-iris/ont00000928.ttl new file mode 100644 index 00000000..2ba0ae70 --- /dev/null +++ b/src/cco-iris/ont00000928.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000796 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000928 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Train Car"@en ; + "Railroad Car"@en ; + "A Rail Transport Vehicle that consists of a single Vehicle that is not a Train but is designed to be connected to other Train Cars along with at least one Locomotive to form a Train."@en ; + "https://en.wikipedia.org/w/index.php?title=Railroad_car&oldid=1063802472"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001007 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001355 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000929.ttl b/src/cco-iris/ont00000929.ttl new file mode 100644 index 00000000..acedeb3c --- /dev/null +++ b/src/cco-iris/ont00000929.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000929 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Part Role"@en ; + "A Role that inheres in an entity in virtue of it being part of some other entity without being subject to further subdivision or disassembly without destruction of its designated use."@en ; + "http://origins.sese.asu.edu/ses405/Class%20Notes/Sys-Hier-WBS_Module_V1.0_PAS.pdf"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000930.ttl b/src/cco-iris/ont00000930.ttl new file mode 100644 index 00000000..964df2cc --- /dev/null +++ b/src/cco-iris/ont00000930.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000930 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nickel-metal Hydride Electric Battery"@en ; + "NiMH Battery"@en ; + "A Secondary Cell Electric Battery that has a metal-hydride anode and nickel oxide hydroxide cathode."@en ; + "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93metal_hydride_battery&oldid=1061626676"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001105 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000931.ttl b/src/cco-iris/ont00000931.ttl new file mode 100644 index 00000000..5ced601d --- /dev/null +++ b/src/cco-iris/ont00000931.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000326 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000931 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "UPC-A Barcode"@en ; + "A UPC Barcode that consists of 12 numerical digits."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000932.ttl b/src/cco-iris/ont00000932.ttl new file mode 100644 index 00000000..3ddf6887 --- /dev/null +++ b/src/cco-iris/ont00000932.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000932 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Computing Artifact Function"@en ; + "An Artifact Function that is realized by an Artifact participating in a computation process."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000933.ttl b/src/cco-iris/ont00000933.ttl new file mode 100644 index 00000000..82dd5b69 --- /dev/null +++ b/src/cco-iris/ont00000933.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000907 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000933 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Landline Telephone"@en ; + "A Telephone that is connected to a Telephone Network through a pair of wires."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000934.ttl b/src/cco-iris/ont00000934.ttl new file mode 100644 index 00000000..8a0a99cf --- /dev/null +++ b/src/cco-iris/ont00000934.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000126 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000934 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Constituent State"@en ; + "State"@en ; + "A First-Order Administrative Region that is part of a Country and delimits a centralized regional Government that holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the State."@en ; + "https://en.wikipedia.org/w/index.php?title=Constituent_state&oldid=1063662102"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000935.ttl b/src/cco-iris/ont00000935.ttl new file mode 100644 index 00000000..a4548edd --- /dev/null +++ b/src/cco-iris/ont00000935.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000935 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Legal Instrument Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Legal Instrument."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000936.ttl b/src/cco-iris/ont00000936.ttl new file mode 100644 index 00000000..5adf84ee --- /dev/null +++ b/src/cco-iris/ont00000936.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000847 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00000936 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Deactivated Stasis"@en ; + "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact is not realizing any of its designed Artifact Functions (or at least not realizing any of its primary functions)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001213 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000937.ttl b/src/cco-iris/ont00000937.ttl new file mode 100644 index 00000000..5a5ba6b0 --- /dev/null +++ b/src/cco-iris/ont00000937.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000937 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Inhibiting Motion Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Artifact is used to inhibit the motion of some object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000938.ttl b/src/cco-iris/ont00000938.ttl new file mode 100644 index 00000000..5b67cf8c --- /dev/null +++ b/src/cco-iris/ont00000938.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000938 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Financial Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of managing money."@en ; + "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000939.ttl b/src/cco-iris/ont00000939.ttl new file mode 100644 index 00000000..ee79efb3 --- /dev/null +++ b/src/cco-iris/ont00000939.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000817 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000939 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Line"@en ; + "A Geospatial Line String that has only two vertices."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000940.ttl b/src/cco-iris/ont00000940.ttl new file mode 100644 index 00000000..6cec8e2c --- /dev/null +++ b/src/cco-iris/ont00000940.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000940 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Momentum"@en ; + "A Measurement Unit that is used as a standard for measurement of the Momentum of a portion of matter that is in Motion."@en ; + "kg m/s, slug ft/s, g m/s" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001528 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001585 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001675 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000941.ttl b/src/cco-iris/ont00000941.ttl new file mode 100644 index 00000000..a5f9171c --- /dev/null +++ b/src/cco-iris/ont00000941.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000941 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Phosphorescence"@en ; + "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light after absorbing shorter wavelength radiation, and to continue emitting after the absorbing process has ceased."@en ; + "https://en.wikipedia.org/w/index.php?title=Phosphorescence&oldid=1060815719"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001126 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000942.ttl b/src/cco-iris/ont00000942.ttl new file mode 100644 index 00000000..83b1f147 --- /dev/null +++ b/src/cco-iris/ont00000942.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000204 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000942 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sniper Rifle"@en ; + "A Rifle that is designed to be highly accurate for long-range precision tactical shooting."@en ; + "https://en.wikipedia.org/w/index.php?title=Sniper_rifle&oldid=1061592308"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000943.ttl b/src/cco-iris/ont00000943.ttl new file mode 100644 index 00000000..cca35686 --- /dev/null +++ b/src/cco-iris/ont00000943.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000943 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ocular Prosthesis"@en ; + "An Artificial Eye that is designed to replace a missing eye, but which does not function as an eye."@en ; + "https://en.wikipedia.org/w/index.php?title=Ocular_prosthesis&oldid=1061336760"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001248 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000944.ttl b/src/cco-iris/ont00000944.ttl new file mode 100644 index 00000000..51a6d955 --- /dev/null +++ b/src/cco-iris/ont00000944.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000601 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000944 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thermal Imaging Artifact Function"@en ; + "An Imaging Artifact Function that is realized during events in which an Artifact is used to create a visual representation of an entity using radiation from the far infrared region of the electromagnetic spectrum that the entity emits"@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000945.ttl b/src/cco-iris/ont00000945.ttl new file mode 100644 index 00000000..66d7d1f7 --- /dev/null +++ b/src/cco-iris/ont00000945.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000547 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000945 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "X-ray Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing X-rays to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=X-ray_telescope&oldid=1035025593"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000946.ttl b/src/cco-iris/ont00000946.ttl new file mode 100644 index 00000000..ae4ff151 --- /dev/null +++ b/src/cco-iris/ont00000946.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000094 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000545 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000946 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Government Building"@en ; + "A Facility that is designed for the administration of a community."@en ; + "https://en.wikipedia.org/wiki/Administration_(government)" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000947.ttl b/src/cco-iris/ont00000947.ttl new file mode 100644 index 00000000..5d8b22f8 --- /dev/null +++ b/src/cco-iris/ont00000947.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000947 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Temperature Measurement Artifact Function"@en ; + "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Temperature of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001100 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000948.ttl b/src/cco-iris/ont00000948.ttl new file mode 100644 index 00000000..d62c7318 --- /dev/null +++ b/src/cco-iris/ont00000948.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000455 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000948 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Religious Worship"@en ; + "An Act of Ceremony wherein there occurs acts of religious devotion usually directed towards a deity."@en ; + "http://en.wikipedia.org/wiki/Worship (Sense Key: Worship%2:42:00 or Worship%1:04:00::)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000949.ttl b/src/cco-iris/ont00000949.ttl new file mode 100644 index 00000000..233bce0a --- /dev/null +++ b/src/cco-iris/ont00000949.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000949 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Consumption"@en ; + "A Planned Act in which a resource is ingested or used up."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000950.ttl b/src/cco-iris/ont00000950.ttl new file mode 100644 index 00000000..9e81a098 --- /dev/null +++ b/src/cco-iris/ont00000950.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001819 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000783 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000950 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Maintenance"@en ; + "An Act of Artifact Modification in which an Artifact is modified in order to preserve or restore one or more of its designed Qualities or Functions."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000970 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000951.ttl b/src/cco-iris/ont00000951.ttl new file mode 100644 index 00000000..84e1c068 --- /dev/null +++ b/src/cco-iris/ont00000951.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000099 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000514 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000812 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000951 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Electromagnetic Wave Process"@en ; + "Electromagnetic Radiation"@en ; + "A Wave Process that is produced by charged particles, involves the periodic Oscillation of electric and magnetic fields at right angles to each other and the direction of wave propogation such that it has a Transverse Wave Profile, and which transfers electromagnetic radiant energy through a portion of space or matter."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000952.ttl b/src/cco-iris/ont00000952.ttl new file mode 100644 index 00000000..2ad6b7b0 --- /dev/null +++ b/src/cco-iris/ont00000952.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000210 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000952 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electric Motor"@en ; + "Electric Engine"@en ; + "An Engine that is designed to convert electrical energy into mechanical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Electric_motor&oldid=1063829856"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000953.ttl b/src/cco-iris/ont00000953.ttl new file mode 100644 index 00000000..82191302 --- /dev/null +++ b/src/cco-iris/ont00000953.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000862 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000953 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pitch"@en ; + "A Sound Process Profile that is characterized by the frequency of translated sound waves, typically on a continuum from low to high."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000954.ttl b/src/cco-iris/ont00000954.ttl new file mode 100644 index 00000000..bcb711b5 --- /dev/null +++ b/src/cco-iris/ont00000954.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000870 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000954 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Infrastructure"@en ; + "An Infrastructure System that is designed to support the use of Telecommunication Instruments to communicate."@en ; + "https://en.wikipedia.org/w/index.php?title=Category:Telecommunications_infrastructure&oldid=989151314"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000955.ttl b/src/cco-iris/ont00000955.ttl new file mode 100644 index 00000000..5f05a3ae --- /dev/null +++ b/src/cco-iris/ont00000955.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000278 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000955 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Angular Momentum"@en ; + "A Momentum that is the product of an object's moment of inertia and its Angular Velocity."@en ; + "https://en.wikipedia.org/w/index.php?title=Angular_momentum&oldid=1063992505"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000956.ttl b/src/cco-iris/ont00000956.ttl new file mode 100644 index 00000000..67e9d201 --- /dev/null +++ b/src/cco-iris/ont00000956.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000956 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Highway Interchange"@en ; + "A Road Junction that is designed to enable Ground Vehicles to exit one or more Highways and enter another Highway without directly crossing any other traffic stream."@en ; + "https://en.wikipedia.org/wiki/Interchange_(road)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001086 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000957.ttl b/src/cco-iris/ont00000957.ttl new file mode 100644 index 00000000..b238216f --- /dev/null +++ b/src/cco-iris/ont00000957.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000957 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reservoir"@en ; + "A Storage Facility that is designed to store water in a man-made open enclosure or area."@en ; + "https://en.wikipedia.org/w/index.php?title=Reservoir&oldid=1055068000"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000958.ttl b/src/cco-iris/ont00000958.ttl new file mode 100644 index 00000000..5c30c52f --- /dev/null +++ b/src/cco-iris/ont00000958.ttl @@ -0,0 +1,174 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000101 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001801 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001808 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001938 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000030 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000031 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000616 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000696 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Information Content Entity"@en ; + "ICE"@en ; + "A Generically Dependent Continuant that generically depends on some Information Bearing Entity and stands in relation of aboutness to some Entity."@en ; + "Information Content Entity is here intended to be a class of Entities whose instances are the informational content of Information Bearing Entities. For example, three instances of information bearers -- such as a bar chart, color-coded map, and a written report -- each of which lists the GDP of Countries for the year 2010 are each different carriers of the same information content. It is this content that is generically dependent upon its carrier. This treatment of Informational Content Entity (cf. the Information Artifact Ontology) leads to a principle of subtyping based upon the relationship that ICE's have with the Entity they are about rather than characteristics such as format, language, measurement scale, or media. The latter are treated here as being Qualities of bearers."@en ; + "http://purl.obolibrary.org/obo/IAO_0000030" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001069 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000959.ttl b/src/cco-iris/ont00000959.ttl new file mode 100644 index 00000000..515da5a2 --- /dev/null +++ b/src/cco-iris/ont00000959.ttl @@ -0,0 +1,83 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000959 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Frequency"@en ; + "A Measurement Unit that is used as a standard for measurement of the number of times an event repeats per unit of time."@en ; + "hertz, revolutions per minute" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001466 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001470 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001475 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001574 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001669 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001715 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001730 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000960.ttl b/src/cco-iris/ont00000960.ttl new file mode 100644 index 00000000..844f407e --- /dev/null +++ b/src/cco-iris/ont00000960.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000960 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fixed Line Network Telephone Call"@en ; + "A Telephone Call transmitted over a telephone network where the telephones are wired into a single telephone exchange."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001190 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000961.ttl b/src/cco-iris/ont00000961.ttl new file mode 100644 index 00000000..7ef28c69 --- /dev/null +++ b/src/cco-iris/ont00000961.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000019 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000098 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000961 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Current Conversion Artifact Function"@en ; + "An Electrical Artifact Function that is realized by processes in which some Artifact is used to convert some electrical current."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000993 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000962.ttl b/src/cco-iris/ont00000962.ttl new file mode 100644 index 00000000..ee29fbe5 --- /dev/null +++ b/src/cco-iris/ont00000962.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000593 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000962 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Propellant"@en ; + "A Portion of Propellant that is stored in a liquid state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000963.ttl b/src/cco-iris/ont00000963.ttl new file mode 100644 index 00000000..0b533695 --- /dev/null +++ b/src/cco-iris/ont00000963.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000963 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel Transfer System"@en ; + "A Fluid Control Artifact that is designed to facilitate the transfer of some Portion of Fuel from the Fuel Tank for use in some Engine."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000964.ttl b/src/cco-iris/ont00000964.ttl new file mode 100644 index 00000000..b628542c --- /dev/null +++ b/src/cco-iris/ont00000964.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000964 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 1,000–100 m"@en ; + rdfs:label "Medium Frequency"@en ; + "ITU Band Number 6"@en ; + "A Radio Frequency that is between 300 kHz and 3 MHz."@en ; + "MF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000965.ttl b/src/cco-iris/ont00000965.ttl new file mode 100644 index 00000000..8e564478 --- /dev/null +++ b/src/cco-iris/ont00000965.ttl @@ -0,0 +1,149 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001920 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000118 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000127 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000319 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000476 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000575 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000653 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Directive Information Content Entity"@en ; + "Directive ICE"@en ; + "An Information Content Entity that consists of a set of propositions or images (as in the case of a blueprint) that prescribe some Entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000974 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001175 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000966.ttl b/src/cco-iris/ont00000966.ttl new file mode 100644 index 00000000..5aa64ad9 --- /dev/null +++ b/src/cco-iris/ont00000966.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000461 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000596 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000966 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "EAN Barcode"@en ; + "A One-Dimensional Barcode that consists of 8 or 13 numerical digits and is used to scan consumer goods."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00000972 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001131 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001268 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000967.ttl b/src/cco-iris/ont00000967.ttl new file mode 100644 index 00000000..d9c88bd8 --- /dev/null +++ b/src/cco-iris/ont00000967.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000787 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000967 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Height"@en ; + "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a vertical direction."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001367 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000968.ttl b/src/cco-iris/ont00000968.ttl new file mode 100644 index 00000000..853bb924 --- /dev/null +++ b/src/cco-iris/ont00000968.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000204 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000968 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Assault Rifle"@en ; + "A Rifle that is designed to have selective-fire functionality and use an intermediate Cartridge and a detachable magazine."@en ; + "https://en.wikipedia.org/w/index.php?title=Assault_rifle&oldid=1063774380"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000969.ttl b/src/cco-iris/ont00000969.ttl new file mode 100644 index 00000000..59216208 --- /dev/null +++ b/src/cco-iris/ont00000969.ttl @@ -0,0 +1,88 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000969 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Speed"@en ; + "A Measurement Unit that is used as a standard for measurement of the rates at which objects traverse distance."@en ; + "miles per hour, kilometers per hour, knot, mach" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001425 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001428 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001469 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001511 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001526 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001583 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001602 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001646 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000970.ttl b/src/cco-iris/ont00000970.ttl new file mode 100644 index 00000000..bfe49cae --- /dev/null +++ b/src/cco-iris/ont00000970.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000908 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000950 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000970 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Excluded from this class are instances of role change or role creation such as the introduction of an artifact as a piece of evidence in a trial or the loading of artifacts onto a ship for transport."@en ; + rdfs:label "Act of Artifact Modification"@en ; + "An Act of Artifact Processing in which an existing Artifact is acted upon in a manner that changes, adds, or removes one or more of its Qualities, Dispositions, or Functions."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000971.ttl b/src/cco-iris/ont00000971.ttl new file mode 100644 index 00000000..2cf563ae --- /dev/null +++ b/src/cco-iris/ont00000971.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000971 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Deceptive Communication"@en ; + "Ac Act of Communication intended to mislead the audience by distortion or falsification of evidence and induce a reaction that is prejudicial to the interests of the audience."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001267 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000972.ttl b/src/cco-iris/ont00000972.ttl new file mode 100644 index 00000000..870fb966 --- /dev/null +++ b/src/cco-iris/ont00000972.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000966 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000972 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "EAN-13 Barcode"@en ; + "An EAN Barcode that consists of 13 numerical digits and is used to designate products at the point of sale."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000973.ttl b/src/cco-iris/ont00000973.ttl new file mode 100644 index 00000000..071a31ce --- /dev/null +++ b/src/cco-iris/ont00000973.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000589 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000827 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000833 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000973 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decimal Time of Day Identifier"@en ; + "Fractional Time of Day Identifier"@en ; + "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using a decimal value for the portion of the Day that preceded the Temporal Instant."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000974.ttl b/src/cco-iris/ont00000974.ttl new file mode 100644 index 00000000..bb130b01 --- /dev/null +++ b/src/cco-iris/ont00000974.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000476 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000974 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Plan"@en ; + "A Directive Information Content Entity that prescribes some set of intended Intentional Acts through which some Agent expects to achieve some Objective."@en ; + "https://en.wikipedia.org/w/index.php?title=Plan&oldid=1047320560"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000975.ttl b/src/cco-iris/ont00000975.ttl new file mode 100644 index 00000000..5f0e5945 --- /dev/null +++ b/src/cco-iris/ont00000975.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000975 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cyan"@en ; + "A Color that is between Green and Blue with a wavelength in the visible spectrum typically between 490 and 520 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000976.ttl b/src/cco-iris/ont00000976.ttl new file mode 100644 index 00000000..859b4182 --- /dev/null +++ b/src/cco-iris/ont00000976.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000696 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000976 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Political Orientation"@en ; + "An Ideology that characterizes the political thinking of an Agent or Group of Agents, usually with respect to the political environment within a particular nation."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000977.ttl b/src/cco-iris/ont00000977.ttl new file mode 100644 index 00000000..2b3ae5ff --- /dev/null +++ b/src/cco-iris/ont00000977.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000588 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000977 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Publishing Mass Media Documentary"@en ; + "An Act of Mass Media Communication involving the preparation and public issuance of information that provides a factual record or report."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000978.ttl b/src/cco-iris/ont00000978.ttl new file mode 100644 index 00000000..36224c2f --- /dev/null +++ b/src/cco-iris/ont00000978.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001803 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000978 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Cause"@en ; + "A Process that is the cause of or one of the causes of some other Process."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000979.ttl b/src/cco-iris/ont00000979.ttl new file mode 100644 index 00000000..a044ee0b --- /dev/null +++ b/src/cco-iris/ont00000979.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000979 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Closure"@en ; + "A Quality that inheres in a bearer in virtue of the degree to which that bearer affords passage or sightline through it via an opening, aperture, orifice, or vent."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000980.ttl b/src/cco-iris/ont00000980.ttl new file mode 100644 index 00000000..b103e5f2 --- /dev/null +++ b/src/cco-iris/ont00000980.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000571 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000980 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Waste Material"@en ; + "A Portion of Processed Material that serves no further use in terms of the initial user's own purposes of production, transformation, or consumption such that the Agent wants to dispose of it."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001084 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000981.ttl b/src/cco-iris/ont00000981.ttl new file mode 100644 index 00000000..60891891 --- /dev/null +++ b/src/cco-iris/ont00000981.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000981 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Portion of Material Consumption"@en ; + "An Act of Artifact Employment in which a Portion of Material is expended."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000982.ttl b/src/cco-iris/ont00000982.ttl new file mode 100644 index 00000000..56984413 --- /dev/null +++ b/src/cco-iris/ont00000982.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000543 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000982 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Function"@en ; + "A Decrease of Disposition in which some Independent Continuant has a decrease of some Function that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000983.ttl b/src/cco-iris/ont00000983.ttl new file mode 100644 index 00000000..b72d943d --- /dev/null +++ b/src/cco-iris/ont00000983.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000514 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000983 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Shear Wave Process"@en ; + "A Mechanical Wave that has a Transverse Wave Profile."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001028 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000984.ttl b/src/cco-iris/ont00000984.ttl new file mode 100644 index 00000000..7b634a0a --- /dev/null +++ b/src/cco-iris/ont00000984.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000984 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Occupation Role"@en ; + "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill within the context of some Act of Employment."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000985.ttl b/src/cco-iris/ont00000985.ttl new file mode 100644 index 00000000..4c8d5d6d --- /dev/null +++ b/src/cco-iris/ont00000985.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000985 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thermal Insulation Artifact Function"@en ; + "A Thermal Control Artifact Function that is realized during events in which an Artifact prevents or reduces the transfer of heat between objects that are in thermal contact or in range of radiative influence."@en ; + "https://en.wikipedia.org/w/index.php?title=Thermal_insulation&oldid=1059273300"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001350 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000986.ttl b/src/cco-iris/ont00000986.ttl new file mode 100644 index 00000000..60c75583 --- /dev/null +++ b/src/cco-iris/ont00000986.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000084 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000986 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Scar"@en ; + "A Bodily Component that consists of a portion of fibrous connective tissue on skin or within body tissue and which was formed due to an injury that has not healed completely."@en ; + "https://en.wikipedia.org/w/index.php?title=Scar&oldid=1057179533"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000987.ttl b/src/cco-iris/ont00000987.ttl new file mode 100644 index 00000000..bf152058 --- /dev/null +++ b/src/cco-iris/ont00000987.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000388 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000987 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Citizen Role"@en ; + "A Role that inheres in a Person by virtue of that Person being legally recognized as a member of a particular state, with associated rights and obligations."@en ; + "http://en.wikitionary.org/wiki/citizen" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000988.ttl b/src/cco-iris/ont00000988.ttl new file mode 100644 index 00000000..fa3942ce --- /dev/null +++ b/src/cco-iris/ont00000988.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000804 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000988 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reflective Prism"@en ; + "A Prism designed to reflect light in order to flip, invert, rotate, deviate, or displace a beam of light entering the Prism."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000989.ttl b/src/cco-iris/ont00000989.ttl new file mode 100644 index 00000000..96b51a31 --- /dev/null +++ b/src/cco-iris/ont00000989.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000732 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000989 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 100–10 mm"@en ; + rdfs:label "Super High Frequency"@en ; + "ITU Band Number 10"@en ; + "A Microwave Frequency that is between 3 and 30 GHz."@en ; + "SHF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000990.ttl b/src/cco-iris/ont00000990.ttl new file mode 100644 index 00000000..fe2fe212 --- /dev/null +++ b/src/cco-iris/ont00000990.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000003 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000990 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nickname"@en ; + "A Designative Name that is a familiar or humorous substitute for an entity's Proper Name."@en ; + "Ike, Chief, P-Fox" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000991.ttl b/src/cco-iris/ont00000991.ttl new file mode 100644 index 00000000..0371f603 --- /dev/null +++ b/src/cco-iris/ont00000991.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000991 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bent"@en ; + "Angular"@en , + "Kinked"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having one or more angles along its border."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000992.ttl b/src/cco-iris/ont00000992.ttl new file mode 100644 index 00000000..a6ab1015 --- /dev/null +++ b/src/cco-iris/ont00000992.ttl @@ -0,0 +1,73 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000085 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000992 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "The Second is used as the basic SI unit of time."@en ; + rdfs:label "Second"@en ; + "A Temporal Interval that is equal to the duration of 9,192,631,770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom."@en ; + "https://physics.nist.gov/cuu/Units/second.html" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001154 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000993.ttl b/src/cco-iris/ont00000993.ttl new file mode 100644 index 00000000..6ebc7fb1 --- /dev/null +++ b/src/cco-iris/ont00000993.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000961 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000993 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Rectifying Artifact Function"@en ; + "A Current Conversion Artifact Function that is realized by processes in which some Artifact is used to convert alternating current (AC) to direct current (DC)."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000994.ttl b/src/cco-iris/ont00000994.ttl new file mode 100644 index 00000000..76e76c66 --- /dev/null +++ b/src/cco-iris/ont00000994.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000098 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000994 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Power Production Artifact Function"@en ; + "An Electrical Artifact Function that is realized during events in which an Artifact is used to generate electrical power."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000995.ttl b/src/cco-iris/ont00000995.ttl new file mode 100644 index 00000000..ca43c9d9 --- /dev/null +++ b/src/cco-iris/ont00000995.ttl @@ -0,0 +1,408 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000124 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000029 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000020 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000021 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000095 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000096 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000103 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000117 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000130 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000136 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000210 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000236 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000238 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000243 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000249 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000254 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000256 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000288 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000292 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000319 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000342 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000346 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000348 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000372 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000397 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000453 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000458 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000488 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000537 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000561 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000577 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000581 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000591 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000652 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000663 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000668 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000706 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000713 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000719 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000730 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000736 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000742 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000767 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000771 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000781 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000893 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Material Artifact"@en ; + "A Material Entity that was designed by some Agent to realize a certain Function."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001036 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001042 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001060 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001067 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001084 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001134 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001140 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001187 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001313 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001343 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001346 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001370 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001381 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001999 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000996.ttl b/src/cco-iris/ont00000996.ttl new file mode 100644 index 00000000..70b4137a --- /dev/null +++ b/src/cco-iris/ont00000996.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000294 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000996 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ramjet Engine"@en ; + "Ramjet"@en ; + "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air (without the use of an axial compressor) and decelerate it to subsonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + "https://en.wikipedia.org/w/index.php?title=Ramjet&oldid=1062836331"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000997.ttl b/src/cco-iris/ont00000997.ttl new file mode 100644 index 00000000..d1135d44 --- /dev/null +++ b/src/cco-iris/ont00000997.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000016 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000548 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000997 + rdf:type owl:Class ; + rdfs:subClassOf ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Disrupting Disposition"@en ; + "A disposition the realization of which would disrupt a process some entity has an interest in."@en ; + "This is a defined class. A Disrupting Disposition is indexed by the interest_in object property. A disposition can be a Disrupting Disposition according to one index and not a Disrupting Disposition according to another index." ; + "Threat"@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000998.ttl b/src/cco-iris/ont00000998.ttl new file mode 100644 index 00000000..995f5135 --- /dev/null +++ b/src/cco-iris/ont00000998.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000152 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000363 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000700 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000918 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000998 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Network"@en ; + "A Communication System that is designed to enable the transmission of information over significant distances between Telecommunication Endpoints via Telecommunication Network Nodes and Lines."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001036 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00000999.ttl b/src/cco-iris/ont00000999.ttl new file mode 100644 index 00000000..2b2f50b2 --- /dev/null +++ b/src/cco-iris/ont00000999.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000999 + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Defunct Stasis"@en ; + "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact no longer maintains its designed set of Artifact Functions (or at least no longer maintains its primary functions)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001191 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001213 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001000.ttl b/src/cco-iris/ont00001000.ttl new file mode 100644 index 00000000..71cea837 --- /dev/null +++ b/src/cco-iris/ont00001000.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000252 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001000 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spray Nozzle"@en ; + "A Nozzle that is designed to facilitate a conversion of the flow of a portion of liquid into a dynamic collection of drops dispersed in a portion of gas."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001001.ttl b/src/cco-iris/ont00001001.ttl new file mode 100644 index 00000000..58ae832c --- /dev/null +++ b/src/cco-iris/ont00001001.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001001 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Drooping"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a border that hangs downwards."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001002.ttl b/src/cco-iris/ont00001002.ttl new file mode 100644 index 00000000..d190c7d0 --- /dev/null +++ b/src/cco-iris/ont00001002.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000640 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001002 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Message"@en ; + "An Information Bearing Artifact that is designed to bear some specific Information Content Entity that is relatively brief and to be transmitted from a sender to a recipient."@en ; + "https://en.wikipedia.org/w/index.php?title=Message&oldid=1060098631"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001046 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001003.ttl b/src/cco-iris/ont00001003.ttl new file mode 100644 index 00000000..e9ac5ffd --- /dev/null +++ b/src/cco-iris/ont00001003.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001003 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cartridge"@en ; + "A Portion of Ammunition that is designed to package a Bullet, a propellant substance, and a primer within a case that is designed to fit within the firing chamber of a Firearm."@en ; + "https://en.wikipedia.org/wiki/Cartridge_(firearms)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001150 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001004.ttl b/src/cco-iris/ont00001004.ttl new file mode 100644 index 00000000..647629ef --- /dev/null +++ b/src/cco-iris/ont00001004.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001004 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Electromagnetic Force"@en ; + "A Measurement Unit that is used as a standard for measurement of the electromagnetic force between electrically charged entities."@en ; + "volt, ampere, coulomb" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001450 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001451 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001613 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001729 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001005.ttl b/src/cco-iris/ont00001005.ttl new file mode 100644 index 00000000..a4a08e62 --- /dev/null +++ b/src/cco-iris/ont00001005.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000294 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001005 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Turbojet Air-Breathing Jet Engine"@en ; + "An Air-Breathing Jet Engine that uses a Turbojet, which consists of a Turbine with a Propelling Nozzle."@en ; + "https://en.wikipedia.org/w/index.php?title=Turbojet&oldid=1060948529"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001006.ttl b/src/cco-iris/ont00001006.ttl new file mode 100644 index 00000000..18763634 --- /dev/null +++ b/src/cco-iris/ont00001006.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001006 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Operator Role"@en ; + "A Role that inheres in an Agent by virtue of that Agent's responsibilities to operate or control some Artifact."@en ; + "the role of driving a car" , + "the role of flying an airplane" , + "the role of operating a crane" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001007.ttl b/src/cco-iris/ont00001007.ttl new file mode 100644 index 00000000..660c7f54 --- /dev/null +++ b/src/cco-iris/ont00001007.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000928 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001007 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Passenger Train Car"@en ; + "A Train Car that is designed to transport passengers."@en ; + "https://en.wikipedia.org/wiki/Passenger_car_(rail)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001008.ttl b/src/cco-iris/ont00001008.ttl new file mode 100644 index 00000000..db67fb13 --- /dev/null +++ b/src/cco-iris/ont00001008.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001008 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Biological Weapon"@en ; + "A Weapon that is designed to inflict harm, incapacity, or death by means of releasing disease-producing agents—such as bacteria, viruses, or fungi."@en ; + "https://en.wikipedia.org/w/index.php?title=Biological_warfare&oldid=1062972883"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001009.ttl b/src/cco-iris/ont00001009.ttl new file mode 100644 index 00000000..fbd4cbdf --- /dev/null +++ b/src/cco-iris/ont00001009.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000219 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000355 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000547 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000792 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001009 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Optical_telescope&oldid=1062201329"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001010.ttl b/src/cco-iris/ont00001010.ttl new file mode 100644 index 00000000..37043e20 --- /dev/null +++ b/src/cco-iris/ont00001010.ttl @@ -0,0 +1,113 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001811 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001963 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000164 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000186 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000293 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00000369 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000604 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith , + ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Ordinal Measurement Information Content Entity"@en ; + "A Measurement Information Content Entity that consists of a symbol that places an Entity into some rank order."@en ; + "The sentence \"The coldest day in history in Chicago, IL. is January 20, 1985.\" is the carrier of an ordinal measurment."@en , + "a measurement that places Geospatial Regions into a rank order of small, medium, large" , + "a measurement that places military units onto a readiness rank order of red, yellow, green" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001022 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001041 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001364 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001011.ttl b/src/cco-iris/ont00001011.ttl new file mode 100644 index 00000000..d60c77e0 --- /dev/null +++ b/src/cco-iris/ont00001011.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000053 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001011 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Automobile"@en ; + "A Ground Motor Vehicle that is designed to transport a small number of passengers while traveling on four tired wheels."@en ; + "https://en.wikipedia.org/w/index.php?title=Car&oldid=1064116950"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001012.ttl b/src/cco-iris/ont00001012.ttl new file mode 100644 index 00000000..9028b206 --- /dev/null +++ b/src/cco-iris/ont00001012.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001012 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Further variants of GS1 DataBar have not been defined here."@en ; + rdfs:label "GS1 DataBar Barcode"@en ; + "A One-Dimensional Barcode that consists of 12-14 numerical digits and is used in retail and healthcare."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001013.ttl b/src/cco-iris/ont00001013.ttl new file mode 100644 index 00000000..94d64a31 --- /dev/null +++ b/src/cco-iris/ont00001013.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001013 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heating Artifact Function"@en ; + "An Artifact Function that is realized in a process in which the thermal energy of a system increases."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001014.ttl b/src/cco-iris/ont00001014.ttl new file mode 100644 index 00000000..da4cb42a --- /dev/null +++ b/src/cco-iris/ont00001014.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000003 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001014 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Proper Name"@en ; + "A Designative Name that is an official name for a particular entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001331 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001015.ttl b/src/cco-iris/ont00001015.ttl new file mode 100644 index 00000000..f966392b --- /dev/null +++ b/src/cco-iris/ont00001015.ttl @@ -0,0 +1,51 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000646 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001015 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Controlled-Access Highway"@en ; + "Expressway"@en , + "Freeway"@en , + "Motorway"@en ; + "A Highway that is designed for high-speed vehicular traffic, with all traffic flow and ingress/egress regulated."@en ; + "https://en.wikipedia.org/w/index.php?title=Controlled-access_highway&oldid=1063655601"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001016.ttl b/src/cco-iris/ont00001016.ttl new file mode 100644 index 00000000..2ffe1ac3 --- /dev/null +++ b/src/cco-iris/ont00001016.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000024 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001016 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Lithosphere"@en ; + "A fiat object part of the rigid, outermost rocky shell of a natural satellite."@en ; + "https://en.wikipedia.org/w/index.php?title=Lithosphere&oldid=1143215085"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001017.ttl b/src/cco-iris/ont00001017.ttl new file mode 100644 index 00000000..39bd7ab4 --- /dev/null +++ b/src/cco-iris/ont00001017.ttl @@ -0,0 +1,163 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000115 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001844 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001866 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001889 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001922 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001939 + rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] . + + +### https://www.commoncoreontologies.org/ont00001954 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001977 + rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] . + + +### https://www.commoncoreontologies.org/ont00001978 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001984 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001993 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000300 + rdf:type owl:Class ; + rdfs:subClassOf [ owl:intersectionOf ( [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Agent"@en ; + "A Material Entity that bears an Agent Capability."@en ; + "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001018.ttl b/src/cco-iris/ont00001018.ttl new file mode 100644 index 00000000..9b8bdd2b --- /dev/null +++ b/src/cco-iris/ont00001018.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000350 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001018 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Equipment Cooling System"@en ; + "A Cooling System that is designed to cool some piece of equipment."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001019.ttl b/src/cco-iris/ont00001019.ttl new file mode 100644 index 00000000..980a9661 --- /dev/null +++ b/src/cco-iris/ont00001019.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000723 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001019 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Steering Control System"@en ; + "A Vehicle Control System that is designed to control the direction some Vehicle is traveling."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001020.ttl b/src/cco-iris/ont00001020.ttl new file mode 100644 index 00000000..59f39506 --- /dev/null +++ b/src/cco-iris/ont00001020.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000838 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001020 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Gaseous Fuel"@en ; + "A Portion of Fuel that is stored in a gaseous state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001021.ttl b/src/cco-iris/ont00001021.ttl new file mode 100644 index 00000000..cbf42c0e --- /dev/null +++ b/src/cco-iris/ont00001021.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000379 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001021 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Denying"@en ; + "An Act of Representative Communication performed by either asserting that something is not true or real or refusing to satisfy a request or desire."@en ; + "http://www.merriam-webster.com/dictionary/denial" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001022.ttl b/src/cco-iris/ont00001022.ttl new file mode 100644 index 00000000..4e3a5e66 --- /dev/null +++ b/src/cco-iris/ont00001022.ttl @@ -0,0 +1,104 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001965 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001983 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000293 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00000539 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000669 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000845 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00001022 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Ratio Measurement Information Content Entity"@en ; + "A Measurement Information Content Entity that consists of a symbol that places a Quality of an Entity onto an interval scale having a true zero value."@en ; + "The sentence \"The temperature reached 240.372 degrees Kelvin on January 20, 1985 in Chicago, IL.\" is the carrier of a ratio measurement as 0 degrees on the Kelvin scale does describe absolute zero."@en , + "a measurement of the barometric pressure at 1,000 feet above sea level" , + "a measurement of the measure of air temperature on the Kelvin scale" , + "a measurement of the number of members in an Organization" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001364 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001023.ttl b/src/cco-iris/ont00001023.ttl new file mode 100644 index 00000000..a01af3bd --- /dev/null +++ b/src/cco-iris/ont00001023.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000619 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001023 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar Week"@en ; + "A Week that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Week."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=calendar+week" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001024.ttl b/src/cco-iris/ont00001024.ttl new file mode 100644 index 00000000..05c8e0e9 --- /dev/null +++ b/src/cco-iris/ont00001024.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000394 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001024 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spark Ignition Engine"@en ; + "An Internal Combustion Engine that is designed to operate by generating a spark to ignite a portion of Fuel and Oxidizer mixture."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001025.ttl b/src/cco-iris/ont00001025.ttl new file mode 100644 index 00000000..340e9e8e --- /dev/null +++ b/src/cco-iris/ont00001025.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001025 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electric Generator"@en ; + "An Electrical Power Source that is designed to convert mechanical energy to electrical energy for use in an external circuit."@en ; + "https://en.wikipedia.org/w/index.php?title=Electric_generator&oldid=1057805035"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001049 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001026.ttl b/src/cco-iris/ont00001026.ttl new file mode 100644 index 00000000..1bdbfe8d --- /dev/null +++ b/src/cco-iris/ont00001026.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000119 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001026 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pointing Orientation"@en ; + "Facing Orientation"@en ; + "A Spatial Orientation of a Material Entity in which one or more of its designated components are oriented toward a specified direction."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001027.ttl b/src/cco-iris/ont00001027.ttl new file mode 100644 index 00000000..45137015 --- /dev/null +++ b/src/cco-iris/ont00001027.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000095 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001027 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Trim Tab"@en ; + "A Control Surface that is designed to counteract hydro-, aerodynamic, or other forces in order to stabilize the Vehicle it is part of in the desired Attitude."@en ; + "https://en.wikipedia.org/w/index.php?title=Trim_tab&oldid=1054550485"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001028.ttl b/src/cco-iris/ont00001028.ttl new file mode 100644 index 00000000..5a7b375d --- /dev/null +++ b/src/cco-iris/ont00001028.ttl @@ -0,0 +1,86 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001857 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000099 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000514 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000675 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000983 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001028 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mechanical Wave Process"@en ; + "A Wave Process that involves Oscillation of a portion of matter such that energy is transferred through the material medium."@en ; + "https://en.wikipedia.org/w/index.php?title=Mechanical_wave&oldid=1057233679"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001227 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001029.ttl b/src/cco-iris/ont00001029.ttl new file mode 100644 index 00000000..12abaff4 --- /dev/null +++ b/src/cco-iris/ont00001029.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000337 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001029 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Unguided Rocket"@en ; + "Rocket"@en ; + "A Portion of Ammunition that is designed to be a self-propelled, but unguided, projectile that delivers some payload (explosive or other) over relatively long distances through the use of a Rocket Engine."@en ; + "https://en.wikipedia.org/wiki/Rocket_(weapon)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001150 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001030.ttl b/src/cco-iris/ont00001030.ttl new file mode 100644 index 00000000..4733b158 --- /dev/null +++ b/src/cco-iris/ont00001030.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000796 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001030 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Train"@en ; + "Railroad Train"@en , + "Railway Train"@en ; + "A Rail Transport Vehicle that consists of a series of connected Train Cars or Railcars."@en ; + "https://en.wikipedia.org/w/index.php?title=Train&oldid=1064071492"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001031.ttl b/src/cco-iris/ont00001031.ttl new file mode 100644 index 00000000..e7a5a131 --- /dev/null +++ b/src/cco-iris/ont00001031.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001031 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Volunteering"@en ; + "An Act of Commissive Communication performed by voluntarily undertaking or expressing a willingness to undertake a service."@en ; + "entering into military service voluntarily" , + "rendering a service voluntarily" ; + "http://www.merriam-webster.com/dictionary/volunteer" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001162 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001032.ttl b/src/cco-iris/ont00001032.ttl new file mode 100644 index 00000000..ae4f3e86 --- /dev/null +++ b/src/cco-iris/ont00001032.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001032 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Assignment"@en ; + "An Act of Declarative Communication in which rights held by one party (the assignor) are transferred to another party (the assignee) with regard to a particular entity as specified by the details of the assignment, which is often prescribed by a contract."@en ; + "https://en.wikipedia.org/w/index.php?title=Assignment_(law)&oldid=1056101591"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001374 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001033.ttl b/src/cco-iris/ont00001033.ttl new file mode 100644 index 00000000..37a8c2a0 --- /dev/null +++ b/src/cco-iris/ont00001033.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001033 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Biological Sex"@en ; + "A Quality inhering in a bearer by virtue of the bearer's ability to undergo sexual reproduction in order to differentiate the individuals or types involved."@en ; + "http://purl.org/obo/owl/PATO#PATO_0000047" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001212 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001363 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001034.ttl b/src/cco-iris/ont00001034.ttl new file mode 100644 index 00000000..7f09e563 --- /dev/null +++ b/src/cco-iris/ont00001034.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000774 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001034 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Full Motion Video Camera"@en ; + "A Video Camera that is designed to capture and record images of sufficiently high quality and in rapid enough succession that the resulting video supports smooth playback."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001035.ttl b/src/cco-iris/ont00001035.ttl new file mode 100644 index 00000000..59ca46e6 --- /dev/null +++ b/src/cco-iris/ont00001035.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000387 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001035 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pitch Axis"@en ; + "Lateral Axis"@en ; + "An Axis of Rotation that passes through the center of an object's Mass and is perpendicular both to the direction of the object's motion and to the object's Yaw Axis."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001036.ttl b/src/cco-iris/ont00001036.ttl new file mode 100644 index 00000000..38af3ee0 --- /dev/null +++ b/src/cco-iris/ont00001036.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000303 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000998 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001036 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication System"@en ; + "A Material Artifact that is designed to enable some Act of Communication by means of transmission systems, relay stations, tributary stations, and data terminal equipment, usually capable of interconnection and interoperation to form an integrated whole."@en ; + "https://en.wikipedia.org/w/index.php?title=Communications_system&oldid=1058600948"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001265 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001037.ttl b/src/cco-iris/ont00001037.ttl new file mode 100644 index 00000000..6d24db2b --- /dev/null +++ b/src/cco-iris/ont00001037.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001037 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Constructed Feature"@en ; + "An Anthropogenic Feature that has been constructed by deliberate human effort."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001197 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001038.ttl b/src/cco-iris/ont00001038.ttl new file mode 100644 index 00000000..b4fc54b3 --- /dev/null +++ b/src/cco-iris/ont00001038.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001038 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nickel Cadmium Electric Battery"@en ; + "NiCad Battery"@en ; + "A Secondary Cell Electric Battery that has a cadmium anode and nickel oxide hydroxide cathode."@en ; + "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93cadmium_battery&oldid=1061809659"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001105 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001039.ttl b/src/cco-iris/ont00001039.ttl new file mode 100644 index 00000000..7ae314a4 --- /dev/null +++ b/src/cco-iris/ont00001039.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000836 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001039 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Repayment"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Debtor) to another Agent (the Creditor) to decrease the amount the Debtor owes to the Creditor from an earlier Act of Loaning."@en ; + "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001040.ttl b/src/cco-iris/ont00001040.ttl new file mode 100644 index 00000000..9f939688 --- /dev/null +++ b/src/cco-iris/ont00001040.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000026 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001040 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nadir"@en ; + "A One-Dimensional Spatial Region that extends from a given location downward along the local vertical direction pointing in the direction of the apparent Gravitational Force at that location."@en ; + "https://en.wikipedia.org/w/index.php?title=Nadir&oldid=1057007248"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001041.ttl b/src/cco-iris/ont00001041.ttl new file mode 100644 index 00000000..8d0c97b8 --- /dev/null +++ b/src/cco-iris/ont00001041.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001041 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sequence Position Ordinality"@en ; + "An Ordinal Measurement Information Content Entity that is about the position of some entity in some ordered sequence."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001042.ttl b/src/cco-iris/ont00001042.ttl new file mode 100644 index 00000000..0945c4ee --- /dev/null +++ b/src/cco-iris/ont00001042.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001042 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Equipment Mount"@en ; + "A Material Artifact that is designed to support an Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001316 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001043.ttl b/src/cco-iris/ont00001043.ttl new file mode 100644 index 00000000..4b9c0491 --- /dev/null +++ b/src/cco-iris/ont00001043.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000713 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001043 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Aircraft"@en ; + "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by air travel."@en ; + "https://en.wikipedia.org/w/index.php?title=Aircraft&oldid=1063924562"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001044.ttl b/src/cco-iris/ont00001044.ttl new file mode 100644 index 00000000..741c7839 --- /dev/null +++ b/src/cco-iris/ont00001044.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001044 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Radiation Detection Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact is used to detect the presence of nuclear radiation particles."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001045.ttl b/src/cco-iris/ont00001045.ttl new file mode 100644 index 00000000..24473f80 --- /dev/null +++ b/src/cco-iris/ont00001045.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000319 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001045 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Artifact Model"@en ; + "A Directive Information Content Entity that prescribes a common set of Functions and Qualities to inhere in a set of artifact instances."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001103 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001046.ttl b/src/cco-iris/ont00001046.ttl new file mode 100644 index 00000000..2853acd4 --- /dev/null +++ b/src/cco-iris/ont00001046.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000471 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001002 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001046 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Notification Message"@en ; + "A Message that is designed to bear an Information Content Entity that describes a scenario that has been determined to merit attention by the recipient."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001047.ttl b/src/cco-iris/ont00001047.ttl new file mode 100644 index 00000000..26961f5e --- /dev/null +++ b/src/cco-iris/ont00001047.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000008 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000754 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001047 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Frequency"@en ; + "Temporal Frequency"@en ; + "A Process Profile that is characterized by the number of repetitive processes during a particular time period."@en ; + "https://en.wikipedia.org/w/index.php?title=Frequency&oldid=1062800545"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001048.ttl b/src/cco-iris/ont00001048.ttl new file mode 100644 index 00000000..896c3daa --- /dev/null +++ b/src/cco-iris/ont00001048.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000004 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000107 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001048 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Dependent Continuant"@en ; + "A Change in which some Independent Continuant has an increase in the level of some Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001214 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001049.ttl b/src/cco-iris/ont00001049.ttl new file mode 100644 index 00000000..aabd1b53 --- /dev/null +++ b/src/cco-iris/ont00001049.ttl @@ -0,0 +1,79 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000288 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000302 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000477 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000716 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000790 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000843 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000909 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001025 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001049 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Power Source"@en ; + "A Power Source that is designed to generate, control, and transfer power in the form of electrical energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001222 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001050.ttl b/src/cco-iris/ont00001050.ttl new file mode 100644 index 00000000..8f26821f --- /dev/null +++ b/src/cco-iris/ont00001050.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000716 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001050 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Primary Cell Electric Battery"@en ; + "Primary Cell Battery"@en ; + "A Electric Battery that is designed for one-time use and not to be recharged."@en ; + "https://en.wikipedia.org/w/index.php?title=Primary_cell&oldid=1047226932"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001229 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001051.ttl b/src/cco-iris/ont00001051.ttl new file mode 100644 index 00000000..4c3ce3e0 --- /dev/null +++ b/src/cco-iris/ont00001051.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000088 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000231 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000268 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000658 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001051 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Projectile Launcher"@en ; + "A Weapon that is designed to inflict damage or harm by means of launching a high-velocity projectile at a target."@en ; + "https://en.wikipedia.org/w/index.php?title=Projectile&oldid=1062048285"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001173 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001373 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001052.ttl b/src/cco-iris/ont00001052.ttl new file mode 100644 index 00000000..c32f77be --- /dev/null +++ b/src/cco-iris/ont00001052.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000432 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000483 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000667 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000710 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001052 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Facility"@en ; + "A Facility that is designed to support a Military Force."@en ; + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001091 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001297 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001053.ttl b/src/cco-iris/ont00001053.ttl new file mode 100644 index 00000000..1a22a033 --- /dev/null +++ b/src/cco-iris/ont00001053.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000065 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001053 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Collision"@en ; + "An Act of Location Change involving the movement of one object such that it collides with another object."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001054.ttl b/src/cco-iris/ont00001054.ttl new file mode 100644 index 00000000..54d5f345 --- /dev/null +++ b/src/cco-iris/ont00001054.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000499 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001054 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Helical Antenna"@en ; + "A Wire Antenna that consists of a conducting wire wound in the form of a helix that is typically mounted over a ground plane with a feed line connected between the bottom of the helix and the ground plane."@en ; + "https://en.wikipedia.org/w/index.php?title=Helical_antenna&oldid=1062343033"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001055.ttl b/src/cco-iris/ont00001055.ttl new file mode 100644 index 00000000..ea6cc2bb --- /dev/null +++ b/src/cco-iris/ont00001055.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001055 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Branched"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having subdivisions or offshoots."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001056.ttl b/src/cco-iris/ont00001056.ttl new file mode 100644 index 00000000..046b2e35 --- /dev/null +++ b/src/cco-iris/ont00001056.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000754 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001056 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Visible light overlaps with near infrared and near ultraviolet."@en ; + rdfs:label "Visible Light Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 400 and 800 terahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Light&oldid=1062630851"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001057.ttl b/src/cco-iris/ont00001057.ttl new file mode 100644 index 00000000..e6006d8c --- /dev/null +++ b/src/cco-iris/ont00001057.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000588 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001057 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Issuing Mass Media Press Release"@en ; + "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001058.ttl b/src/cco-iris/ont00001058.ttl new file mode 100644 index 00000000..b427ea44 --- /dev/null +++ b/src/cco-iris/ont00001058.ttl @@ -0,0 +1,80 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000063 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000085 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001058 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Hour"@en ; + "A Temporal Interval that is equal to sixty consecutive Minutes."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=hour" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001059.ttl b/src/cco-iris/ont00001059.ttl new file mode 100644 index 00000000..407e93ec --- /dev/null +++ b/src/cco-iris/ont00001059.ttl @@ -0,0 +1,169 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000042 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000185 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000385 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000424 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000447 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000464 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000474 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000484 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000494 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000578 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000579 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000590 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000803 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000805 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000815 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000835 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000861 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000885 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000991 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001001 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001055 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shape Quality"@en ; + "A Quality that inheres in a bearer in virtue of the ratios between dimensions of external features of that bearer."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001063 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001199 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001280 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001360 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001369 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001060.ttl b/src/cco-iris/ont00001060.ttl new file mode 100644 index 00000000..27cb5086 --- /dev/null +++ b/src/cco-iris/ont00001060.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001060 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel System"@en ; + "A Material Artifact that is designed to pump, manage, and deliver some Portion of Fuel to the Propulsion System and Auxiliary Power Unit of some Vehicle."@en ; + "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001061.ttl b/src/cco-iris/ont00001061.ttl new file mode 100644 index 00000000..10568718 --- /dev/null +++ b/src/cco-iris/ont00001061.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000053 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001061 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motorcycle"@en ; + "Motorbike"@en ; + "A Ground Motor Vehicle that is designed to transport a very small number of passengers (usually 1 or 2) while traveling on two or three tired wheels."@en ; + "https://en.wikipedia.org/w/index.php?title=Motorcycle&oldid=1063743553"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001062.ttl b/src/cco-iris/ont00001062.ttl new file mode 100644 index 00000000..47f13424 --- /dev/null +++ b/src/cco-iris/ont00001062.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000300 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001062 + rdf:type owl:Class ; + rdfs:subClassOf ; + "The International Community. 5 Apr. 2023, https://dictionary.cambridge.org/us/dictionary/english/international-community." ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "International Community"@en ; + "A maximal Group of Geopolitical Organizations engaged in geopolitics with one another."@en ; + "International Community"@en ; + "https://dictionary.cambridge.org/us/dictionary/english/international-community" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001063.ttl b/src/cco-iris/ont00001063.ttl new file mode 100644 index 00000000..e33906b9 --- /dev/null +++ b/src/cco-iris/ont00001063.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001063 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Straight"@en ; + "Linear"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer not having curves, bends, or angles along its borders."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001064.ttl b/src/cco-iris/ont00001064.ttl new file mode 100644 index 00000000..889a6e32 --- /dev/null +++ b/src/cco-iris/ont00001064.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000241 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001064 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "For information on types of barcodes, see: https://www.scandit.com/types-barcodes-choosing-right-barcode/"@en ; + rdfs:label "Barcode"@en ; + "An Information Bearing Artifact that is designed to bear one or more geometric shapes that concretize some Directive Information Content Entity."@en ; + "https://en.wikipedia.org/w/index.php?title=Barcode&oldid=1059844765"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001065.ttl b/src/cco-iris/ont00001065.ttl new file mode 100644 index 00000000..c0f5f474 --- /dev/null +++ b/src/cco-iris/ont00001065.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001065 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Two Dimensional Extent"@en ; + "Area"@en ; + "A Size Quality that inheres in a bearer in virtue of the bearer's extension in two dimensions."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001202 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001066.ttl b/src/cco-iris/ont00001066.ttl new file mode 100644 index 00000000..13762c08 --- /dev/null +++ b/src/cco-iris/ont00001066.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000250 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001066 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Disposition"@en ; + "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Disposition."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001305 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001067.ttl b/src/cco-iris/ont00001067.ttl new file mode 100644 index 00000000..c38328db --- /dev/null +++ b/src/cco-iris/ont00001067.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001067 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Laser"@en ; + "A Material Artifact that is designed to emit light coherently through a process of optical amplification based on the stimulated emission of electromagnetic radiation."@en ; + "https://en.wikipedia.org/w/index.php?title=Laser&oldid=1059215159"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001068.ttl b/src/cco-iris/ont00001068.ttl new file mode 100644 index 00000000..ee53e6a4 --- /dev/null +++ b/src/cco-iris/ont00001068.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000395 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001068 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Quality"@en ; + "A Gain of Specifically Dependent Continuant in which an Independent Continuant becomes the bearer of some Quality."@en ; + "A person becoming pregnant." ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001069.ttl b/src/cco-iris/ont00001069.ttl new file mode 100644 index 00000000..86bd1c10 --- /dev/null +++ b/src/cco-iris/ont00001069.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001873 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001938 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001069 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Representational Information Content Entity"@en ; + "An Information Content Entity that represents some Entity."@en ; + "the content of a court transcript represents a courtroom proceeding" , + "the content of a photograph of the Statue of Liberty represents the Statue of Liberty" , + "the content of a video of a sporting event represents that sporting event" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001070.ttl b/src/cco-iris/ont00001070.ttl new file mode 100644 index 00000000..57ad59a4 --- /dev/null +++ b/src/cco-iris/ont00001070.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001070 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fluid Control Artifact Function"@en ; + "An Artifact Function that is realized in processes in which some Artifact is used to control the direction or flow of some fluid."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001071.ttl b/src/cco-iris/ont00001071.ttl new file mode 100644 index 00000000..c4e044d6 --- /dev/null +++ b/src/cco-iris/ont00001071.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000713 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001071 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Payload Capacity"@en ; + "An Artifact Function that inheres in a Vehicle that is designed to transport Payload, and which is typically characterized by the maximum Weight, Mass, or Volume of Payload that the Vehicle can transport."@en ; + "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001072.ttl b/src/cco-iris/ont00001072.ttl new file mode 100644 index 00000000..af553053 --- /dev/null +++ b/src/cco-iris/ont00001072.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000169 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001072 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "FM Radio Broadcast Frequency"@en ; + "Frequency Modulation Radio Broadcast Frequency"@en ; + "A Very High Frequency that is between 88 and 108 MHz."@en ; + "International Telecommunication Union (ITU) Region 2" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001073.ttl b/src/cco-iris/ont00001073.ttl new file mode 100644 index 00000000..2ece6f44 --- /dev/null +++ b/src/cco-iris/ont00001073.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000608 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001073 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Financial Value of Property"@en ; + "Property Value"@en ; + "Financial Value that inheres in an material entity that is the object of an Act of Ownership."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001074.ttl b/src/cco-iris/ont00001074.ttl new file mode 100644 index 00000000..08972053 --- /dev/null +++ b/src/cco-iris/ont00001074.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000687 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001074 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Educational Training Acquisition"@en ; + "An Act of Training Acquisition performed by an Agent by acquiring knowledge of a curriculum from an Agent or communication medium that realizes a capacity derived from its affiliation with some Educational Organization."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001075.ttl b/src/cco-iris/ont00001075.ttl new file mode 100644 index 00000000..1e71414c --- /dev/null +++ b/src/cco-iris/ont00001075.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000202 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000234 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000367 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000463 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001075 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Training Instruction"@en ; + "An Act of Training performed by an Agent by imparting knowledge to another Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001120 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001266 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001076.ttl b/src/cco-iris/ont00001076.ttl new file mode 100644 index 00000000..5584e744 --- /dev/null +++ b/src/cco-iris/ont00001076.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000330 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000717 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000846 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000882 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001076 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electric Power Station"@en ; + "Power Plant"@en ; + "A Facility that is designed to generate electrical power."@en ; + "https://en.wikipedia.org/w/index.php?title=Power_station&oldid=1052973815"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001077.ttl b/src/cco-iris/ont00001077.ttl new file mode 100644 index 00000000..d0c2d523 --- /dev/null +++ b/src/cco-iris/ont00001077.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000848 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001077 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heavy Machine Gun"@en ; + "A Mounted Gun that is designed to fire ammunition greater than .50 caliber or 12.7mm ammunition in quick succession from an ammunition belt, and which typically weighs more than 30lbs."@en ; + "https://en.wikipedia.org/w/index.php?title=Heavy_machine_gun&oldid=1047303735"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001078.ttl b/src/cco-iris/ont00001078.ttl new file mode 100644 index 00000000..7c4f9ff2 --- /dev/null +++ b/src/cco-iris/ont00001078.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000195 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000226 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001078 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Airport"@en ; + "A Transportation Facility that is designed for launching, receiving, and housing Aircraft."@en ; + "https://en.wikipedia.org/w/index.php?title=Airport&oldid=1063243963"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001079.ttl b/src/cco-iris/ont00001079.ttl new file mode 100644 index 00000000..1948fa4a --- /dev/null +++ b/src/cco-iris/ont00001079.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001079 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Blond"@en ; + "A Color that ranges from nearly white to a light greyish yellow"@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001080.ttl b/src/cco-iris/ont00001080.ttl new file mode 100644 index 00000000..f8800b64 --- /dev/null +++ b/src/cco-iris/ont00001080.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001080 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Far Infrared Light Frequency"@en ; + "An Infrared Light Frequency that is between 300 gigahertz and 20 terahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001337 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001081.ttl b/src/cco-iris/ont00001081.ttl new file mode 100644 index 00000000..a9071d27 --- /dev/null +++ b/src/cco-iris/ont00001081.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000031 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000563 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000574 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000873 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001081 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geographic Feature"@en ; + "An Environmental Feature that is a natural (i.e. not human made) topographical feature having a (relatively) stable location in some Geospatial Region which can be designated by location-specific data."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001082.ttl b/src/cco-iris/ont00001082.ttl new file mode 100644 index 00000000..a5c770d1 --- /dev/null +++ b/src/cco-iris/ont00001082.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001082 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Patch Receiver"@en ; + "A Radio Receiver that uses a Patch Antenna to intercept radio signals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001145 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001083.ttl b/src/cco-iris/ont00001083.ttl new file mode 100644 index 00000000..e0b0d403 --- /dev/null +++ b/src/cco-iris/ont00001083.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000056 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001083 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Air-Breathing Combustion Engine"@en ; + "A Reaction Engine that functions by drawing a continuous stream of air into and through the Engine where it is compressed, mixed with a Portion of Fuel, ignited, and then expelled as exhaust gas."@en ; + "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001084.ttl b/src/cco-iris/ont00001084.ttl new file mode 100644 index 00000000..5f087225 --- /dev/null +++ b/src/cco-iris/ont00001084.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000307 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000457 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000980 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001084 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Processed Material"@en ; + "A Material Artifact that is the output of an Act of Artifact Processing."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001085.ttl b/src/cco-iris/ont00001085.ttl new file mode 100644 index 00000000..f36763f8 --- /dev/null +++ b/src/cco-iris/ont00001085.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001085 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reflection Artifact Function"@en ; + "An Artifact Function that is realized by an Artifact participating in a reflection event in which the Artifact causes a change in a wavefront at an interface between the reflecting medium and the transmission medium such that the wavefront returns into the transmission medium."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001086.ttl b/src/cco-iris/ont00001086.ttl new file mode 100644 index 00000000..74cd4407 --- /dev/null +++ b/src/cco-iris/ont00001086.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000956 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001086 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Road Junction"@en ; + "A Land Transportation Artifact that is designed to enable Ground Vehicles to exit one Road and enter another."@en ; + "https://en.wikipedia.org/wiki/Junction_(road)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001326 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001087.ttl b/src/cco-iris/ont00001087.ttl new file mode 100644 index 00000000..a905d8a9 --- /dev/null +++ b/src/cco-iris/ont00001087.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001087 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Orientation Observation Artifact Function"@en ; + "Attitude Observation Artifact Function"@en ; + "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the Orientation of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001306 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001088.ttl b/src/cco-iris/ont00001088.ttl new file mode 100644 index 00000000..0b048bd7 --- /dev/null +++ b/src/cco-iris/ont00001088.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000832 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001088 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decade"@en ; + "A Temporal Interval that is equal to a period of ten consecutive Years."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=decade" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001089.ttl b/src/cco-iris/ont00001089.ttl new file mode 100644 index 00000000..e6a0c4cc --- /dev/null +++ b/src/cco-iris/ont00001089.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001089 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Petrochemical Refinery"@en ; + "A Refinery that is designed for refining crude oil, intermediate petroleum products, or synthetic petroleum into products of value."@en ; + "https://en.wikipedia.org/w/index.php?title=Petrochemical&oldid=1060574535"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001283 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001090.ttl b/src/cco-iris/ont00001090.ttl new file mode 100644 index 00000000..eae25d34 --- /dev/null +++ b/src/cco-iris/ont00001090.ttl @@ -0,0 +1,83 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001090 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Pressure"@en ; + "A Measurement Unit that is used as a standard for measurement of Force applied perpendicular to a surface per unit area."@en ; + "pascal, atmosphere, pound-force per square inch" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001432 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001474 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001559 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001587 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001612 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001643 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001694 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001091.ttl b/src/cco-iris/ont00001091.ttl new file mode 100644 index 00000000..c51eb0dc --- /dev/null +++ b/src/cco-iris/ont00001091.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001052 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001091 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fort"@en ; + "A Military Facility that is designed to support the defense of or solidification of rule over some Geospatial Region and its inhabitants."@en ; + "https://en.wikipedia.org/w/index.php?title=Fortification&oldid=1060156408"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001092.ttl b/src/cco-iris/ont00001092.ttl new file mode 100644 index 00000000..34cc80c0 --- /dev/null +++ b/src/cco-iris/ont00001092.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000098 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001092 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Power Storage Artifact Function"@en ; + "Capacitance"@en ; + "An Electrical Artifact Function that is realized during events in which an Artifact is used to store electrical power to be released at a later time."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001093.ttl b/src/cco-iris/ont00001093.ttl new file mode 100644 index 00000000..08a2525c --- /dev/null +++ b/src/cco-iris/ont00001093.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000475 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001093 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Coin"@en ; + "A Portion of Cash that consists of a flat, portable, round pieces of metal designed to bear some specified Financial Value."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001094.ttl b/src/cco-iris/ont00001094.ttl new file mode 100644 index 00000000..e7eb9362 --- /dev/null +++ b/src/cco-iris/ont00001094.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001094 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Espionage"@en ; + "An Act of Intelligence Gathering involving the obtaining of information that is considered secret or confidential without the permission of the holder of the information."@en ; + "https://en.wikipedia.org/w/index.php?title=Espionage&oldid=1062702647"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001251 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001095.ttl b/src/cco-iris/ont00001095.ttl new file mode 100644 index 00000000..ffd1d430 --- /dev/null +++ b/src/cco-iris/ont00001095.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000363 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001095 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cellular Telecommunication Network"@en ; + "Cellular Network"@en , + "Mobile Telecommunication Network"@en ; + "A Wireless Telecommunication Network where the last link between the network and the end user is wireless and is distributed over service areas called cells."@en ; + "https://en.wikipedia.org/w/index.php?title=Cellular_network&oldid=1061429562"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001096.ttl b/src/cco-iris/ont00001096.ttl new file mode 100644 index 00000000..8ad9f8a1 --- /dev/null +++ b/src/cco-iris/ont00001096.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001096 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Submachine Gun"@en ; + "An Long Gun that is designed to be have automatic-fire functionality, fire pistol-caliber ammunition that is magazine-fed, and which is usually smaller than other automatic firearms."@en ; + "https://en.wikipedia.org/w/index.php?title=Submachine_gun&oldid=1063939013"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001104 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001097.ttl b/src/cco-iris/ont00001097.ttl new file mode 100644 index 00000000..086e21e0 --- /dev/null +++ b/src/cco-iris/ont00001097.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001097 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Common Stock"@en ; + "Stock that entitles its holder to voting on corporate decisions."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001278 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001098.ttl b/src/cco-iris/ont00001098.ttl new file mode 100644 index 00000000..edbd97f6 --- /dev/null +++ b/src/cco-iris/ont00001098.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000055 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001098 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hospital"@en ; + "A Healthcare Facility that is designed to provide patient treatment with specialized staff and equipment."@en ; + "https://en.wikipedia.org/w/index.php?title=Hospital&oldid=1063047817"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001099.ttl b/src/cco-iris/ont00001099.ttl new file mode 100644 index 00000000..8a7cac15 --- /dev/null +++ b/src/cco-iris/ont00001099.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001099 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bridge"@en ; + "A Land Transportation Artifact that is designed to span physical obstacles without closing the way underneath to enable Persons or Ground Vehicles to pass over the obstacles."@en ; + "https://en.wikipedia.org/w/index.php?title=Bridge&oldid=1061858310" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001326 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001100.ttl b/src/cco-iris/ont00001100.ttl new file mode 100644 index 00000000..6204e716 --- /dev/null +++ b/src/cco-iris/ont00001100.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000062 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000411 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000657 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000947 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001100 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact is used to measure one or more features of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001101.ttl b/src/cco-iris/ont00001101.ttl new file mode 100644 index 00000000..40ba0fe3 --- /dev/null +++ b/src/cco-iris/ont00001101.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001101 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Interval Estimate Information Content Entity"@en ; + "Interval Estimate"@en , + "Interval Estimate Measurement Information Content Entity"@en ; + "An Estimate Information Content Entity that consists of an interval of possible (or probable) values for the measured entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001149 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001176 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001102.ttl b/src/cco-iris/ont00001102.ttl new file mode 100644 index 00000000..ba6293be --- /dev/null +++ b/src/cco-iris/ont00001102.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000040 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000262 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000468 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001102 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Commercial Facility"@en ; + "A Facility that is designed for buying and selling goods and services, especially on a large scale."@en ; + "https://en.wikipedia.org/w/index.php?title=Commerce&oldid=1063120985"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001103.ttl b/src/cco-iris/ont00001103.ttl new file mode 100644 index 00000000..12aac5e7 --- /dev/null +++ b/src/cco-iris/ont00001103.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001045 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001103 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Artifact Model Name"@en ; + "A Designative Information Content Entity that designates some Artifact Model."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001104.ttl b/src/cco-iris/ont00001104.ttl new file mode 100644 index 00000000..7949f995 --- /dev/null +++ b/src/cco-iris/ont00001104.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000015 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000088 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000204 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000851 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001096 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001104 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Long Gun"@en ; + "A Firearm that is designed to have a longer barrel than a Hand Gun and to be fired while braced against the shoulder."@en ; + "https://en.wikipedia.org/w/index.php?title=Long_gun&oldid=1063715506"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001105.ttl b/src/cco-iris/ont00001105.ttl new file mode 100644 index 00000000..50945da3 --- /dev/null +++ b/src/cco-iris/ont00001105.ttl @@ -0,0 +1,70 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000158 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000716 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000930 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001038 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001105 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Secondary Cell Electric Battery"@en ; + "Rechargeable Battery"@en , + "Secondary Cell Battery"@en ; + "An Electric Battery that is designed to be recharged."@en ; + "https://en.wikipedia.org/w/index.php?title=Rechargeable_battery&oldid=1064096406"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001321 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001106.ttl b/src/cco-iris/ont00001106.ttl new file mode 100644 index 00000000..785c89a1 --- /dev/null +++ b/src/cco-iris/ont00001106.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000387 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001106 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Roll Axis"@en ; + "Longitudinal Axis"@en ; + "An Axis of Rotation that passes through the center of an object's Mass from the front to the back of the object as defined by the direction of the object's motion."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001107.ttl b/src/cco-iris/ont00001107.ttl new file mode 100644 index 00000000..e452753e --- /dev/null +++ b/src/cco-iris/ont00001107.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001107 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Landfill"@en ; + "A Waste Management Facility that is designed for disposing of waste by burial."@en ; + "https://en.wikipedia.org/w/index.php?title=Landfill&oldid=1058364420"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001315 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001108.ttl b/src/cco-iris/ont00001108.ttl new file mode 100644 index 00000000..6b594253 --- /dev/null +++ b/src/cco-iris/ont00001108.ttl @@ -0,0 +1,57 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000732 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001108 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment """The corresponding Wavelength range is 1–0.1 m. + +Note that the ITU definition of UHF is broader than the definition given by IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands, which sets the frequency range at 300 MHz to 1 GHz."""@en ; + rdfs:label "Ultra High Frequency"@en ; + "ITU Band Number 9"@en ; + "A Microwave Frequency that is between 300 MHz and 3 GHz."@en ; + "UHF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001109.ttl b/src/cco-iris/ont00001109.ttl new file mode 100644 index 00000000..7c1c4d7b --- /dev/null +++ b/src/cco-iris/ont00001109.ttl @@ -0,0 +1,51 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000368 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001109 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Counter-Clockwise Rotational Motion"@en ; + "Anti-Clockwise Rotation"@en , + "CCW Rotational Motion"@en , + "Counter-Clockwise Rotation"@en ; + "A Rotational Motion in which the direction of rotation is toward the left as seen relative to the designated side of the plane of rotation."@en ; + "the axial rotation of the Earth as seen from above the North Pole" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001110.ttl b/src/cco-iris/ont00001110.ttl new file mode 100644 index 00000000..97820fdf --- /dev/null +++ b/src/cco-iris/ont00001110.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001110 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Evening"@en ; + "A Temporal Interval that consists of the temporal regions between when the sun sets (approximately 6:00pm) and when people typically retire to sleep (approximately 9:00pm)."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001111.ttl b/src/cco-iris/ont00001111.ttl new file mode 100644 index 00000000..55d306af --- /dev/null +++ b/src/cco-iris/ont00001111.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000530 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001111 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Low Midrange Frequency"@en ; + "A Sonic Frequency that is between 250 and 500 Hz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001112.ttl b/src/cco-iris/ont00001112.ttl new file mode 100644 index 00000000..78f6f750 --- /dev/null +++ b/src/cco-iris/ont00001112.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000712 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001112 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Proper Acceleration"@en ; + "An Acceleration of an object relative to a free-fall, or inertial, observer who is momentarily at rest relative to the object being measured (hence, gravity does not cause Proper Acceleration)."@en ; + "https://en.wikipedia.org/w/index.php?title=Proper_acceleration&oldid=1058169867"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001113.ttl b/src/cco-iris/ont00001113.ttl new file mode 100644 index 00000000..08a5a025 --- /dev/null +++ b/src/cco-iris/ont00001113.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001113 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Magenta"@en ; + "A Color consisting of red and blue hues."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001114.ttl b/src/cco-iris/ont00001114.ttl new file mode 100644 index 00000000..3eac246f --- /dev/null +++ b/src/cco-iris/ont00001114.ttl @@ -0,0 +1,62 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000472 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001114 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + owl:disjointWith ; + rdfs:comment "Instances of this class are not proper Delimiting Domains, but in some cases may have an organization that exercises some control over the region, such as the homeowners' association for a neighborhood."@en ; + rdfs:label "Division of Delimiting Domain"@en ; + "A Geospatial Region that is a fiat division of a Delimiting Domain and not a Delimiting Domain."@en ; + "Flatbush, French Quarter, Western New York, Texas Panhandle, Greater Montreal Area of Quebec, Pacific Northwest, southwest area of Al Anbar Province, Northern Iraq." ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001203 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001115.ttl b/src/cco-iris/ont00001115.ttl new file mode 100644 index 00000000..7813a051 --- /dev/null +++ b/src/cco-iris/ont00001115.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001115 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Private Network Telephone Call"@en ; + "A Telephone Call transmitted over a network where a closed group of telephones are connected primarily to each other and use a gateway to reach the outside world, usually used inside companies and call centers (a.k.a. private branch exchange (PBX))."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001190 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001116.ttl b/src/cco-iris/ont00001116.ttl new file mode 100644 index 00000000..6d7e1b1a --- /dev/null +++ b/src/cco-iris/ont00001116.ttl @@ -0,0 +1,51 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000203 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001116 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reference Time"@en ; + "Epoch"@en , + "Epoch Time"@en , + "Reference Date"@en ; + "A Temporal Instant specified as the origin for which other Temporal Regions are measured or identified."@en ; + "https://en.wikipedia.org/wiki/Epoch_(reference_date)" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001117.ttl b/src/cco-iris/ont00001117.ttl new file mode 100644 index 00000000..b1c8fff3 --- /dev/null +++ b/src/cco-iris/ont00001117.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000252 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001117 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propelling Nozzle"@en ; + "Jet Nozzle"@en ; + "A Nozzle that is used to convert a propulsion Engine into a Jet Engine and functions by using its narrowest part, the throat, to increase Pressure within the Engine by constricting flow, usually until the flow chokes, then expanding the exhaust stream to, or near to, atmospheric pressure, while forming it into a high speed jet to propel the Vehicle."@en ; + "https://en.wikipedia.org/w/index.php?title=Propelling_nozzle&oldid=1061239812"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001118.ttl b/src/cco-iris/ont00001118.ttl new file mode 100644 index 00000000..69bdfd44 --- /dev/null +++ b/src/cco-iris/ont00001118.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000016 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001118 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Surface Tension"@en ; + "A Disposition that inheres in a liquid and is realized when the cohesive forces of the molecules in the bearer at the surface are greater than the adhesive forces of the molecules in the surrounding air."@en ; + "https://en.wikipedia.org/w/index.php?title=Surface_tension&oldid=1062753527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001119.ttl b/src/cco-iris/ont00001119.ttl new file mode 100644 index 00000000..aeb2b47a --- /dev/null +++ b/src/cco-iris/ont00001119.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001119 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Document Form"@en ; + "A Document having Document Fields as parts in which to write or select prescribed content."@en ; + "https://en.wikipedia.org/wiki/Form_(document)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001298 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001120.ttl b/src/cco-iris/ont00001120.ttl new file mode 100644 index 00000000..fd28babf --- /dev/null +++ b/src/cco-iris/ont00001120.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001075 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001120 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Religious Training Instruction"@en ; + "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Religious Organization by imparting knowledge of the tenets and/or practices of a religion to an Agent either directly or indirectly through some communication medium."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001121.ttl b/src/cco-iris/ont00001121.ttl new file mode 100644 index 00000000..43aba895 --- /dev/null +++ b/src/cco-iris/ont00001121.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000294 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001121 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Scramjet Engine"@en ; + "Scramjet"@en , + "Supersonic Combusting Ramjet"@en ; + "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air at supersonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + "https://en.wikipedia.org/w/index.php?title=Scramjet&oldid=1062429697"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001122.ttl b/src/cco-iris/ont00001122.ttl new file mode 100644 index 00000000..b64e4490 --- /dev/null +++ b/src/cco-iris/ont00001122.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000007 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001122 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Interference"@en ; + "A Natural Process in which a radio signal is disrupted, whether unintentionally or as the result of an Act of Radio Jamming, Act of Radio Spoofing, or similar Planned Act."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001123.ttl b/src/cco-iris/ont00001123.ttl new file mode 100644 index 00000000..99dd0633 --- /dev/null +++ b/src/cco-iris/ont00001123.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000828 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001123 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Poison Artifact Function"@en ; + "A Damaging Artifact Function that is realized in a process which causes illness in, or the death of, a living thing."@en ; + "http://www.dictionary.com/browse/poison" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001153 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001124.ttl b/src/cco-iris/ont00001124.ttl new file mode 100644 index 00000000..bf387e5d --- /dev/null +++ b/src/cco-iris/ont00001124.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000280 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001124 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Precision-Guided Missile"@en ; + "Missile"@en ; + "A Portion of Ammunition that is designed to be a self-propelled and precision-guided projectile that delivers some payload (explosive or other) over relatively long distances."@en ; + "https://en.wikipedia.org/w/index.php?title=Missile&oldid=1062028589"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001150 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001125.ttl b/src/cco-iris/ont00001125.ttl new file mode 100644 index 00000000..85a2dcd5 --- /dev/null +++ b/src/cco-iris/ont00001125.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000084 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000500 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001125 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Set of Eyes"@en ; + "A Bodily Component that consists of two or more Eyes that are part of a single Agent."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001126.ttl b/src/cco-iris/ont00001126.ttl new file mode 100644 index 00000000..b3d34c88 --- /dev/null +++ b/src/cco-iris/ont00001126.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000459 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000784 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000941 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001126 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "There are a variety of photometric measurements, such as luminous flux/power or luminous intensity, whose units are lumen and candela respectively, which attempt to describe properties associated with the perception of light. These are weighted measurements, typically by the luminosity function, as thus exist on the side of information content. It is a point of further development to add the needed intrinsic properties of radiation that such measurements are about."@en ; + rdfs:label "Luminescent Property"@en ; + "An Optical Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light, but which isn't the result of the bearer being heated."@en ; + "https://en.wikipedia.org/w/index.php?title=Luminescence&oldid=1050169944"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001127.ttl b/src/cco-iris/ont00001127.ttl new file mode 100644 index 00000000..bee41999 --- /dev/null +++ b/src/cco-iris/ont00001127.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000865 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001127 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Quality"@en ; + "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Quality."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001128.ttl b/src/cco-iris/ont00001128.ttl new file mode 100644 index 00000000..c230e27a --- /dev/null +++ b/src/cco-iris/ont00001128.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000676 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001128 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Residing"@en ; + "An Act of Inhabitancy in which a Person lives in a dwelling permanently or for an extended period of time."@en ; + "http://www.thefreedictionary.com/reside" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001129.ttl b/src/cco-iris/ont00001129.ttl new file mode 100644 index 00000000..390dd7c9 --- /dev/null +++ b/src/cco-iris/ont00001129.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000113 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001129 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pressurization Control Artifact Function"@en ; + "A Ventilation Control Artifact Function that is realized by processes in which some Artifact is used to control the partial pressure of air in some space."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001130.ttl b/src/cco-iris/ont00001130.ttl new file mode 100644 index 00000000..9f660707 --- /dev/null +++ b/src/cco-iris/ont00001130.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000358 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000817 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001130 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Polygon"@en ; + "A Geospatial Line String that has at least three vertices where the connecting lines form a closed loop."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001131.ttl b/src/cco-iris/ont00001131.ttl new file mode 100644 index 00000000..66c2d005 --- /dev/null +++ b/src/cco-iris/ont00001131.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000966 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001131 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "EAN-8 Barcode"@en ; + "An EAN Barcode that consists of 8 numerical digits and is used to designate products at the point of sale."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001132.ttl b/src/cco-iris/ont00001132.ttl new file mode 100644 index 00000000..e96f749f --- /dev/null +++ b/src/cco-iris/ont00001132.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000100 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000246 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000557 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000622 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001132 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Mission Capability"@en ; + "A Stasis of Realizable Entity that holds during a temporal interval when a Continuant's capability (or lack thereof) to perform its intended Functions, tasks, or Objectives remains at a relatively constant level."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001133.ttl b/src/cco-iris/ont00001133.ttl new file mode 100644 index 00000000..4a7d5eaf --- /dev/null +++ b/src/cco-iris/ont00001133.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000007 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000368 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000789 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001133 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motion"@en ; + "A Natural Process in which a Continuant changes its Location or Spatial Orientation over some Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001279 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001134.ttl b/src/cco-iris/ont00001134.ttl new file mode 100644 index 00000000..3ca3552c --- /dev/null +++ b/src/cco-iris/ont00001134.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001134 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vehicle Frame"@en ; + "A Material Artifact that is designed to be the main supporting structure of some Vehicle."@en ; + "https://en.wikipedia.org/w/index.php?title=Vehicle_frame&oldid=1054003530"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001135.ttl b/src/cco-iris/ont00001135.ttl new file mode 100644 index 00000000..cb16f112 --- /dev/null +++ b/src/cco-iris/ont00001135.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000838 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001135 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Fuel"@en ; + "A Portion of Fuel that is stored in a liquid state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001136.ttl b/src/cco-iris/ont00001136.ttl new file mode 100644 index 00000000..d688c1c1 --- /dev/null +++ b/src/cco-iris/ont00001136.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000008 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001136 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ultrasonic Frequency"@en ; + "A Sound Frequency that is greater than 20 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001137.ttl b/src/cco-iris/ont00001137.ttl new file mode 100644 index 00000000..228503c0 --- /dev/null +++ b/src/cco-iris/ont00001137.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000281 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000628 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000826 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001137 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiation Reflectivity"@en ; + "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to scatter or reflect electromagnetic radiation of a given frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001138.ttl b/src/cco-iris/ont00001138.ttl new file mode 100644 index 00000000..07ba1c66 --- /dev/null +++ b/src/cco-iris/ont00001138.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000499 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001138 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Beverage Antenna"@en ; + "A Wire Antenna that consists of a horizontal wire one-half to two wavelengths long that is suspended above the ground with one end attached to the receiver feedline and the other grounded and which is typically used in the low and medium frequency radio bands."@en ; + "Adapted from: https://en.wikipedia.org/wiki/Beverage_antenna" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001139.ttl b/src/cco-iris/ont00001139.ttl new file mode 100644 index 00000000..e4b8c168 --- /dev/null +++ b/src/cco-iris/ont00001139.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000352 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000713 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001139 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spacecraft"@en ; + "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by Spaceflight."@en ; + "https://en.wikipedia.org/w/index.php?title=Spacecraft&oldid=1062102614"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001140.ttl b/src/cco-iris/ont00001140.ttl new file mode 100644 index 00000000..21817e51 --- /dev/null +++ b/src/cco-iris/ont00001140.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001140 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Flywheel"@en ; + "A Material Artifact that is designed to store rotational energy such that it has a significant moment of inertia which enables it to resist changes in rotational speed."@en ; + "https://en.wikipedia.org/w/index.php?title=Flywheel&oldid=1061360783"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001141.ttl b/src/cco-iris/ont00001141.ttl new file mode 100644 index 00000000..5ed466ff --- /dev/null +++ b/src/cco-iris/ont00001141.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000627 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001141 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The disposition will typically be a function of an artifact, which is often designed to be part of some Infrastructure system. But not always. In some cases an entity may be repurposed to be an element of some Infrastructure. In those cases it is a capability of that entity that supports the functioning of the system."@en ; + rdfs:label "Infrastructure Role"@en ; + "A Role that inheres in the bearer of a Disposition and has been assigned to an Infrastructure System such that the realization of that Disposition is sometimes part of the functioning of the Infrastructure System."@en ; + "https://archive.org/details/economicsprincip00osul/page/n489/mode/2up"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001142.ttl b/src/cco-iris/ont00001142.ttl new file mode 100644 index 00000000..94d6fc5d --- /dev/null +++ b/src/cco-iris/ont00001142.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001142 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Violet"@en ; + "A Color that is lower than Blue with a wavelength in the visible spectrum typically between 400 and 450 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001143.ttl b/src/cco-iris/ont00001143.ttl new file mode 100644 index 00000000..2fdbb586 --- /dev/null +++ b/src/cco-iris/ont00001143.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001143 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Facsimile Transmission"@en ; + "Act of Facsimile Transmission"@en , + "Act of Faxing"@en ; + "An Act of Communication by Media in which the Information Content Entity that inheres in a Document is transmitted over a Telephone Network."@en ; + "https://en.wikipedia.org/w/index.php?title=Fax&oldid=1054674158"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001144.ttl b/src/cco-iris/ont00001144.ttl new file mode 100644 index 00000000..7e7f0f46 --- /dev/null +++ b/src/cco-iris/ont00001144.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001144 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Entertainment"@en ; + "A Planned Act consisting of any activity which provides a diversion or permits people to amuse themselves."@en ; + "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001145.ttl b/src/cco-iris/ont00001145.ttl new file mode 100644 index 00000000..a49ebc9b --- /dev/null +++ b/src/cco-iris/ont00001145.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000701 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000903 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001082 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001145 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Receiver"@en ; + "A Radio Communication Instrument that is an electronic device that is designed to extract information from radio waves intercepted by a Radio Antenna by using electronic filters to separate the desired radio frequency signal from other signals, an electronic amplifier to increase the power of the signal, and demodulation to recover the desired information."@en ; + "https://en.wikipedia.org/w/index.php?title=Radio_receiver&oldid=1060111342"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001223 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001146.ttl b/src/cco-iris/ont00001146.ttl new file mode 100644 index 00000000..d1967fcb --- /dev/null +++ b/src/cco-iris/ont00001146.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001146 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Sidereal Time is the angle measured from an observer's meridian along the celestial equator to the Great Circle that passes through the March equinox and both poles. This angle is usually expressed in Hours, Minutes, and Seconds."@en ; + rdfs:label "Sidereal Time Reference System"@en ; + "A Temporal Reference System that is based on Earth's rate of rotation measured relative to one or more fixed Stars (rather than the Sun)."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001147.ttl b/src/cco-iris/ont00001147.ttl new file mode 100644 index 00000000..6889307d --- /dev/null +++ b/src/cco-iris/ont00001147.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000191 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000654 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001147 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Violence"@en ; + "A Planned Act of causing harm to oneself or to another through the use of physical or verbal force."@en ; + "https://en.wikipedia.org/w/index.php?title=Violence&oldid=1063681926"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001236 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001148.ttl b/src/cco-iris/ont00001148.ttl new file mode 100644 index 00000000..2311059d --- /dev/null +++ b/src/cco-iris/ont00001148.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000727 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000823 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001148 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electromagnetic Communication Artifact Function"@en ; + "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of electromagnetic radiation."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001240 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001149.ttl b/src/cco-iris/ont00001149.ttl new file mode 100644 index 00000000..bee46f02 --- /dev/null +++ b/src/cco-iris/ont00001149.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001101 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001149 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Data Range Interval Estimate Information Content Entity"@en ; + "A Ratio Measurement Information Content Entity that is a measurement of a set of values and is equal to the absolute difference between the largest value and the smallest value in the set."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001150.ttl b/src/cco-iris/ont00001150.ttl new file mode 100644 index 00000000..765ac73f --- /dev/null +++ b/src/cco-iris/ont00001150.ttl @@ -0,0 +1,79 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000178 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000216 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000445 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000748 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001003 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001029 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001124 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001150 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Ammunition"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by being projected toward its target at a significant Velocity."@en ; + "https://en.wikipedia.org/w/index.php?title=Ammunition&oldid=1062875850"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001288 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001151.ttl b/src/cco-iris/ont00001151.ttl new file mode 100644 index 00000000..2c56c5d7 --- /dev/null +++ b/src/cco-iris/ont00001151.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000893 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001151 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Paper"@en ; + "An Information Medium Artifact that is designed to bear some Information Content Entity by means of pressing together moist fibres of cellulose pulp derived from wood, rags, or grasses, and drying them into flexible sheets."@en ; + "https://en.wikipedia.org/w/index.php?title=Paper&oldid=1057624743"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001152.ttl b/src/cco-iris/ont00001152.ttl new file mode 100644 index 00000000..1f61947b --- /dev/null +++ b/src/cco-iris/ont00001152.ttl @@ -0,0 +1,114 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000171 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001864 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000126 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000134 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000139 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000405 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000460 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000473 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000662 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Government Domain"@en ; + "A Delimiting Domain that delimits the authority of a Government to exercise its control within the bounded area."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001164 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001203 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001335 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001341 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001153.ttl b/src/cco-iris/ont00001153.ttl new file mode 100644 index 00000000..8fc3079c --- /dev/null +++ b/src/cco-iris/ont00001153.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000244 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000534 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000841 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001123 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001153 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Damaging Artifact Function"@en ; + "An Artifact Function that is realized in a process in which the structural integrity of an entity is impaired."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001233 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001154.ttl b/src/cco-iris/ont00001154.ttl new file mode 100644 index 00000000..bb2b140a --- /dev/null +++ b/src/cco-iris/ont00001154.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000992 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001154 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Second Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Seconds and spans at least one Second."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001155.ttl b/src/cco-iris/ont00001155.ttl new file mode 100644 index 00000000..d34a7831 --- /dev/null +++ b/src/cco-iris/ont00001155.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000601 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001155 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Full Motion Video Imaging Artifact Function"@en ; + "An Imaging Artifact Function that inheres in Artifacts that are designed to produce video of entities that is of high enough quality to make the represented motion appear continuous to human viewers."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001156.ttl b/src/cco-iris/ont00001156.ttl new file mode 100644 index 00000000..20b24d5b --- /dev/null +++ b/src/cco-iris/ont00001156.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001156 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Information Line"@en ; + "An Information Bearing Artifact that consists of a single line or row of some larger Information Bearing Artifact of which it is a part."@en ; + "a line in a computer file that bears a portion of code for some computer program" , + "a line of data in a database" , + "a line of text in a book" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001157.ttl b/src/cco-iris/ont00001157.ttl new file mode 100644 index 00000000..3b9735ae --- /dev/null +++ b/src/cco-iris/ont00001157.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000288 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001157 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydraulic Power Source"@en ; + "A Power Source that is designed to generate, control, or transmit power by means of pressurized liquid."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001158.ttl b/src/cco-iris/ont00001158.ttl new file mode 100644 index 00000000..78686666 --- /dev/null +++ b/src/cco-iris/ont00001158.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000366 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001158 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Data Transformation"@en ; + "An Act of Information Processing in which an algorithm is executed to act upon one or more input Information Content Entities into one or more output Information Content Entities."@en ; + "It is not a requirement that the output Information Content Entity(ies) be qualitatively distinct from the input(s) as a result of an Act of Data Transformation, though doing so is typically the goal of performing this Act. Consider, for example, selecting a column in an Excel spreadsheet then executing the \\\"Remove Duplicates\\\" Algorithm on it. The intent is to remove rows in that column containing duplicate content. If no duplicate values are present, the information in the column remains unchanged but an Act of Data Transformation was nonetheless performed."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001159.ttl b/src/cco-iris/ont00001159.ttl new file mode 100644 index 00000000..26c5feca --- /dev/null +++ b/src/cco-iris/ont00001159.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000347 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000536 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000537 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001159 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bond"@en ; + "A Financial Instrument that is designed to secure an Agent's debt for the holders of that debt."@en ; + "https://en.wikipedia.org/wiki/Bond_(finance)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001160.ttl b/src/cco-iris/ont00001160.ttl new file mode 100644 index 00000000..34ab929f --- /dev/null +++ b/src/cco-iris/ont00001160.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000791 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001160 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Solvent Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in the dissolving of other substances (namely, solutes) without change in the former's chemical structure."@en ; + "https://en.wikipedia.org/w/index.php?title=Solvent&oldid=1062572314"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001161.ttl b/src/cco-iris/ont00001161.ttl new file mode 100644 index 00000000..ca3e93de --- /dev/null +++ b/src/cco-iris/ont00001161.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000719 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001161 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Counterfeit Legal Instrument"@en ; + "A Counterfeit Instrument that is designed to be a fake replica of some genuine Legal Instrument."@en ; + "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001162.ttl b/src/cco-iris/ont00001162.ttl new file mode 100644 index 00000000..f647f6d4 --- /dev/null +++ b/src/cco-iris/ont00001162.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000240 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000821 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000883 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001031 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001162 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Examples: agreeing, betting, guaranteeing, inviting, offering, promising, swearing, volunteering"@en ; + rdfs:label "Act of Commissive Communication"@en ; + "An Act of Communication that commits a speaker to some future action."@en ; + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001163.ttl b/src/cco-iris/ont00001163.ttl new file mode 100644 index 00000000..9d69adc0 --- /dev/null +++ b/src/cco-iris/ont00001163.ttl @@ -0,0 +1,168 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001811 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001868 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001877 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001904 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001966 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001983 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000293 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000592 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000692 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000731 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001022 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001069 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Measurement Information Content Entity"@en ; + "Measurement ICE"@en ; + "A Descriptive Information Content Entity that describes the extent, dimensions, quantity, or quality of an Entity relative to some standard."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001176 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001256 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001364 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001164.ttl b/src/cco-iris/ont00001164.ttl new file mode 100644 index 00000000..b98d34f1 --- /dev/null +++ b/src/cco-iris/ont00001164.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001164 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "County"@en ; + "A Government Domain that is part of either a First-Order or Second-Order Administrative Region."@en ; + "https://en.wikipedia.org/w/index.php?title=County&oldid=1062817834"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001165.ttl b/src/cco-iris/ont00001165.ttl new file mode 100644 index 00000000..f436d41c --- /dev/null +++ b/src/cco-iris/ont00001165.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000332 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001165 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Terrorist Training Camp"@en ; + "A Training Camp designed to teach students methods of terrorism."@en ; + "https://en.wikipedia.org/w/index.php?title=Terrorist_training_camp&oldid=1037856600"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001166.ttl b/src/cco-iris/ont00001166.ttl new file mode 100644 index 00000000..cf9c380c --- /dev/null +++ b/src/cco-iris/ont00001166.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000085 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001166 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Minute Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Minutes and spans at least one Minute."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001167.ttl b/src/cco-iris/ont00001167.ttl new file mode 100644 index 00000000..7311ce76 --- /dev/null +++ b/src/cco-iris/ont00001167.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000530 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001167 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Midrange Frequency"@en ; + "A Sonic Frequency that is between 500 Hz and 2 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001168.ttl b/src/cco-iris/ont00001168.ttl new file mode 100644 index 00000000..6a1eaa5f --- /dev/null +++ b/src/cco-iris/ont00001168.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001168 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reaction Mass"@en ; + "Working Mass"@en ; + "A Material Entity against which a Propulsion System operates in order to produce Acceleration."@en ; + "https://en.wikipedia.org/w/index.php?title=Working_mass&oldid=1057126114"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001169.ttl b/src/cco-iris/ont00001169.ttl new file mode 100644 index 00000000..99e5dba8 --- /dev/null +++ b/src/cco-iris/ont00001169.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000900 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001169 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication Relay Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information from one Artifact to another for the purpose of communiction."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001271 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001170.ttl b/src/cco-iris/ont00001170.ttl new file mode 100644 index 00000000..179ee0d8 --- /dev/null +++ b/src/cco-iris/ont00001170.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000490 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001170 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hard X-ray Frequency"@en ; + "An X-Ray Frequency that is between 3 and 30 exahertz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001171.ttl b/src/cco-iris/ont00001171.ttl new file mode 100644 index 00000000..36bdf5ba --- /dev/null +++ b/src/cco-iris/ont00001171.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001171 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wireless Network Telephone Call"@en ; + "A Telephone Call transmitted over a network where the telephones are mobile and can move anywhere within the coverage area."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001190 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001172.ttl b/src/cco-iris/ont00001172.ttl new file mode 100644 index 00000000..0f285965 --- /dev/null +++ b/src/cco-iris/ont00001172.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000593 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001172 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Gelatinous Propellant"@en ; + "A Portion of Propellant that is stored in a gelatinous state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001173.ttl b/src/cco-iris/ont00001173.ttl new file mode 100644 index 00000000..2ea8e5f0 --- /dev/null +++ b/src/cco-iris/ont00001173.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000167 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000298 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000868 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001051 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001173 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rocket Launcher"@en ; + "A Projectile Launcher that is designed to launch one or more Unguided Rockets."@en ; + "https://en.wikipedia.org/w/index.php?title=Rocket_launcher&oldid=1049900727"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001174.ttl b/src/cco-iris/ont00001174.ttl new file mode 100644 index 00000000..db1be951 --- /dev/null +++ b/src/cco-iris/ont00001174.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001174 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electromagnetic Shielding Artifact Function"@en ; + "An Artifact Function that is realized in a process in which an electromagnetic field is blocked by barriers made of conductive or magnetic materials."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_shielding&oldid=1063432544"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001175.ttl b/src/cco-iris/ont00001175.ttl new file mode 100644 index 00000000..8be787ed --- /dev/null +++ b/src/cco-iris/ont00001175.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001899 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001976 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000146 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000496 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001175 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Language"@en ; + "A Directive Information Content Entity that prescribes a canonical format for communication."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001176.ttl b/src/cco-iris/ont00001176.ttl new file mode 100644 index 00000000..cb80484b --- /dev/null +++ b/src/cco-iris/ont00001176.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000745 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001101 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001176 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Estimate Information Content Entity"@en ; + "Estimate"@en , + "Estimate Measurement Information Content Entity"@en , + "Estimated Value"@en ; + "A Measurement Information Content Entity that is a measurement of an entity based on partial information about that entity or an appropriately similar entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001177.ttl b/src/cco-iris/ont00001177.ttl new file mode 100644 index 00000000..24b6281a --- /dev/null +++ b/src/cco-iris/ont00001177.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000119 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001177 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Roll Orientation"@en ; + "Roll"@en ; + "A Spatial Orientation of an Object relative to its Roll Axis."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001178.ttl b/src/cco-iris/ont00001178.ttl new file mode 100644 index 00000000..1627b0a6 --- /dev/null +++ b/src/cco-iris/ont00001178.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001178 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Railway Crossing"@en ; + "Level Crossing"@en ; + "A Land Transportation Artifact that is designed to enable Persons or Ground Vehicles to cross a Railway when traveling along a road or path that is perpendicular to and at the same elevation as the Railway at the point where they overlap."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001326 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001179.ttl b/src/cco-iris/ont00001179.ttl new file mode 100644 index 00000000..c7d08bdf --- /dev/null +++ b/src/cco-iris/ont00001179.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000893 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001179 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Digital Storage Device"@en ; + "An Information Medium Artifact that is designed to bear some Information Content Entity by means of recording that information in digital (binary) format."@en ; + "A computer's Hard Disk Drive" , + "A portable USB Drive" ; + "https://en.wikipedia.org/w/index.php?title=Data_storage&oldid=1060116427"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001180.ttl b/src/cco-iris/ont00001180.ttl new file mode 100644 index 00000000..c07074ac --- /dev/null +++ b/src/cco-iris/ont00001180.ttl @@ -0,0 +1,274 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001794 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001815 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001846 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001859 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001864 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001889 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001939 + rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] . + + +### https://www.commoncoreontologies.org/ont00001977 + rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] . + + +### https://www.commoncoreontologies.org/ont00001992 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000010 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000173 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000176 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000274 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000300 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000408 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000443 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000472 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000485 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000509 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000564 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000568 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000647 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000898 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Members of organizations are either Organizations themselves or individual Persons. Members can bear specific Organization Member Roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the Organization by the organization members."@en ; + rdfs:label "Organization"@en ; + "A Group of Agents which can be the bearer of roles, has members, and has a set of organization rules."@en ; + "http://purl.obolibrary.org/obo/OBI_0000245" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001203 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001239 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001302 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001335 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001181.ttl b/src/cco-iris/ont00001181.ttl new file mode 100644 index 00000000..92838458 --- /dev/null +++ b/src/cco-iris/ont00001181.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000287 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001181 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Triple Inertial Navigation System"@en ; + "Triple INS"@en ; + "An Inertial Navigation System that is designed to use three redundant computers to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references, in such a way that eliminates the need for a navigator."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001182.ttl b/src/cco-iris/ont00001182.ttl new file mode 100644 index 00000000..510f8911 --- /dev/null +++ b/src/cco-iris/ont00001182.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000145 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001182 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Phase Angle"@en ; + "Orbital Phase Angle"@en ; + "A Relational Quality that is the angle between the light incident onto an observed Object and the light reflected from the Object."@en ; + "https://en.wikipedia.org/wiki/Phase_angle_(astronomy)" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001183.ttl b/src/cco-iris/ont00001183.ttl new file mode 100644 index 00000000..8b156859 --- /dev/null +++ b/src/cco-iris/ont00001183.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000300 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001183 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Social Network"@en ; + "A Group of Agents that are connected in dyadic relations by similar personal or career interests, activities, backgrounds, or real-life connections."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001184.ttl b/src/cco-iris/ont00001184.ttl new file mode 100644 index 00000000..32bf0577 --- /dev/null +++ b/src/cco-iris/ont00001184.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000368 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001184 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spinning Motion"@en ; + "A Rotational Motion of an Object around an Axis of Rotation that passes through the Object's Center of Mass."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001185.ttl b/src/cco-iris/ont00001185.ttl new file mode 100644 index 00000000..3fa926fe --- /dev/null +++ b/src/cco-iris/ont00001185.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000713 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001185 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rocket"@en ; + "A Vehicle that is designed to travel through air or space and which obtains Thrust from a Rocket Engine."@en ; + "https://en.wikipedia.org/w/index.php?title=Rocket&oldid=1063307477"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001186.ttl b/src/cco-iris/ont00001186.ttl new file mode 100644 index 00000000..686a93d6 --- /dev/null +++ b/src/cco-iris/ont00001186.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000784 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001186 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Color Hue"@en ; + "An Optical Property that inheres in a bearer in virtue of its capacity to reflect a dominant wavelength of the visible light spectrum, which is typically divided up into 6 to 8 ranges."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001187.ttl b/src/cco-iris/ont00001187.ttl new file mode 100644 index 00000000..080e2df5 --- /dev/null +++ b/src/cco-iris/ont00001187.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000287 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001187 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Navigation System"@en ; + "A Material Artifact that is designed to enable an Agent or Artifact to determine the position or direction of some object, usually for the purpose of monitoring or controlling the movement of some Vehicle from one place to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Navigation&oldid=1064122463"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001188.ttl b/src/cco-iris/ont00001188.ttl new file mode 100644 index 00000000..43be614d --- /dev/null +++ b/src/cco-iris/ont00001188.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000715 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001188 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Denture"@en ; + "A Prosthesis that is designed to replace missing teeth."@en ; + "https://en.wikipedia.org/w/index.php?title=Dentures&oldid=1056527226"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001189.ttl b/src/cco-iris/ont00001189.ttl new file mode 100644 index 00000000..fa3a1743 --- /dev/null +++ b/src/cco-iris/ont00001189.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001189 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Blue"@en ; + "A Color that is between Cyan and Violet with a wavelength in the visible spectrum typically between 450 to 490 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001190.ttl b/src/cco-iris/ont00001190.ttl new file mode 100644 index 00000000..83f158cd --- /dev/null +++ b/src/cco-iris/ont00001190.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000960 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001115 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001171 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001190 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telephone Call"@en ; + "Act of Telephone Calling"@en ; + "An Act of Communciation by Media transmitted over a telephone network to two or more Persons."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001191.ttl b/src/cco-iris/ont00001191.ttl new file mode 100644 index 00000000..7e25c010 --- /dev/null +++ b/src/cco-iris/ont00001191.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000924 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000999 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00001191 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Operational Stasis"@en ; + "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact maintains its designed set of Artifact Functions (or at least maintains its primary functions)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001213 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001192.ttl b/src/cco-iris/ont00001192.ttl new file mode 100644 index 00000000..69ae539c --- /dev/null +++ b/src/cco-iris/ont00001192.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000092 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000499 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000714 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000724 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001192 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Antenna"@en ; + "A Bidirectional Transducer that is designed to convert electric power into radio waves, and radio waves into electric power."@en ; + "https://en.wikipedia.org/wiki/Antenna_(radio)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001300 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001193.ttl b/src/cco-iris/ont00001193.ttl new file mode 100644 index 00000000..9bd474ed --- /dev/null +++ b/src/cco-iris/ont00001193.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001193 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fatigability"@en ; + "A Realizable Entity that is realized when its bearer loses strength and tires quickly."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001194.ttl b/src/cco-iris/ont00001194.ttl new file mode 100644 index 00000000..573007d6 --- /dev/null +++ b/src/cco-iris/ont00001194.ttl @@ -0,0 +1,71 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000642 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001194 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the occurs_on property) that the Entity bears the Role."@en ; + rdfs:label "Gain of Role"@en ; + "A Gain of Realizable Entity in which some Independent Continuant becomes bearer of some Role."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001195.ttl b/src/cco-iris/ont00001195.ttl new file mode 100644 index 00000000..c3b68051 --- /dev/null +++ b/src/cco-iris/ont00001195.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000207 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001195 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Error Region"@en ; + "A One-Dimensional Geospatial Boundary that bounds some Geospatial Region according to probability estimations for locating some object within it."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001196.ttl b/src/cco-iris/ont00001196.ttl new file mode 100644 index 00000000..ce9c9724 --- /dev/null +++ b/src/cco-iris/ont00001196.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000908 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001196 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Many Acts of Manufacturing and Construction involve one or more Acts of Artifact Assembly, but Acts of Artifact Assembly can also occur in isolation from these activities."@en ; + rdfs:label "Act of Artifact Assembly"@en ; + "An Act of Artifact Processing wherein a new Artifact is created by fitting component parts together."@en ; + "putting together a piece of furniture purchased from Ikea" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001197.ttl b/src/cco-iris/ont00001197.ttl new file mode 100644 index 00000000..8c89ea47 --- /dev/null +++ b/src/cco-iris/ont00001197.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000224 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000400 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000574 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001037 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001197 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Anthropogenic Feature"@en ; + "An Environmental Feature that is related to or is the result of the influence of human beings on the environment."@en ; + "http://www.merriam-webster.com/dictionary/anthropogenic" ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001198.ttl b/src/cco-iris/ont00001198.ttl new file mode 100644 index 00000000..de386454 --- /dev/null +++ b/src/cco-iris/ont00001198.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000796 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001198 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "In American-English, the term 'Railcar' is often used in a broader sense that is interchangeable with 'Railroad Car'."@en ; + rdfs:label "Railcar"@en ; + "A Rail Transport Vehicle that consists of a single self-propelled Vehicle that is not a Train, is designed to transport passengers, and which may also be designed to connect to other Railcars to form a Train."@en ; + "https://en.wikipedia.org/w/index.php?title=Railcar&oldid=1063519348"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001199.ttl b/src/cco-iris/ont00001199.ttl new file mode 100644 index 00000000..c7339f3c --- /dev/null +++ b/src/cco-iris/ont00001199.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001199 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Protruding"@en ; + "A Shape Quality inhering in a part of an object in virtue of the part extending out above or beyond the surface of the object."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001200.ttl b/src/cco-iris/ont00001200.ttl new file mode 100644 index 00000000..768ce51b --- /dev/null +++ b/src/cco-iris/ont00001200.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001200 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Structural Support Artifact Function"@en ; + "An Artifact Function that is realized by an Artifact providing physical support to another object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001201.ttl b/src/cco-iris/ont00001201.ttl new file mode 100644 index 00000000..fcd44bbf --- /dev/null +++ b/src/cco-iris/ont00001201.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001201 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Trail"@en ; + "A Land Transportation Artifact that is designed to enable transport through rough country, such as a forest or moor."@en ; + "https://en.wikipedia.org/w/index.php?title=Trail&oldid=1056047142"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001326 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001202.ttl b/src/cco-iris/ont00001202.ttl new file mode 100644 index 00000000..6194879d --- /dev/null +++ b/src/cco-iris/ont00001202.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001065 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001202 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Size Quality"@en ; + "A Quality that inheres in a bearer in virtue of the bearer's extension in one or more dimensions."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001294 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001367 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001203.ttl b/src/cco-iris/ont00001203.ttl new file mode 100644 index 00000000..35af04dd --- /dev/null +++ b/src/cco-iris/ont00001203.ttl @@ -0,0 +1,114 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001859 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001864 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000472 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001114 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001203 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Delimiting Domain"@en ; + "A Geospatial Region that delimits the authority of an Organization to exercise its control within the bounded area."@en ; + "Delimiting Domain"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001335 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001204.ttl b/src/cco-iris/ont00001204.ttl new file mode 100644 index 00000000..a5f2c773 --- /dev/null +++ b/src/cco-iris/ont00001204.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001204 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Night"@en ; + "A Temporal Interval that consists of the temporal regions between when people typically retire to sleep (approximately 9:00pm) and when the sun dawns (approximately 6:00am)."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001205.ttl b/src/cco-iris/ont00001205.ttl new file mode 100644 index 00000000..388fe13f --- /dev/null +++ b/src/cco-iris/ont00001205.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000398 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001205 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Priority Scale"@en ; + "A Reference System that is designed to be used to rank or identify the importance of entities of the specified type."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001206.ttl b/src/cco-iris/ont00001206.ttl new file mode 100644 index 00000000..f6581ddd --- /dev/null +++ b/src/cco-iris/ont00001206.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000832 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001206 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "This is a defined class."@en ; + rdfs:label "Multi-Year Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Years and spans at least one Year."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001207.ttl b/src/cco-iris/ont00001207.ttl new file mode 100644 index 00000000..929a9b69 --- /dev/null +++ b/src/cco-iris/ont00001207.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000097 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000136 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000434 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001207 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Lens"@en ; + "Lens"@en ; + "An Optical Instrument that is designed to focus or disperse a beam of light entering the lens by means of refraction."@en ; + "https://en.wikipedia.org/wiki/Lens_(optics)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001208.ttl b/src/cco-iris/ont00001208.ttl new file mode 100644 index 00000000..d26de45e --- /dev/null +++ b/src/cco-iris/ont00001208.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000150 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001208 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The corresponding Wavelength range is 100–10 m"@en ; + rdfs:label "High Frequency"@en ; + "ITU Band Number 7"@en ; + "A Radio Frequency that is between 3 and 30 MHz."@en ; + "HF" ; + "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001209.ttl b/src/cco-iris/ont00001209.ttl new file mode 100644 index 00000000..12980089 --- /dev/null +++ b/src/cco-iris/ont00001209.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000326 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001209 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "UPC-E Barcode"@en ; + "A UPC Barcode that consists of 6 numerical digits."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001210.ttl b/src/cco-iris/ont00001210.ttl new file mode 100644 index 00000000..fdc11598 --- /dev/null +++ b/src/cco-iris/ont00001210.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001210 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Retail Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of selling goods or merchandise in small or individual lots for direct consumption by persons or organizations."@en ; + "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001211.ttl b/src/cco-iris/ont00001211.ttl new file mode 100644 index 00000000..29df0c8a --- /dev/null +++ b/src/cco-iris/ont00001211.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001211 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lifting Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Artifact is used to lift some object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001212.ttl b/src/cco-iris/ont00001212.ttl new file mode 100644 index 00000000..9ae2cb83 --- /dev/null +++ b/src/cco-iris/ont00001212.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001033 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001212 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Female Sex"@en ; + "A Biological Sex inhering in an individual that only produces gametes that can be fertilized by male gametes."@en ; + "http://purl.org/obo/owl/PATO#PATO_0000383" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001213.ttl b/src/cco-iris/ont00001213.ttl new file mode 100644 index 00000000..58747cde --- /dev/null +++ b/src/cco-iris/ont00001213.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000106 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000246 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000847 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000936 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000999 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001191 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001213 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Artifact Operationality"@en ; + "A Stasis of Realizable Entity that holds during a Temporal Interval when an Artifact's designed set of Artifact Functions (or at least its primary functions) or the realizations of those functions remain unchanged."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001214.ttl b/src/cco-iris/ont00001214.ttl new file mode 100644 index 00000000..9a8b94f4 --- /dev/null +++ b/src/cco-iris/ont00001214.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000131 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000611 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001048 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001214 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Specifically Dependent Continuant"@en ; + "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Specifically Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001215.ttl b/src/cco-iris/ont00001215.ttl new file mode 100644 index 00000000..b0b13a4d --- /dev/null +++ b/src/cco-iris/ont00001215.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000455 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001215 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Funeral"@en ; + "Act of Funeral Ceremony"@en ; + "An Act of Ceremony in which the Life of a Person who has died is celebrated, sanctified, or remembered."@en ; + "https://en.wikipedia.org/w/index.php?title=Funeral&oldid=1060270978"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001216.ttl b/src/cco-iris/ont00001216.ttl new file mode 100644 index 00000000..5053018c --- /dev/null +++ b/src/cco-iris/ont00001216.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000136 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001216 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Periscope"@en ; + "An Optical Instrument that is designed to enable observation of an object that is located over, around, or through another object, obstacle, or condition that prevents direct line-of-sight observation from the observer's current position."@en ; + "https://en.wikipedia.org/w/index.php?title=Periscope&oldid=1030400442"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001217.ttl b/src/cco-iris/ont00001217.ttl new file mode 100644 index 00000000..f4390a20 --- /dev/null +++ b/src/cco-iris/ont00001217.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000848 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001217 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Medium Machine Gun"@en ; + "A Mounted Gun that is designed to fire full-power rifle Cartridges (less than .50 caliber or 12.7mm) in quick succession from an ammunition belt, and which typically weighs 22-30 lbs."@en ; + "https://en.wikipedia.org/w/index.php?title=Medium_machine_gun&oldid=1063571269"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001218.ttl b/src/cco-iris/ont00001218.ttl new file mode 100644 index 00000000..72cc2a14 --- /dev/null +++ b/src/cco-iris/ont00001218.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000317 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001218 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Signal Processing Artifact Function"@en ; + "An Artifact Function that is realized in the process of transferring or processing information contained in signals."@en ; + "https://en.wikipedia.org/w/index.php?title=Signal_processing&oldid=1062720685"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001219.ttl b/src/cco-iris/ont00001219.ttl new file mode 100644 index 00000000..c32a5bbf --- /dev/null +++ b/src/cco-iris/ont00001219.ttl @@ -0,0 +1,62 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000763 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001219 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:comment "Delta-v is not equivalent to and should not be confused with Acceleration, which is the rate of change of Velocity."@en ; + rdfs:label "Delta-v"@en ; + "Change in Velocity"@en , + "DeltaV"@en ; + "A Process Profile that is the total change in Velocity of an object's Motion."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001220.ttl b/src/cco-iris/ont00001220.ttl new file mode 100644 index 00000000..aec6f754 --- /dev/null +++ b/src/cco-iris/ont00001220.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001220 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Opaque"@en ; + "An Opacity that inheres in a bearer in virtue of that bearer's incapacity to transmit electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs all electromagnetic radiation of that frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001384 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001221.ttl b/src/cco-iris/ont00001221.ttl new file mode 100644 index 00000000..6c9fe3d8 --- /dev/null +++ b/src/cco-iris/ont00001221.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000210 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000364 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000777 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001221 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Physically Powered Engine"@en ; + "Physical Engine"@en ; + "An Engine that is designed to convert potential or kinetic energy into mechanical energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001222.ttl b/src/cco-iris/ont00001222.ttl new file mode 100644 index 00000000..0ab6b8cc --- /dev/null +++ b/src/cco-iris/ont00001222.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001049 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001222 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Solar Panel System"@en ; + "Photovoltaic System"@en , + "Solar Array"@en ; + "An Electrical Power Source that consists in part of one or more Solar Panels, a power inverter, electrical wiring between the components, a mounting and support structure, and may also include a battery and/or a solar tracking system and is the bearer of functions realized in processes of deriving, transferring, and storing electrical energy derived from light energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Photovoltaic_system&oldid=1063366598"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001223.ttl b/src/cco-iris/ont00001223.ttl new file mode 100644 index 00000000..0651a282 --- /dev/null +++ b/src/cco-iris/ont00001223.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001145 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001223 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Dish Receiver"@en ; + "A Radio Receiver that uses a Parabolic (or Dish) Antenna to intercept radio signals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001224.ttl b/src/cco-iris/ont00001224.ttl new file mode 100644 index 00000000..84cc43f8 --- /dev/null +++ b/src/cco-iris/ont00001224.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001974 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001224 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Process Requirement"@en ; + "Duty"@en , + "Obligation"@en ; + "A Process Regulation that requires some Process."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001225.ttl b/src/cco-iris/ont00001225.ttl new file mode 100644 index 00000000..7e75e354 --- /dev/null +++ b/src/cco-iris/ont00001225.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001225 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Yellow"@en ; + "A Color that is between Orange and Green with a wavelength in the visible spectrum typically between 560 to 590 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001226.ttl b/src/cco-iris/ont00001226.ttl new file mode 100644 index 00000000..e418cc7c --- /dev/null +++ b/src/cco-iris/ont00001226.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000308 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000433 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001226 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Employment"@en ; + "An Act of Association wherein an Organization assigns a set of activities to some Person to be performed in exchange for financial compensation."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001227.ttl b/src/cco-iris/ont00001227.ttl new file mode 100644 index 00000000..5d1f3e8b --- /dev/null +++ b/src/cco-iris/ont00001227.ttl @@ -0,0 +1,78 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001857 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000675 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000752 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001028 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001227 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Longitudinal Wave Profile"@en ; + "Compression Wave"@en , + "Longitudinal Wave"@en ; + "A Wave Process Profile in which the displacement of participating particles is parallel to the direction of the Wave Process' propogation such that the particles alternate between participating in processes of compression and rarefaction as they participate in individual Wave Processes."@en ; + "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001228.ttl b/src/cco-iris/ont00001228.ttl new file mode 100644 index 00000000..68fccb98 --- /dev/null +++ b/src/cco-iris/ont00001228.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001228 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Journal Article"@en ; + "An Information Bearing Artifact that is designed to bear a specific brief composition on a specific topic as part of a Journal Issue."@en ; + "https://en.wikipedia.org/w/index.php?title=Academic_journal&oldid=1059723283"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001229.ttl b/src/cco-iris/ont00001229.ttl new file mode 100644 index 00000000..4cbba454 --- /dev/null +++ b/src/cco-iris/ont00001229.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001050 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001229 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Alkaline Electric Battery"@en ; + "A Primary Cell Electric Battery that has a Zinc anode and Manganese (IV) oxide cathode."@en ; + "https://en.wikipedia.org/w/index.php?title=Alkaline_battery&oldid=1055652562"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001230.ttl b/src/cco-iris/ont00001230.ttl new file mode 100644 index 00000000..034e9512 --- /dev/null +++ b/src/cco-iris/ont00001230.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000499 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001230 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rhombic Antenna"@en ; + "A Wire Antenna that consists of one to three parallel wires suspended above the ground by poles or towers at each vertex in a rhombic shape with each of the four sides being the same length (typically at least one wavelength or longer)."@en ; + "https://en.wikipedia.org/w/index.php?title=Rhombic_antenna&oldid=1057114456"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001231.ttl b/src/cco-iris/ont00001231.ttl new file mode 100644 index 00000000..652459a9 --- /dev/null +++ b/src/cco-iris/ont00001231.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000530 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001231 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Brilliance Frequency"@en ; + "A Sonic Frequency that is between 6 and 20 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001232.ttl b/src/cco-iris/ont00001232.ttl new file mode 100644 index 00000000..bc08beaa --- /dev/null +++ b/src/cco-iris/ont00001232.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001232 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "In all cases, to possess something, an agent must have an intention to possess it."@en ; + rdfs:label "Act of Possession"@en ; + "A Planned Act in which an agent intentionally exercises control towards a thing."@en ; + "http://en.wikipedia.org/wiki/Possession_(law)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001336 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001233.ttl b/src/cco-iris/ont00001233.ttl new file mode 100644 index 00000000..0032a533 --- /dev/null +++ b/src/cco-iris/ont00001233.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001153 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001233 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Crushing Artifact Function"@en ; + "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of significant pressure."@en ; + "http://www.dictionary.com/browse/crushing" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001234.ttl b/src/cco-iris/ont00001234.ttl new file mode 100644 index 00000000..5f299133 --- /dev/null +++ b/src/cco-iris/ont00001234.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000791 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001234 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Neutralization Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in a process in which an acid and a base react quantitatively with each other."@en ; + "https://en.wikipedia.org/wiki/Neutralization_(chemistry)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001235.ttl b/src/cco-iris/ont00001235.ttl new file mode 100644 index 00000000..401aee59 --- /dev/null +++ b/src/cco-iris/ont00001235.ttl @@ -0,0 +1,173 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000829 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Time Zone Identifier"@en ; + "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Zulu time, which has no offset from Coordinated Universal Time."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001403 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001408 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001421 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001424 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001430 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001431 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001446 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001454 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001457 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001480 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001488 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001500 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001516 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001527 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001580 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001591 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001603 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001607 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001624 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001628 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001693 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001700 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001712 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001723 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001727 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001732 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001236.ttl b/src/cco-iris/ont00001236.ttl new file mode 100644 index 00000000..ba5fdf75 --- /dev/null +++ b/src/cco-iris/ont00001236.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001803 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000920 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001147 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001236 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Act of Suicide"@en ; + "Suicide"@en ; + "An Act of Violence in which some Agent intentionally and voluntarily causes their own death."@en ; + "http://www.merriam-webster.com/dictionary/suicide" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001237.ttl b/src/cco-iris/ont00001237.ttl new file mode 100644 index 00000000..8fa50c9a --- /dev/null +++ b/src/cco-iris/ont00001237.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000007 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001237 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Birth"@en ; + "A Natural Process of bringing forth offspring."@en ; + "https://en.wikipedia.org/w/index.php?title=Birth&oldid=1063718655"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001238.ttl b/src/cco-iris/ont00001238.ttl new file mode 100644 index 00000000..831031e3 --- /dev/null +++ b/src/cco-iris/ont00001238.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000605 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001238 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Initialism"@en ; + "An Abbreviated Name that consists of the initial letters of some words (or syllables) in a Designative Name, and in which each letter is pronounced separately."@en ; + "USA, CPU, BBC" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001239.ttl b/src/cco-iris/ont00001239.ttl new file mode 100644 index 00000000..c22b376c --- /dev/null +++ b/src/cco-iris/ont00001239.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000300 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001239 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + rdfs:label "Group of Organizations"@en ; + "A Group of Agents that has only Organizations as parts."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001240.ttl b/src/cco-iris/ont00001240.ttl new file mode 100644 index 00000000..a8db6a87 --- /dev/null +++ b/src/cco-iris/ont00001240.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001148 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001240 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Communication Artifact Function"@en ; + "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of radio waves."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001241.ttl b/src/cco-iris/ont00001241.ttl new file mode 100644 index 00000000..4e5e7f63 --- /dev/null +++ b/src/cco-iris/ont00001241.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001241 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sensor Artifact Function"@en ; + "An Artifact Function that is realized in processes wherein its bearer is used to produce an output signal which reliably corresponds to changes in the artifact's environment."@en ; + "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001273 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001242.ttl b/src/cco-iris/ont00001242.ttl new file mode 100644 index 00000000..d87be35f --- /dev/null +++ b/src/cco-iris/ont00001242.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000736 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001242 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Actuator"@en ; + "A Transducer that is designed to convert some control signal into mechanical motion."@en ; + "https://en.wikipedia.org/w/index.php?title=Actuator&oldid=1064000375"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001243.ttl b/src/cco-iris/ont00001243.ttl new file mode 100644 index 00000000..1f96615d --- /dev/null +++ b/src/cco-iris/ont00001243.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001243 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Document Field"@en ; + "An Information Bearing Entity that is a part of some document into which bearers of prescribed information can be written or selected."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001244.ttl b/src/cco-iris/ont00001244.ttl new file mode 100644 index 00000000..b1252189 --- /dev/null +++ b/src/cco-iris/ont00001244.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000588 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001244 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Issuing Mass Media Article"@en ; + "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation a non-fictional essay, especially one included with others in a newspaper, magazine, or journal."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001245.ttl b/src/cco-iris/ont00001245.ttl new file mode 100644 index 00000000..3e4b0083 --- /dev/null +++ b/src/cco-iris/ont00001245.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000241 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001245 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "PDF417 Code"@en ; + "A Two-Dimensional Barcode that is used in applications that require the storage of huge amounts of data."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001246.ttl b/src/cco-iris/ont00001246.ttl new file mode 100644 index 00000000..04acb9f6 --- /dev/null +++ b/src/cco-iris/ont00001246.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000847 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001246 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Under Active Control"@en ; + "An Active Stasis during which an Artifact participates in an Act of Artifact Employment."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001247.ttl b/src/cco-iris/ont00001247.ttl new file mode 100644 index 00000000..2a7f7bea --- /dev/null +++ b/src/cco-iris/ont00001247.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000918 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001247 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Endpoint"@en ; + "A Telecommunication Network Node that connects a Telecommunication Terminal to a Telecommunication Network."@en ; + "A Telecommunication Terminal is an end user device such as a Telephone, fax machine, or Computer."@en ; + "https://en.wikipedia.org/w/index.php?title=Communication_endpoint&oldid=1020569501"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001248.ttl b/src/cco-iris/ont00001248.ttl new file mode 100644 index 00000000..efdea699 --- /dev/null +++ b/src/cco-iris/ont00001248.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000709 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000715 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000943 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001248 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Artificial Eye"@en ; + "A Prosthesis that is designed to replace a missing eye."@en ; + "https://en.wikipedia.org/w/index.php?title=Artificial_eye&oldid=1046672400"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001249.ttl b/src/cco-iris/ont00001249.ttl new file mode 100644 index 00000000..a74b1500 --- /dev/null +++ b/src/cco-iris/ont00001249.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000453 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001249 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cabin Pressurization Control System"@en ; + "An Environment Control System that is designed to control the process in which conditioned air is pumped into the Cabin of some Aircraft or Spacecraft in order to create a safe and comfortable environment for passengers and crew flying at high altitudes."@en ; + "https://en.wikipedia.org/w/index.php?title=Cabin_pressurization&oldid=1062243955"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001250.ttl b/src/cco-iris/ont00001250.ttl new file mode 100644 index 00000000..bef8e2c2 --- /dev/null +++ b/src/cco-iris/ont00001250.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000236 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001250 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Interior Lighting System"@en ; + "A Lighting System that is designed to emit light within the interior of some area."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001251.ttl b/src/cco-iris/ont00001251.ttl new file mode 100644 index 00000000..d84ea99b --- /dev/null +++ b/src/cco-iris/ont00001251.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000320 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001094 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001251 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Intelligence Gathering"@en ; + "A Planned Act of producing and/or gathering information by a government or other Organization to guide decisions and actions by answering questions or obtaining advance warning of events and movements deemed to be important or otherwise relevant."@en ; + "http://en.wikipedia.org/wiki/Intelligence_(information_gathering)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001252.ttl b/src/cco-iris/ont00001252.ttl new file mode 100644 index 00000000..eb646ba8 --- /dev/null +++ b/src/cco-iris/ont00001252.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000448 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001252 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propulsion Artifact Function"@en ; + "A Motion Artifact Function that is realized in a process in which the bearer of the function creates force leading to an entity's movement."@en ; + "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001253.ttl b/src/cco-iris/ont00001253.ttl new file mode 100644 index 00000000..896989f2 --- /dev/null +++ b/src/cco-iris/ont00001253.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001253 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel Artifact Function"@en ; + "An Artifact Function that is realized in processes in which a Portion of Fuel is reacted with other substances in order to release chemical or nuclear energy to be used for heat or for work."@en ; + "https://en.wikipedia.org/w/index.php?title=Fuel&oldid=1063590518"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001254.ttl b/src/cco-iris/ont00001254.ttl new file mode 100644 index 00000000..3d141e8f --- /dev/null +++ b/src/cco-iris/ont00001254.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000156 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001254 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Revolver"@en ; + "A Hand Gun having a number of firing chambers in a revolving cylinder, where each chamber in the cylinder can be loaded with a single Cartridge."@en ; + "https://en.wikipedia.org/w/index.php?title=Revolver&oldid=1060461644"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001255.ttl b/src/cco-iris/ont00001255.ttl new file mode 100644 index 00000000..3417305f --- /dev/null +++ b/src/cco-iris/ont00001255.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000828 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001255 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Insecticide Artifact Function"@en ; + "A Pesticide Artifact Function that is realized in a process that causes harm to, or the death of, an insect."@en ; + "https://en.wikipedia.org/w/index.php?title=Insecticide&oldid=1063322558"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001256.ttl b/src/cco-iris/ont00001256.ttl new file mode 100644 index 00000000..9fc3481b --- /dev/null +++ b/src/cco-iris/ont00001256.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001256 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance ('Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."@en ; + rdfs:label "Reliability Measurement Information Content Entity"@en ; + "Accuracy of Process"@en , + "Reliability Measurement"@en ; + "A Measurement Information Content Entity that is a measurement of the extent to which an entity can consistently produce an outcome."@en ; + "Reliability concerns both a measure of past performance and the expectation that future performance will conform to the range of past performances."@en ; + "https://en.wikipedia.org/wiki/Reliability_(statistics)" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001257.ttl b/src/cco-iris/ont00001257.ttl new file mode 100644 index 00000000..b0c44c69 --- /dev/null +++ b/src/cco-iris/ont00001257.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001257 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Storage Depot"@en ; + "A Storage Facility that is designed to store nuclear material."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001258.ttl b/src/cco-iris/ont00001258.ttl new file mode 100644 index 00000000..1abec9d9 --- /dev/null +++ b/src/cco-iris/ont00001258.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000226 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000670 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001258 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Port"@en ; + "A Transportation Facility that is designed to contain harbors for docking Watercraft and for transfering people or cargo to and from land."@en ; + "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001259.ttl b/src/cco-iris/ont00001259.ttl new file mode 100644 index 00000000..41d967a0 --- /dev/null +++ b/src/cco-iris/ont00001259.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000024 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001259 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Atmosphere"@en ; + "A fiat object part of the layer of gas or layers of gases that envelop a natural satellite."@en ; + "https://en.wikipedia.org/w/index.php?title=Atmosphere&oldid=1135486662"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001260.ttl b/src/cco-iris/ont00001260.ttl new file mode 100644 index 00000000..104c0544 --- /dev/null +++ b/src/cco-iris/ont00001260.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001260 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Code 39 Barcode"@en ; + "A One-Dimensional Barcode that consists of 39 characters that are numbers 0-9, capital letters A-Z, or the symbols -.$/+% and space and is used primarily in automotive and defense industries."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001261.ttl b/src/cco-iris/ont00001261.ttl new file mode 100644 index 00000000..67828bb4 --- /dev/null +++ b/src/cco-iris/ont00001261.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000379 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001261 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Identifying"@en ; + "An Act of Representative Communication performed by asserting who or what a particular person or thing is."@en ; + "http://www.dictionary.com/browse/identify" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001262.ttl b/src/cco-iris/ont00001262.ttl new file mode 100644 index 00000000..499eac7a --- /dev/null +++ b/src/cco-iris/ont00001262.ttl @@ -0,0 +1,259 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001798 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001889 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001939 + rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] . + + +### https://www.commoncoreontologies.org/ont00001943 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001977 + rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] . + + +### https://www.commoncoreontologies.org/ont00001995 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000089 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000175 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000279 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000388 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000486 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000562 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000587 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000645 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000647 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000666 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000697 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000860 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000914 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000917 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000987 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Person"@en ; + "Human"@en ; + "An Animal that is a member of the species Homo sapiens."@en ; + "https://en.wikipedia.org/w/index.php?title=Human&oldid=1063145185"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001263.ttl b/src/cco-iris/ont00001263.ttl new file mode 100644 index 00000000..0088442d --- /dev/null +++ b/src/cco-iris/ont00001263.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000588 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001263 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Issuing Mass Media Documentary"@en ; + "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation information that provides a factual record or report."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001264.ttl b/src/cco-iris/ont00001264.ttl new file mode 100644 index 00000000..e4d63d7a --- /dev/null +++ b/src/cco-iris/ont00001264.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000258 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001264 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Code 128 Barcode"@en ; + "A One-Dimensional Barcode that consists of up to 128 ASCII characters and is used primarily in supply chains."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001265.ttl b/src/cco-iris/ont00001265.ttl new file mode 100644 index 00000000..b6fde6a2 --- /dev/null +++ b/src/cco-iris/ont00001265.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001036 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001265 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Public Address System"@en ; + "PA System"@en ; + "A Communication System that is designed to allow a Person to speak to a large audience."@en ; + "https://en.wikipedia.org/w/index.php?title=Public_address_system&oldid=1059177344"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001266.ttl b/src/cco-iris/ont00001266.ttl new file mode 100644 index 00000000..24fccc94 --- /dev/null +++ b/src/cco-iris/ont00001266.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001075 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001266 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Vocational Training Instruction"@en ; + "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider by imparting skills required for a specific occupation in industry, agriculture or trade to an Agent either directly or indirectly through some communication medium."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001267.ttl b/src/cco-iris/ont00001267.ttl new file mode 100644 index 00000000..6b08b2fb --- /dev/null +++ b/src/cco-iris/ont00001267.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000971 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001267 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Propaganda"@en ; + "An Act of Deceptive Communication Propaganda intended to influence the attitude of a mass audience toward some cause or position by presenting facts selectively (thus possibly lying by omission) or by using loaded messages to produce an emotional rather than rational response to the information presented."@en ; + "https://en.wikipedia.org/w/index.php?title=Propaganda&oldid=1062472484"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001268.ttl b/src/cco-iris/ont00001268.ttl new file mode 100644 index 00000000..1f4aff45 --- /dev/null +++ b/src/cco-iris/ont00001268.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000966 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001268 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "ISBN Barcode"@en ; + "An EAN Barcode that is used to designate books."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001269.ttl b/src/cco-iris/ont00001269.ttl new file mode 100644 index 00000000..399773dc --- /dev/null +++ b/src/cco-iris/ont00001269.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000133 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001269 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Warning"@en ; + "An Act of Directive Communication performed by indicating a possible or impending danger, problem, or other unpleasant situation."@en ; + "http://www.merriam-webster.com/dictionary/warning" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001270.ttl b/src/cco-iris/ont00001270.ttl new file mode 100644 index 00000000..dc964715 --- /dev/null +++ b/src/cco-iris/ont00001270.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000268 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001270 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Howitzer"@en ; + "A Cannon that is designed to have a relatively short barrel and to use relatively small propellant charges to propel projectiles in relatively high trajectories with a steep angle of descent."@en ; + "https://en.wikipedia.org/w/index.php?title=Howitzer&oldid=1059576383"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001271.ttl b/src/cco-iris/ont00001271.ttl new file mode 100644 index 00000000..30bd5f5f --- /dev/null +++ b/src/cco-iris/ont00001271.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001169 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001271 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wired Communication Relay Artifact Function"@en ; + "A Communication Relay Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information by means of wires from one Artifact to another for the purpose of communiction."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001272.ttl b/src/cco-iris/ont00001272.ttl new file mode 100644 index 00000000..ab29f15e --- /dev/null +++ b/src/cco-iris/ont00001272.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000191 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000521 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001272 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Murder"@en ; + "An Act of Homicide with malice aforethought."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001273.ttl b/src/cco-iris/ont00001273.ttl new file mode 100644 index 00000000..9c8c6edb --- /dev/null +++ b/src/cco-iris/ont00001273.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000569 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001241 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001273 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Sensor Modality Function"@en ; + "A Sensor Artifact Function that inheres in some Sensor in virtue of the type of energy the Sensor is capable of converting into an output signal."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001274.ttl b/src/cco-iris/ont00001274.ttl new file mode 100644 index 00000000..048a696c --- /dev/null +++ b/src/cco-iris/ont00001274.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000008 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001274 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrasonic Frequency"@en ; + "A Sound Frequency that is below 20 Hz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001275.ttl b/src/cco-iris/ont00001275.ttl new file mode 100644 index 00000000..0d7e4ced --- /dev/null +++ b/src/cco-iris/ont00001275.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001275 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nominal Speed Artifact Function"@en ; + "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains a speed that does not exceed some specified tolerance of that Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001353 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001276.ttl b/src/cco-iris/ont00001276.ttl new file mode 100644 index 00000000..e9d2d681 --- /dev/null +++ b/src/cco-iris/ont00001276.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000426 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001276 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Carrier Air Wing"@en ; + "A Military Force that is trained and equipped to conduct air operations while embarked on an aircraft carrier."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001277.ttl b/src/cco-iris/ont00001277.ttl new file mode 100644 index 00000000..6fa1037c --- /dev/null +++ b/src/cco-iris/ont00001277.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001277 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Red"@en ; + "A Color that is above Orange with a wavelength in the visible spectrum typically between 635 to 700 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001278.ttl b/src/cco-iris/ont00001278.ttl new file mode 100644 index 00000000..4c9ed275 --- /dev/null +++ b/src/cco-iris/ont00001278.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000025 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000093 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000233 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000537 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001097 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001278 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stock"@en ; + "A Financial Instrument that entitles holders to an ownership interest (equity) in the specified Incorporated Organization."@en ; + "https://en.wikipedia.org/w/index.php?title=Stock&oldid=1064040249"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001279.ttl b/src/cco-iris/ont00001279.ttl new file mode 100644 index 00000000..1f0e122b --- /dev/null +++ b/src/cco-iris/ont00001279.ttl @@ -0,0 +1,51 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001133 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001279 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vibration Motion"@en ; + "Mechanical Oscillation"@en , + "Oscillation Motion"@en , + "Vibration"@en ; + "A Motion wherein some participant repetitively deviates from a central location to two surrounding locations."@en ; + "https://physicsabout.com/motion/"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001280.ttl b/src/cco-iris/ont00001280.ttl new file mode 100644 index 00000000..fba81cb1 --- /dev/null +++ b/src/cco-iris/ont00001280.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001280 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Flat"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border without a significant deviation."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001281.ttl b/src/cco-iris/ont00001281.ttl new file mode 100644 index 00000000..8b7e0db1 --- /dev/null +++ b/src/cco-iris/ont00001281.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000344 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000791 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001281 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Emulsifier Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in a process in which two or more liquids that are normally immiscible are mixed."@en ; + "https://en.wikipedia.org/w/index.php?title=Emulsion&oldid=1056901580"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001282.ttl b/src/cco-iris/ont00001282.ttl new file mode 100644 index 00000000..77f39e88 --- /dev/null +++ b/src/cco-iris/ont00001282.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000598 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001282 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydraulic Valve"@en ; + "A Valve that is designed to regulate, direct, or control the flow of a liquid by opening, closing, or partially obstructing various passageways."@en ; + "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001283.ttl b/src/cco-iris/ont00001283.ttl new file mode 100644 index 00000000..e7441eab --- /dev/null +++ b/src/cco-iris/ont00001283.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000782 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001089 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001283 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Refinery"@en ; + "A Factory that is designed for refining raw materials into products of value."@en ; + "https://en.wikipedia.org/w/index.php?title=Refinery&oldid=1027092124"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001362 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001284.ttl b/src/cco-iris/ont00001284.ttl new file mode 100644 index 00000000..e0124a85 --- /dev/null +++ b/src/cco-iris/ont00001284.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000914 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001284 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Crew"@en ; + "A Group of Persons that bear Roles realized by the operation of the specified Vehicle."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001285.ttl b/src/cco-iris/ont00001285.ttl new file mode 100644 index 00000000..d5e5cacf --- /dev/null +++ b/src/cco-iris/ont00001285.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000368 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001285 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Revolving Motion"@en ; + "A Rotational Motion of an Object around an Axis of Rotation that is located externally to the Site occupied by the Object."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001286.ttl b/src/cco-iris/ont00001286.ttl new file mode 100644 index 00000000..280892b8 --- /dev/null +++ b/src/cco-iris/ont00001286.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000016 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000414 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000580 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000585 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000621 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000752 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001286 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Waveform"@en ; + "A Wave Process Profile that is the shape of the Wave Cycles of the Wave Process when depicted in a visual graph."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001287.ttl b/src/cco-iris/ont00001287.ttl new file mode 100644 index 00000000..3bca87ff --- /dev/null +++ b/src/cco-iris/ont00001287.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001287 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Maintenance Facility"@en ; + "A Facility that is designed to be used to perform actions to maintain or improve the state of some property or equipment."@en ; + "http://www.dictionary.com/browse/maintain" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001288.ttl b/src/cco-iris/ont00001288.ttl new file mode 100644 index 00000000..0fb8ac12 --- /dev/null +++ b/src/cco-iris/ont00001288.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001150 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001288 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Round Shot"@en ; + "A Portion of Ammunition that is designed to be a solid projectile without explosive charge and to be fired from a cannon."@en ; + "https://en.wikipedia.org/w/index.php?title=Round_shot&oldid=1062790260"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001289.ttl b/src/cco-iris/ont00001289.ttl new file mode 100644 index 00000000..7697e624 --- /dev/null +++ b/src/cco-iris/ont00001289.ttl @@ -0,0 +1,61 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000135 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000360 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001289 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Damaged Stasis"@en ; + "Compromised"@en , + "Damaged"@en , + "Injured"@en ; + "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to a previous action or event such that the Independent Continuant is now of lesser value, usefulness, or functionality."@en ; + "This class can be used to instantiate instances that might otherwise be treated by defined classes such as Damaged Vehicle or Wounded Person. The Independent Continuant and Quality or Realizable Entity are participants of the stasis which can in turn be related to the temporal interval via the occurs on property. "@en ; + "http://www.thefreedictionary.com/damaged" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001290.ttl b/src/cco-iris/ont00001290.ttl new file mode 100644 index 00000000..065f5f5a --- /dev/null +++ b/src/cco-iris/ont00001290.ttl @@ -0,0 +1,108 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Length"@en ; + "A Measurement Unit that is used as a standard for measurement of one-dimensional regions or Geospatial Regions."@en ; + "foot, meter, kilometer, mile" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001397 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001433 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001478 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001494 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001543 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001598 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001629 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001637 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001642 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001677 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001683 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001714 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001291.ttl b/src/cco-iris/ont00001291.ttl new file mode 100644 index 00000000..deb34f55 --- /dev/null +++ b/src/cco-iris/ont00001291.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000628 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001291 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiation Absorptivity"@en ; + "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to absorb electromagnetic radiation of a given frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001292.ttl b/src/cco-iris/ont00001292.ttl new file mode 100644 index 00000000..0c20ba2e --- /dev/null +++ b/src/cco-iris/ont00001292.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000053 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001292 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bus"@en ; + "A Ground Motor Vehicle that is designed to transport a large number of people and to travel on six or more tired wheels."@en ; + "https://en.wikipedia.org/w/index.php?title=Bus&oldid=1055341487"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001293.ttl b/src/cco-iris/ont00001293.ttl new file mode 100644 index 00000000..e8a6baff --- /dev/null +++ b/src/cco-iris/ont00001293.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000446 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001293 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Perimeter"@en ; + "A One Dimensional Extent that inheres in a bearer in virtue of the extent of a boundary which encloses the bearer."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001367 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001294.ttl b/src/cco-iris/ont00001294.ttl new file mode 100644 index 00000000..f1b8d72a --- /dev/null +++ b/src/cco-iris/ont00001294.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001294 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Three Dimensional Extent"@en ; + "Volume"@en ; + "A Size Quality that inheres in a bearer in virtue of the bearer's extension in three dimensions."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001295.ttl b/src/cco-iris/ont00001295.ttl new file mode 100644 index 00000000..5954ebba --- /dev/null +++ b/src/cco-iris/ont00001295.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001295 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Financial Facility"@en ; + "A Facility that is designed to support the management of money."@en ; + "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001296.ttl b/src/cco-iris/ont00001296.ttl new file mode 100644 index 00000000..27ec5a13 --- /dev/null +++ b/src/cco-iris/ont00001296.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000119 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001296 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pitch Orientation"@en ; + "Pitch"@en ; + "A Spatial Orientation of an Object relative to its Pitch Axis."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001297.ttl b/src/cco-iris/ont00001297.ttl new file mode 100644 index 00000000..ebe9d007 --- /dev/null +++ b/src/cco-iris/ont00001297.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001052 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001297 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Headquarters Facility"@en ; + "A Military Facility that is designed for military administration and coordination."@en ; + "https://en.wikipedia.org/w/index.php?title=Headquarters&oldid=1046429636"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001298.ttl b/src/cco-iris/ont00001298.ttl new file mode 100644 index 00000000..dcde28ea --- /dev/null +++ b/src/cco-iris/ont00001298.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000069 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000624 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000798 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001119 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001298 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Document"@en ; + "An Information Bearing Artifact that is designed to bear some specific Information Content Entity in a series of paragraphs of text or diagrams in the form of physical pieces of paper or an electronic word processor file."@en ; + "https://en.wikipedia.org/w/index.php?title=Document&oldid=1057829688"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001299.ttl b/src/cco-iris/ont00001299.ttl new file mode 100644 index 00000000..449aeb23 --- /dev/null +++ b/src/cco-iris/ont00001299.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000344 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001299 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wetting Agent Artifact Function"@en ; + "A Surfactant Artifact Function that is realized in a process that reduces the water repellent tendency of a substance thereby allowing it to become wet."@en ; + "https://en.wikipedia.org/w/index.php?title=Wetting&oldid=1062806793"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001300.ttl b/src/cco-iris/ont00001300.ttl new file mode 100644 index 00000000..9d859cd2 --- /dev/null +++ b/src/cco-iris/ont00001300.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001300 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Patch Antenna"@en ; + "Microstrip Patch Antenna"@en , + "Rectangular Microstrip Antenna"@en ; + "A Radio Antenna that consists of a flat rectangular sheet (or patch) of metal mounted over a larger sheet of metal called a ground plane which is typically contained inside a plastic radome for protection and is small enough that it can be mounted on a flat surface."@en ; + "https://en.wikipedia.org/w/index.php?title=Patch_antenna&oldid=1016658507"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001301.ttl b/src/cco-iris/ont00001301.ttl new file mode 100644 index 00000000..61a84607 --- /dev/null +++ b/src/cco-iris/ont00001301.ttl @@ -0,0 +1,109 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000036 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000066 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000309 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000321 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000481 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000600 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000661 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000864 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000880 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000938 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001210 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Service Artifact Function"@en ; + "An Artifact Function that is realized in a process of providing intangible goods to consumers."@en ; + "https://en.wikipedia.org/w/index.php?title=Goods_and_services&oldid=1063137197"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001329 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001378 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001302.ttl b/src/cco-iris/ont00001302.ttl new file mode 100644 index 00000000..64bd9c6e --- /dev/null +++ b/src/cco-iris/ont00001302.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000173 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001302 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Civil Organization"@en ; + "An Organization that is not commercial or military and is the bearer of a Civilian Role."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001303.ttl b/src/cco-iris/ont00001303.ttl new file mode 100644 index 00000000..8e90eecc --- /dev/null +++ b/src/cco-iris/ont00001303.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001303 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Position Observation Artifact Function"@en ; + "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the position of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001306 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001304.ttl b/src/cco-iris/ont00001304.ttl new file mode 100644 index 00000000..74ed02df --- /dev/null +++ b/src/cco-iris/ont00001304.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000575 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001304 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Dimension Specification"@en ; + "An Quality Specification that prescribes some Size Quality."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001305.ttl b/src/cco-iris/ont00001305.ttl new file mode 100644 index 00000000..a5887f45 --- /dev/null +++ b/src/cco-iris/ont00001305.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001066 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001305 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Function"@en ; + "A Loss of Disposition in which some Independent Continuant ceases to be the bearer of some Function."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001306.ttl b/src/cco-iris/ont00001306.ttl new file mode 100644 index 00000000..103e370d --- /dev/null +++ b/src/cco-iris/ont00001306.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001087 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001303 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001306 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Observation Artifact Function"@en ; + "An Artifact Function that is realized during events in which an Artifact is used to collect information about a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001368 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001307.ttl b/src/cco-iris/ont00001307.ttl new file mode 100644 index 00000000..0737dd9f --- /dev/null +++ b/src/cco-iris/ont00001307.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000061 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001307 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Mass Flow Rate"@en ; + "A Measurement Unit of Flow that is used as a standard for measurement of the rate at which the Mass of a substance passes per unit time."@en ; + "kilogram per second, slug per second, pound per second" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001459 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001596 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001651 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001733 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001308.ttl b/src/cco-iris/ont00001308.ttl new file mode 100644 index 00000000..1d1ddd3f --- /dev/null +++ b/src/cco-iris/ont00001308.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001308 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sewage Treatment Facility"@en ; + "A Waste Management Facility that is designed for removing contaminants from wastewater, especially sewage."@en ; + "https://en.wikipedia.org/w/index.php?title=Sewage_treatment&oldid=1062966352"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001315 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001309.ttl b/src/cco-iris/ont00001309.ttl new file mode 100644 index 00000000..efcffb38 --- /dev/null +++ b/src/cco-iris/ont00001309.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000077 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001309 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lot Number"@en ; + "A Code Identifier that designates a particular quantity or lot of material from a single manufacturer."@en ; + "https://en.wikipedia.org/w/index.php?title=Lot_number&oldid=1061846325"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001310.ttl b/src/cco-iris/ont00001310.ttl new file mode 100644 index 00000000..11fa42bd --- /dev/null +++ b/src/cco-iris/ont00001310.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001310 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Covering Artifact Function"@en ; + "An Artifact Function that is realized in a process in which an entity is covered."@en ; + "http://www.dictionary.com/browse/covering" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001311.ttl b/src/cco-iris/ont00001311.ttl new file mode 100644 index 00000000..ac9cde1a --- /dev/null +++ b/src/cco-iris/ont00001311.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000782 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001311 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Aircraft Manufacturing Facility"@en ; + "A Factory that is designed to manufacture Aircraft."@en ; + "https://en.wikipedia.org/w/index.php?title=Aerospace_manufacturer&oldid=1059223410"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001312.ttl b/src/cco-iris/ont00001312.ttl new file mode 100644 index 00000000..5f1d4324 --- /dev/null +++ b/src/cco-iris/ont00001312.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000274 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001312 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Paramilitary Force"@en ; + "An Armed Force whose organizational structure, training, subculture, and (often) function are similar to those of a professional Military, and which is not included as part of a Government's formal Armed Forces."@en ; + "https://en.wikipedia.org/w/index.php?title=Paramilitary&oldid=1063281359"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001313.ttl b/src/cco-iris/ont00001313.ttl new file mode 100644 index 00000000..b48013ae --- /dev/null +++ b/src/cco-iris/ont00001313.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001313 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Article of Clothing"@en ; + "A Material Artifact that is designed to cover some portion of a body."@en ; + "https://en.wikipedia.org/w/index.php?title=Clothing&oldid=1063505718"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001314.ttl b/src/cco-iris/ont00001314.ttl new file mode 100644 index 00000000..37234d39 --- /dev/null +++ b/src/cco-iris/ont00001314.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001314 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Legal System Act"@en ; + "A Planned Act performed by an Agent that realizes their role within the context of a legal system of some jurisdiction."@en ; + "http://www.id.uscourts.gov/glossary.htm" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001315.ttl b/src/cco-iris/ont00001315.ttl new file mode 100644 index 00000000..c949c2ac --- /dev/null +++ b/src/cco-iris/ont00001315.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001107 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001308 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001315 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Waste Management Facility"@en ; + "A Facility that is designed for managing waste for some portion of the waste's existence."@en ; + "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001316.ttl b/src/cco-iris/ont00001316.ttl new file mode 100644 index 00000000..520c3b11 --- /dev/null +++ b/src/cco-iris/ont00001316.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001042 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001316 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gimbal"@en ; + "An Equipment Mount that consists of a pivoted support that allows an Artifact to Rotate about one or more Axes."@en ; + "https://en.wikipedia.org/w/index.php?title=Gimbal&oldid=1053306885"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001317.ttl b/src/cco-iris/ont00001317.ttl new file mode 100644 index 00000000..f4c105ed --- /dev/null +++ b/src/cco-iris/ont00001317.ttl @@ -0,0 +1,138 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Volume"@en ; + "A Measurement Unit that is used as a standard for measurement of sites or three-dimensional regions or Geospatial Regions."@en ; + "cubic feet, cubic meter, quart, liter" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001393 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001416 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001422 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001423 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001437 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001445 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001462 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001472 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001499 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001523 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001551 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001573 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001576 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001589 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001611 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001663 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001678 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001687 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001318.ttl b/src/cco-iris/ont00001318.ttl new file mode 100644 index 00000000..17116051 --- /dev/null +++ b/src/cco-iris/ont00001318.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000119 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001318 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Yaw Orientation"@en ; + "Yaw"@en ; + "A Spatial Orientation of an Object relative to its Yaw Axis."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001319.ttl b/src/cco-iris/ont00001319.ttl new file mode 100644 index 00000000..6be61c4f --- /dev/null +++ b/src/cco-iris/ont00001319.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000427 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001319 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Tank firepower is normally provided by a large-caliber main gun mounted in a rotating turret, which is supported by secondary machine guns. A tank's heavy armour and all-terrain mobility provide protection for both the tank and its crew, allowing it to perform all primary tasks of the armoured troops on the battlefield."@en ; + rdfs:label "Tank"@en ; + "An Armored Fighting Vehicle that is designed to carry heavy firepower, have a powerful Engine, and travel on one or more continuous tracks such that it is suitable for front-line combat and can provide operational maneuverability as well as tactical offensive and defensive capabilities."@en ; + "https://en.wikipedia.org/w/index.php?title=Tank&oldid=1060527612"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001320.ttl b/src/cco-iris/ont00001320.ttl new file mode 100644 index 00000000..d2603107 --- /dev/null +++ b/src/cco-iris/ont00001320.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000785 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000903 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001320 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Transceiver"@en ; + "A Radio Communication Instrument that is an electronic device composed of both a Radio Transmitter and a Radio Receiver that share common circuitry or a single housing."@en ; + "https://en.wikipedia.org/w/index.php?title=Transceiver&oldid=1058453736"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001321.ttl b/src/cco-iris/ont00001321.ttl new file mode 100644 index 00000000..97d79074 --- /dev/null +++ b/src/cco-iris/ont00001321.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001105 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001321 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lead Acid Electric Battery"@en ; + "A Secondary Cell Electric Battery that has a lead anode and lead oxide cathode."@en ; + "https://en.wikipedia.org/w/index.php?title=Lead%E2%80%93acid_battery&oldid=1061641405"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001322.ttl b/src/cco-iris/ont00001322.ttl new file mode 100644 index 00000000..55b48f21 --- /dev/null +++ b/src/cco-iris/ont00001322.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000726 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001322 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "For the most part Generically Dependent Continuants do not inhere in their bearers over some continuous scale. The primary exception is religion and this class allows annotation of those cases where an Agent is described as becoming less religious. Other cases would include the decrease of an organization's bearing of some objective."@en ; + rdfs:label "Decrease of Generically Dependent Continuant"@en ; + "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in the level of a Generically Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001323.ttl b/src/cco-iris/ont00001323.ttl new file mode 100644 index 00000000..62305bbf --- /dev/null +++ b/src/cco-iris/ont00001323.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001323 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bearing Artifact Function"@en ; + "An Artifact Function that is realized in processes in which the Artifact constrains relative motion to only the desired motion, and reduces friction between moving parts."@en ; + "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001324.ttl b/src/cco-iris/ont00001324.ttl new file mode 100644 index 00000000..db1fc015 --- /dev/null +++ b/src/cco-iris/ont00001324.ttl @@ -0,0 +1,121 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001800 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001807 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001817 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001910 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001974 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001998 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000553 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000751 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001224 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Process Regulation"@en ; + "A Directive Information Content Entity that prescribes an Process as required, prohibited, or permitted, and is the output of an Process which realizes some Authority Role."@en ; + "Although regulations often regulate processes which involve agents--as the regulating or regulated participant--it is unclear how causally active an agents need to be in those regulated processes. For example, it is not clear how causally active a human agent is in the process of a traffic light regulating the motion of a self-driving vehicle."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001325.ttl b/src/cco-iris/ont00001325.ttl new file mode 100644 index 00000000..15b5336e --- /dev/null +++ b/src/cco-iris/ont00001325.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001325 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Renting"@en ; + "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Renter) as a payment to acquire temporary possession or use of a good or property that is owned or controlled by another Agent (the Seller)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001334 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001326.ttl b/src/cco-iris/ont00001326.ttl new file mode 100644 index 00000000..31b3f934 --- /dev/null +++ b/src/cco-iris/ont00001326.ttl @@ -0,0 +1,79 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000247 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000254 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000428 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000456 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000704 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001086 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001099 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001178 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001201 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001326 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Land Transportation Artifact"@en ; + "A Transportation Artifact that is fixed in place and designed to bear a Function, the realization of which is sometimes part of a process moving Vehicles and Agents from one location to another via land."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001327.ttl b/src/cco-iris/ont00001327.ttl new file mode 100644 index 00000000..d34bc911 --- /dev/null +++ b/src/cco-iris/ont00001327.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000079 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000228 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000265 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000433 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000455 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001327 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Social Act"@en ; + "A Planned Act having an objective that affects, is performed by, or is performed on behalf of, a community or group of Persons."@en ; + "http://en.wiktionary.org/wiki/commually" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001328.ttl b/src/cco-iris/ont00001328.ttl new file mode 100644 index 00000000..256d3cac --- /dev/null +++ b/src/cco-iris/ont00001328.ttl @@ -0,0 +1,114 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000067 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000124 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000263 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000398 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000891 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001146 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Temporal Reference System"@en ; + "Temporal Reference Frame"@en , + "Time Scale"@en ; + "A Reference System that describes a set of standards for measuring time as well as understanding the context of and organizing temporal data."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001414 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001417 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001461 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001529 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001590 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001658 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001666 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001692 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001329.ttl b/src/cco-iris/ont00001329.ttl new file mode 100644 index 00000000..c67a94db --- /dev/null +++ b/src/cco-iris/ont00001329.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001329 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Education Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of transmiting accumulated knowledge skills and values from one generation to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001330.ttl b/src/cco-iris/ont00001330.ttl new file mode 100644 index 00000000..4e7445a7 --- /dev/null +++ b/src/cco-iris/ont00001330.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000110 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000345 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001330 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Telemetry Process"@en ; + "A Mechanical Process that is highly automated and in which measurements are made or other data is collected and transmitted to receiving equipment to facilitate the monitoring of environmental conditions or equipment parameters at a remote or inaccessible location."@en ; + "using a GPS tag to track a shark's migratory pattern" , + "using a portable cardiac monitor to remotely collect data on a patient's heart activity (biotelemetry)" ; + "https://en.wikipedia.org/w/index.php?title=Telemetry&oldid=1061697851"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001331.ttl b/src/cco-iris/ont00001331.ttl new file mode 100644 index 00000000..72cb330e --- /dev/null +++ b/src/cco-iris/ont00001331.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001014 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001331 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Legal Name"@en ; + "A Proper Name that is an official name for the designated entity as determined by a Government or court of law."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001332.ttl b/src/cco-iris/ont00001332.ttl new file mode 100644 index 00000000..cfe1d848 --- /dev/null +++ b/src/cco-iris/ont00001332.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000610 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001332 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Extreme Ultraviolet Light Frequency"@en ; + "An Ultraviolet Light Frequency that is between 3 and 30 petahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001333.ttl b/src/cco-iris/ont00001333.ttl new file mode 100644 index 00000000..ba15c15f --- /dev/null +++ b/src/cco-iris/ont00001333.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001333 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rosy"@en ; + "A Color consisting of red hue and yellow hue and high brightness."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001334.ttl b/src/cco-iris/ont00001334.ttl new file mode 100644 index 00000000..d37e03df --- /dev/null +++ b/src/cco-iris/ont00001334.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000389 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000449 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000836 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001325 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001334 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Purchasing"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is used by an Agent (the Purchaser) to acquire a good or service from another Agent (the Provider)."@en ; + "https://en.wikipedia.org/w/index.php?title=Purchasing&oldid=1050163120"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001335.ttl b/src/cco-iris/ont00001335.ttl new file mode 100644 index 00000000..00ea5f4b --- /dev/null +++ b/src/cco-iris/ont00001335.ttl @@ -0,0 +1,116 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001859 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001864 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000139 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000408 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000532 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001203 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001335 + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Government"@en ; + "An Organization that is the highest legitimate authority delimited by some Delimiting Domain and that exercises executive, legislative, or judicial authority in that Domain."@en ; + "Highest legitimate authority should not be confused with highest legitimate authority of a particular kind. For example, while the judicial branch of the United States government has the highest judicial authority in a Delimiting Domain, it is not the highest legitimate authority delimited by that domain. The combination of executive, judicial, and legislative branches is higher because it wields more legitimate authority than any branch on its own."@en , + "Importantly, the definition states \"highest legitimate authority delimited by some Delimiting Domain\" and not \"highest legitimate authority in some Delimiting Domain.\" The government of Wales is the highest legitimate authority delimited by some Delimiting Domain but it is not the highest legitimate authority in that domain, which would be the government of the United Kingdom."@en ; + "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001336.ttl b/src/cco-iris/ont00001336.ttl new file mode 100644 index 00000000..7e8050b2 --- /dev/null +++ b/src/cco-iris/ont00001336.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001232 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001336 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "The relation between the owner and property may be private, collective, or common and the property may be objects, land, real estate, or intellectual property."@en ; + rdfs:label "Act of Ownership"@en ; + "An Act of Possession that includes an agent having certain rights and duties over the property owned."@en ; + "https://en.wikipedia.org/w/index.php?title=Ownership&oldid=1058224617"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001337.ttl b/src/cco-iris/ont00001337.ttl new file mode 100644 index 00000000..b9bd065d --- /dev/null +++ b/src/cco-iris/ont00001337.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000155 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000754 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000834 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001080 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001337 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrared Light Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 300 gigahertz and 430 tetrahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Infrared&oldid=1064111319"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001338.ttl b/src/cco-iris/ont00001338.ttl new file mode 100644 index 00000000..3c175c1f --- /dev/null +++ b/src/cco-iris/ont00001338.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000862 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001338 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Timbre"@en ; + "A Sound Process Profile that is characterized by the variation, spectrum, or envelope of translated sound waves, typically on a continuum from dull or dark to bright."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001339.ttl b/src/cco-iris/ont00001339.ttl new file mode 100644 index 00000000..17f0e04e --- /dev/null +++ b/src/cco-iris/ont00001339.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000890 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001339 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Walking"@en ; + "An Act of Travel that proceeds by foot."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001340.ttl b/src/cco-iris/ont00001340.ttl new file mode 100644 index 00000000..606c9825 --- /dev/null +++ b/src/cco-iris/ont00001340.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000529 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001340 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar Date Identifier"@en ; + "A Date Identifier that designates some Day by using a combination of Day, Week, Month, or Year Identifiers formatted according to an implementation of a Calendar System."@en ; + "January 1, 2018; 1 January 2018; 01/01/18; 01Jan18" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001341.ttl b/src/cco-iris/ont00001341.ttl new file mode 100644 index 00000000..54bd93b7 --- /dev/null +++ b/src/cco-iris/ont00001341.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000171 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000024 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000662 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001341 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Geosphere"@en ; + "A fiat object part that is composed of one or more portions of the atmosphere, cryosphere, hydrosphere, or lithosphere"@en ; + "https://en.wikipedia.org/w/index.php?title=Geosphere&oldid=1137306949"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001342.ttl b/src/cco-iris/ont00001342.ttl new file mode 100644 index 00000000..52eac3c9 --- /dev/null +++ b/src/cco-iris/ont00001342.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000427 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001342 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infantry Fighting Vehicle"@en ; + "An Armored Fighting Vehicle that is designed to carry infantry into battle and to provide fire support for them."@en ; + "Infantry Fighting Vehicles (IFVs) are differentiated from Armored Personnel Carriers (APCs) because they are designed to give direct fire support to the dismounted infantry and so usually have significantly enhanced armament. IFVs also often have improved armour and firing ports (allowing the infantry to fire personal weapons while mounted)."@en ; + "IFV" ; + "https://en.wikipedia.org/w/index.php?title=Infantry_fighting_vehicle&oldid=1062470745"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001343.ttl b/src/cco-iris/ont00001343.ttl new file mode 100644 index 00000000..d0b95b37 --- /dev/null +++ b/src/cco-iris/ont00001343.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001343 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Circuit Breaker"@en ; + "A Material Artifact that is designed to protect an electrical circuit from damage caused by excess current from an overload or short circuit."@en ; + "https://en.wikipedia.org/w/index.php?title=Circuit_breaker&oldid=1060854893"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001344.ttl b/src/cco-iris/ont00001344.ttl new file mode 100644 index 00000000..6b7d23ad --- /dev/null +++ b/src/cco-iris/ont00001344.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000881 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001344 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Biological Depot"@en ; + "A Storage Facility that is designed to store biological agents."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001345.ttl b/src/cco-iris/ont00001345.ttl new file mode 100644 index 00000000..dfb4bf3b --- /dev/null +++ b/src/cco-iris/ont00001345.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001345 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Impulse"@en ; + "A Measurement Unit that is used as a standard for measurement of the integral of a Force applied to a portion of matter over a temporal interval."@en ; + "N s, dyne second" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001656 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001711 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001346.ttl b/src/cco-iris/ont00001346.ttl new file mode 100644 index 00000000..b9fbb88a --- /dev/null +++ b/src/cco-iris/ont00001346.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000018 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001346 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Legal Instrument"@en ; + "A Material Artifact that is designed as a formally executed written document that can be formally attributed to its author, records and formally expresses a legally enforceable act, process, or contractual duty, obligation, or right, and therefore evidences that act, process, or agreement."@en ; + "https://en.wikipedia.org/w/index.php?title=Legal_instrument&oldid=1054387344"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001347.ttl b/src/cco-iris/ont00001347.ttl new file mode 100644 index 00000000..501ea10f --- /dev/null +++ b/src/cco-iris/ont00001347.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000005 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001347 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Behavior"@en ; + "An Act in which an Independent Continuant participates as an Agent in response to external or internal stimuli and following some pattern which is dependent upon some combination of that Independent Continuant's internal state and external conditions."@en ; + "http://purl.obolibrary.org/obo/GO_0007610" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001348.ttl b/src/cco-iris/ont00001348.ttl new file mode 100644 index 00000000..8e4ea6ed --- /dev/null +++ b/src/cco-iris/ont00001348.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000028 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000068 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001348 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "For an object in motion, its Three-Dimensional Position is part of its Three-Dimensional Path."@en ; + rdfs:label "Three-Dimensional Position"@en ; + "A Three-Dimensional Spatial Region that encompasses the (minimal) spatial region in which some object is located at a particular time."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001349.ttl b/src/cco-iris/ont00001349.ttl new file mode 100644 index 00000000..c4945b34 --- /dev/null +++ b/src/cco-iris/ont00001349.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001349 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Grey"@en ; + "A Color between white and black colors."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001350.ttl b/src/cco-iris/ont00001350.ttl new file mode 100644 index 00000000..0c71078c --- /dev/null +++ b/src/cco-iris/ont00001350.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000985 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001350 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thermal Control Artifact Function"@en ; + "An Artifact Function that is realized by an Artifact increasing, decreasing, or maintaining the temperature of itself, a part of itself, or another object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001351.ttl b/src/cco-iris/ont00001351.ttl new file mode 100644 index 00000000..482bd1c3 --- /dev/null +++ b/src/cco-iris/ont00001351.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000275 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001351 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cartesian Coordinate System"@en ; + "Rectangular Coordinate System"@en ; + "A Spatial Reference System that identifies each point in a spatial region of n-dimensions using an ordered n-tuple of numerical coordinates that are the signed (i.e. positive or negative) distances measured in the same unit of length from the zero point where the fixed perpendicular Coordinate System Axes meet."@en ; + "https://en.wikipedia.org/w/index.php?title=Cartesian_coordinate_system&oldid=1058613323"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001648 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001352.ttl b/src/cco-iris/ont00001352.ttl new file mode 100644 index 00000000..2b22400e --- /dev/null +++ b/src/cco-iris/ont00001352.ttl @@ -0,0 +1,184 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000829 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Greenwich Mean Time (GMT) is the mean solar time at the Royal Observatory in Greenwich, London and has been superseded by Coordinated Universal Time (UTC)."@en ; + rdfs:label "Greenwich Mean Time Zone Identifier"@en ; + "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Greenwich Mean Time."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001392 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001395 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001405 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001406 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001412 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001419 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001434 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001440 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001467 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001468 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001476 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001524 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001534 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001541 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001553 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001554 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001565 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001570 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001588 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001597 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001599 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001615 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001634 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001661 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001691 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001701 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001702 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001704 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001353.ttl b/src/cco-iris/ont00001353.ttl new file mode 100644 index 00000000..4845d832 --- /dev/null +++ b/src/cco-iris/ont00001353.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000190 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000448 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001275 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001353 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Speed Artifact Function"@en ; + "A Motion Artifact Function that is realized in some process in which its bearer has some speed."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001365 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001354.ttl b/src/cco-iris/ont00001354.ttl new file mode 100644 index 00000000..dd291bb7 --- /dev/null +++ b/src/cco-iris/ont00001354.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001354 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vermilion"@en ; + "A Color consisting of red and orange hue with a slight amount of gray."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001355.ttl b/src/cco-iris/ont00001355.ttl new file mode 100644 index 00000000..337eba28 --- /dev/null +++ b/src/cco-iris/ont00001355.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000928 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001355 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Freight Train Car"@en ; + "Freight Car"@en ; + "A Train Car that is designed to transport cargo."@en ; + "https://en.wikipedia.org/w/index.php?title=Goods_wagon&oldid=1062686785"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001356.ttl b/src/cco-iris/ont00001356.ttl new file mode 100644 index 00000000..1e8cae87 --- /dev/null +++ b/src/cco-iris/ont00001356.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000361 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000611 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001356 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Disposition"@en ; + "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Disposition that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001357.ttl b/src/cco-iris/ont00001357.ttl new file mode 100644 index 00000000..7246a778 --- /dev/null +++ b/src/cco-iris/ont00001357.ttl @@ -0,0 +1,83 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001357 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Time"@en ; + "A Measurement Unit that is used as a standard for measurement of temporal regions."@en ; + "second, minute, hour, day" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001442 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001444 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001533 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001536 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001571 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001667 + rdf:type owl:NamedIndividual , + . + + +### https://www.commoncoreontologies.org/ont00001707 + rdf:type owl:NamedIndividual , + . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001358.ttl b/src/cco-iris/ont00001358.ttl new file mode 100644 index 00000000..3d1f7e12 --- /dev/null +++ b/src/cco-iris/ont00001358.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000270 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001358 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "School"@en ; + "An Education Facility that is designed to provide learning space and environments for teaching of students under the direction of teachers."@en ; + "https://en.wikipedia.org/w/index.php?title=School&oldid=1063515394"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001359.ttl b/src/cco-iris/ont00001359.ttl new file mode 100644 index 00000000..0c4e6b79 --- /dev/null +++ b/src/cco-iris/ont00001359.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000908 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001359 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "An Act of Manufacturing typically involves the mass production of goods."@en ; + rdfs:label "Act of Manufacturing"@en ; + "An Act of Artifact Processing wherein Artifacts are created in a Facility for the purpose of being sold to consumers."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001360.ttl b/src/cco-iris/ont00001360.ttl new file mode 100644 index 00000000..cacc8242 --- /dev/null +++ b/src/cco-iris/ont00001360.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000283 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000478 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000560 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000733 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000912 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001360 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Three Dimensional Shape"@en ; + "A Shape Quality that inheres only in a three dimensional entity."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001361.ttl b/src/cco-iris/ont00001361.ttl new file mode 100644 index 00000000..09f51959 --- /dev/null +++ b/src/cco-iris/ont00001361.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001361 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Healing Artifact Function"@en ; + "An Artifact Function that is realized in a process in which health is restored to an unbalanced, diseased, or damaged organism."@en ; + "https://en.wikipedia.org/w/index.php?title=Healing&oldid=1053920678"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001362.ttl b/src/cco-iris/ont00001362.ttl new file mode 100644 index 00000000..ca5a83f3 --- /dev/null +++ b/src/cco-iris/ont00001362.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001283 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001362 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gas Processing Facility"@en ; + "A Refinery that is designed for refining natural gas into products of value."@en ; + "https://en.wikipedia.org/w/index.php?title=Natural-gas_processing&oldid=1056700541"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001363.ttl b/src/cco-iris/ont00001363.ttl new file mode 100644 index 00000000..9124f974 --- /dev/null +++ b/src/cco-iris/ont00001363.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001033 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001363 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Male Sex"@en ; + "A Biological Sex inhering in an individual whose sex organs contain only male gametes."@en ; + "http://purl.org/obo/owl/PATO#PATO_0000384" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001364.ttl b/src/cco-iris/ont00001364.ttl new file mode 100644 index 00000000..f4deb934 --- /dev/null +++ b/src/cco-iris/ont00001364.ttl @@ -0,0 +1,86 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001877 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001964 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000293 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00001022 + rdf:type owl:Class ; + owl:disjointWith . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001364 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + rdfs:label "Interval Measurement Information Content Entity"@en ; + "A Measurement Information Content Entity that places a Quality of an Entity onto some interval scale having no true zero value."@en ; + "The sentence \"The temperature reached -27 degrees Fahrenheit on January 20, 1985 in Chicago, IL.\" is the carrier of an interval measurement as 0 degrees on the Fahrenheit scale does not describe absolute zero."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001365.ttl b/src/cco-iris/ont00001365.ttl new file mode 100644 index 00000000..c2e39314 --- /dev/null +++ b/src/cco-iris/ont00001365.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001353 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001365 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Maximum Speed Artifact Function"@en ; + "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains the highest speed at which that Artifact is designed to operate."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001366.ttl b/src/cco-iris/ont00001366.ttl new file mode 100644 index 00000000..dd6b7b84 --- /dev/null +++ b/src/cco-iris/ont00001366.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001366 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Powering Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Artifact is used to supply power to some Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001367.ttl b/src/cco-iris/ont00001367.ttl new file mode 100644 index 00000000..49402326 --- /dev/null +++ b/src/cco-iris/ont00001367.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000324 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000541 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000738 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000892 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000967 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001202 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001293 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001367 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Subclasses of one dimensional extent are included for usability. It is doubtful any of them can be objectively distinguished (on the side of the bearing entity) without some reference to external properties such as orientation and perspective."@en ; + rdfs:label "One Dimensional Extent"@en ; + "A Size Quality that inheres in a bearer in virtue of the bearer's extension in one dimension."@en ; + "http://purl.obolibrary.org/obo/PATO_0001708" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001368.ttl b/src/cco-iris/ont00001368.ttl new file mode 100644 index 00000000..de2e9504 --- /dev/null +++ b/src/cco-iris/ont00001368.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001306 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001368 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motion Observation Artifact Function"@en ; + "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the Motion of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001369.ttl b/src/cco-iris/ont00001369.ttl new file mode 100644 index 00000000..c1228399 --- /dev/null +++ b/src/cco-iris/ont00001369.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000105 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001059 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001369 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rectangular"@en ; + "A Shape Quality inhering in a bearer in virtue of having four sides and four 90 degree angles."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001370.ttl b/src/cco-iris/ont00001370.ttl new file mode 100644 index 00000000..006375f6 --- /dev/null +++ b/src/cco-iris/ont00001370.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000306 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001370 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Machine Bearing"@en ; + "A Material Artifact that is designed to constrain relative motion to only desired motion and reduces friction between moving parts."@en ; + "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001371.ttl b/src/cco-iris/ont00001371.ttl new file mode 100644 index 00000000..ac28b90e --- /dev/null +++ b/src/cco-iris/ont00001371.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001371 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electromagnetic Induction Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Artifact that is used to produce electromotive force across an electrical conductor due to its dynamic interaction with a magnetic field."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_induction&oldid=1061836930"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001372.ttl b/src/cco-iris/ont00001372.ttl new file mode 100644 index 00000000..43504f69 --- /dev/null +++ b/src/cco-iris/ont00001372.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000437 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001372 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fertilizer Artifact Function"@en ; + "An Enhancing Artifact Function that is realized in processes of supplying soilds or plant tissues with one or more plant nutrients essential to growth."@en ; + "https://en.wikipedia.org/w/index.php?title=Fertilizer&oldid=1062923261"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001373.ttl b/src/cco-iris/ont00001373.ttl new file mode 100644 index 00000000..2979a2e4 --- /dev/null +++ b/src/cco-iris/ont00001373.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001051 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001373 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bow"@en ; + "A Projectile Launcher that is designed to launch Arrows."@en ; + "https://en.wikipedia.org/w/index.php?title=Bow_and_arrow&oldid=1062193194"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001374.ttl b/src/cco-iris/ont00001374.ttl new file mode 100644 index 00000000..6dbe67c8 --- /dev/null +++ b/src/cco-iris/ont00001374.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000402 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000438 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001032 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001374 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Examples: Baptism, Sentencing a person to imprisonment, Pronouncing a couple husband and wife, Declaring war"@en ; + rdfs:label "Act of Declarative Communication"@en ; + "An Act of Communication that changes the reality in accord with the proposition of the declaration."@en ; + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001375.ttl b/src/cco-iris/ont00001375.ttl new file mode 100644 index 00000000..008fad36 --- /dev/null +++ b/src/cco-iris/ont00001375.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000192 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000901 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001375 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Washing Facility"@en ; + "A Facility that is designed to wash personnel or equipment."@en ; + "https://en.wikipedia.org/w/index.php?title=Washing&oldid=1035998791"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001376.ttl b/src/cco-iris/ont00001376.ttl new file mode 100644 index 00000000..58cfac30 --- /dev/null +++ b/src/cco-iris/ont00001376.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000570 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001376 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Torque"@en ; + "Moment of Force"@en ; + "A Force that is applied to an object in a direction that would tend to cause the object to rotate around an Axis of Rotation and is the rate of change of an object's Angular Momentum."@en ; + "https://en.wikipedia.org/w/index.php?title=Torque&oldid=1063339484"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001377.ttl b/src/cco-iris/ont00001377.ttl new file mode 100644 index 00000000..1288d11c --- /dev/null +++ b/src/cco-iris/ont00001377.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000378 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001377 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gold Color"@en ; + "A Color that resembles a yellow-orange Hue with the added feature of having a metallic shine."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001378.ttl b/src/cco-iris/ont00001378.ttl new file mode 100644 index 00000000..8c51985d --- /dev/null +++ b/src/cco-iris/ont00001378.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001301 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001378 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hospitality Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of accommodation food and beverage meeting and events gaming entertainment and recreation tourism services and visitor information."@en ; + "https://en.wikipedia.org/w/index.php?title=Hospitality&oldid=1049599161"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001379.ttl b/src/cco-iris/ont00001379.ttl new file mode 100644 index 00000000..0fa33fa5 --- /dev/null +++ b/src/cco-iris/ont00001379.ttl @@ -0,0 +1,122 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001880 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001889 + rdf:type owl:ObjectProperty ; + rdfs:domain . + + +### https://www.commoncoreontologies.org/ont00001898 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +### https://www.commoncoreontologies.org/ont00001954 + rdf:type owl:ObjectProperty ; + rdfs:range . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000017 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000089 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000568 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001379 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Agent Capability"@en ; + "A Realizable Entity that inheres in a Material Entity in virtue of that Material Entity's capacity to realize it in some Planned Act."@en ; + "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001380.ttl b/src/cco-iris/ont00001380.ttl new file mode 100644 index 00000000..64339849 --- /dev/null +++ b/src/cco-iris/ont00001380.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000339 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001380 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Farm"@en ; + "An Agricultural Facility that is designed to produce food and other crops."@en ; + "https://en.wikipedia.org/w/index.php?title=Farm&oldid=1058311769"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001381.ttl b/src/cco-iris/ont00001381.ttl new file mode 100644 index 00000000..912d051b --- /dev/null +++ b/src/cco-iris/ont00001381.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000266 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000715 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001381 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Medical Artifact"@en ; + "A Material Artifact that is designed for diagnosing, treating, or preventing disease, disability, or death."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001382.ttl b/src/cco-iris/ont00001382.ttl new file mode 100644 index 00000000..129c2462 --- /dev/null +++ b/src/cco-iris/ont00001382.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000475 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001382 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electronic Cash"@en ; + "A Portion of Cash that consists of Bytes."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001383.ttl b/src/cco-iris/ont00001383.ttl new file mode 100644 index 00000000..ab00dba3 --- /dev/null +++ b/src/cco-iris/ont00001383.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000479 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001383 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fire Station"@en ; + "Fire Hall"@en , + "Fire House"@en ; + "A Public Safety Facility that is designed for the storage of firefighting apparatus."@en ; + "https://en.wikipedia.org/w/index.php?title=Fire_station&oldid=1060666629"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001384.ttl b/src/cco-iris/ont00001384.ttl new file mode 100644 index 00000000..e2c4df28 --- /dev/null +++ b/src/cco-iris/ont00001384.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000112 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000525 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000620 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000628 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001220 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00001384 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment "Note that it is important to specify the frequency of electromagnetic radiation when representing a bearer's Opacity since a bearer may be Opaque with respect to electromagnetic radiation of one frequency, but be transparent with respect to electromagnetic radiation of another frequency. Unless otherwise stated, statements about a bearer's Opacity are assumed to be about electromagnetic radiation with a frequency in the visible spectrum."@en ; + rdfs:label "Opacity"@en ; + "An Electromagnetic Radiation Property that inheres in a bearer in virtue of that bearer's capacity to transmit electromagnetic radiation of a given frequency through the bearer instead of reflecting, scattering, or absorbing electromangentic radiation of that frequency."@en ; + "https://en.wikipedia.org/wiki/Opacity_(optics)" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001385.ttl b/src/cco-iris/ont00001385.ttl new file mode 100644 index 00000000..eb33dbbd --- /dev/null +++ b/src/cco-iris/ont00001385.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001385 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Haiti Gourde"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001386.ttl b/src/cco-iris/ont00001386.ttl new file mode 100644 index 00000000..c4c9477a --- /dev/null +++ b/src/cco-iris/ont00001386.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001386 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Yemeni Rial"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001387.ttl b/src/cco-iris/ont00001387.ttl new file mode 100644 index 00000000..f83789eb --- /dev/null +++ b/src/cco-iris/ont00001387.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001387 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mauritania Ouguiya"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001388.ttl b/src/cco-iris/ont00001388.ttl new file mode 100644 index 00000000..d6686c3c --- /dev/null +++ b/src/cco-iris/ont00001388.ttl @@ -0,0 +1,52 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000707 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001388 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Minute of Arc Measurement Unit"@en ; + "Arcminute"@en , + "MOA"@en , + "am"@en , + "amin"@en , + "arcmin"@en ; + "'" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001389.ttl b/src/cco-iris/ont00001389.ttl new file mode 100644 index 00000000..977973dc --- /dev/null +++ b/src/cco-iris/ont00001389.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001389 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kenyan Shilling"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001390.ttl b/src/cco-iris/ont00001390.ttl new file mode 100644 index 00000000..b3799222 --- /dev/null +++ b/src/cco-iris/ont00001390.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001390 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Slug Measurement Unit"@en ; + "slug"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001391.ttl b/src/cco-iris/ont00001391.ttl new file mode 100644 index 00000000..69ceba55 --- /dev/null +++ b/src/cco-iris/ont00001391.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000229 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000444 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000852 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001391 + rdf:type owl:NamedIndividual , + , + , + ; + rdfs:label "Erg Measurement Unit"@en ; + "erg"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001392.ttl b/src/cco-iris/ont00001392.ttl new file mode 100644 index 00000000..0cad5b18 --- /dev/null +++ b/src/cco-iris/ont00001392.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001392 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-8"@en ; + "PST"@en , + "Pacific Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001393.ttl b/src/cco-iris/ont00001393.ttl new file mode 100644 index 00000000..c1fbfbc6 --- /dev/null +++ b/src/cco-iris/ont00001393.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001393 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tablespoon Measurement Unit"@en ; + "T" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001394.ttl b/src/cco-iris/ont00001394.ttl new file mode 100644 index 00000000..51b7ba4b --- /dev/null +++ b/src/cco-iris/ont00001394.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001394 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Papua New Guinea Kina"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001395.ttl b/src/cco-iris/ont00001395.ttl new file mode 100644 index 00000000..f9fff5e0 --- /dev/null +++ b/src/cco-iris/ont00001395.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001395 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-3:30"@en ; + "Newfoundland Standard Time"@en ; + "NST" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001396.ttl b/src/cco-iris/ont00001396.ttl new file mode 100644 index 00000000..785adf09 --- /dev/null +++ b/src/cco-iris/ont00001396.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001396 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Viet Nam Dong"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001397.ttl b/src/cco-iris/ont00001397.ttl new file mode 100644 index 00000000..c848ba2e --- /dev/null +++ b/src/cco-iris/ont00001397.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001397 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Centimeter Measurement Unit"@en ; + "cm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001398.ttl b/src/cco-iris/ont00001398.ttl new file mode 100644 index 00000000..a7681e1c --- /dev/null +++ b/src/cco-iris/ont00001398.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001398 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Global Area Reference System"@en ; + "GARS" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001399.ttl b/src/cco-iris/ont00001399.ttl new file mode 100644 index 00000000..4f101996 --- /dev/null +++ b/src/cco-iris/ont00001399.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001399 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Ghana Cedi"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001400.ttl b/src/cco-iris/ont00001400.ttl new file mode 100644 index 00000000..d096222c --- /dev/null +++ b/src/cco-iris/ont00001400.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001400 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sri Lanka Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001401.ttl b/src/cco-iris/ont00001401.ttl new file mode 100644 index 00000000..7924f544 --- /dev/null +++ b/src/cco-iris/ont00001401.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001401 + rdf:type owl:NamedIndividual , + ; + rdfs:label "South Africa Rand"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001402.ttl b/src/cco-iris/ont00001402.ttl new file mode 100644 index 00000000..2d084307 --- /dev/null +++ b/src/cco-iris/ont00001402.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000770 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001402 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Per Liter Measurement Unit"@en ; + "kg/L" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001403.ttl b/src/cco-iris/ont00001403.ttl new file mode 100644 index 00000000..769adcee --- /dev/null +++ b/src/cco-iris/ont00001403.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001403 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+2"@en ; + rdfs:label "Bravo Time Zone"@en ; + "B" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001404.ttl b/src/cco-iris/ont00001404.ttl new file mode 100644 index 00000000..41bf6de3 --- /dev/null +++ b/src/cco-iris/ont00001404.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001404 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Afghanistan Afghani"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001405.ttl b/src/cco-iris/ont00001405.ttl new file mode 100644 index 00000000..d8e51b95 --- /dev/null +++ b/src/cco-iris/ont00001405.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001405 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-2"@en ; + "BET"@en , + "Brazil Eastern Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001406.ttl b/src/cco-iris/ont00001406.ttl new file mode 100644 index 00000000..10fa5d37 --- /dev/null +++ b/src/cco-iris/ont00001406.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001406 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+9:30"@en ; + "Australian Central Standard Time"@en ; + "ACST" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001407.ttl b/src/cco-iris/ont00001407.ttl new file mode 100644 index 00000000..6175a878 --- /dev/null +++ b/src/cco-iris/ont00001407.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000229 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001407 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Shaft Horsepower Measurement Unit"@en ; + "shp"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001408.ttl b/src/cco-iris/ont00001408.ttl new file mode 100644 index 00000000..80f80ece --- /dev/null +++ b/src/cco-iris/ont00001408.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001408 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-11"@en ; + rdfs:label "X-ray Time Zone"@en ; + "X" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001409.ttl b/src/cco-iris/ont00001409.ttl new file mode 100644 index 00000000..9d2c8e50 --- /dev/null +++ b/src/cco-iris/ont00001409.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001409 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Singapore Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001410.ttl b/src/cco-iris/ont00001410.ttl new file mode 100644 index 00000000..820a9786 --- /dev/null +++ b/src/cco-iris/ont00001410.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001410 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Guyana Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001411.ttl b/src/cco-iris/ont00001411.ttl new file mode 100644 index 00000000..346cd492 --- /dev/null +++ b/src/cco-iris/ont00001411.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000497 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001411 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound Force Measurement Unit"@en ; + "lbf"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001412.ttl b/src/cco-iris/ont00001412.ttl new file mode 100644 index 00000000..3dcbe788 --- /dev/null +++ b/src/cco-iris/ont00001412.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001412 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+0"@en ; + rdfs:label "GMT"@en ; + "Greenwich Mean Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001413.ttl b/src/cco-iris/ont00001413.ttl new file mode 100644 index 00000000..0c4493ce --- /dev/null +++ b/src/cco-iris/ont00001413.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001413 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Milligram Measurement Unit"@en ; + "mg"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001414.ttl b/src/cco-iris/ont00001414.ttl new file mode 100644 index 00000000..8600c3ca --- /dev/null +++ b/src/cco-iris/ont00001414.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001414 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "TT is an astronomical time standard that is a theoretical ideal designed to be free of the irregularities in Earth's rotation and is primarily used for time measurements of astronomical observations made from the surface of Earth. It was formerly called Terrestrial Dynamical Time (TDT), which was formulated to replace Ephemeris Time (ET)."@en ; + rdfs:label "Terrestrial Time"@en ; + "TT" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001415.ttl b/src/cco-iris/ont00001415.ttl new file mode 100644 index 00000000..6d0f8225 --- /dev/null +++ b/src/cco-iris/ont00001415.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001415 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Swiss Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001416.ttl b/src/cco-iris/ont00001416.ttl new file mode 100644 index 00000000..ce0748d6 --- /dev/null +++ b/src/cco-iris/ont00001416.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001416 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Centimeter Measurement Unit"@en ; + "cm^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001417.ttl b/src/cco-iris/ont00001417.ttl new file mode 100644 index 00000000..e7d13f10 --- /dev/null +++ b/src/cco-iris/ont00001417.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001417 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "ET is an astronomical time scale that was adopted as a standard in 1952 by the IAU but has since been superseded and is no longer actively used. ET is based on the ephemeris second, which was defined as a fraction of the tropical year for 1900 January 01 as calculated using Newcomb's 1895 tables of the Sun. ET was designed to avoid problems caused by variations in Earth's rotational period and was used for Solar System ephemeris calculations until being replaced by Terrestrial Dynamical Time (TDT) in 1979."@en ; + rdfs:label "Ephemeris Time"@en ; + "ET" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001418.ttl b/src/cco-iris/ont00001418.ttl new file mode 100644 index 00000000..4de4f3a5 --- /dev/null +++ b/src/cco-iris/ont00001418.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000140 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001418 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram-Mole Measurement Unit"@en ; + "kg-mol"@en , + "kilogram-mole"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001419.ttl b/src/cco-iris/ont00001419.ttl new file mode 100644 index 00000000..bf5c8b30 --- /dev/null +++ b/src/cco-iris/ont00001419.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001419 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+5"@en ; + "PLT"@en , + "Pakistan Lahore Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001420.ttl b/src/cco-iris/ont00001420.ttl new file mode 100644 index 00000000..d63754d1 --- /dev/null +++ b/src/cco-iris/ont00001420.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001420 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Dominican Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001421.ttl b/src/cco-iris/ont00001421.ttl new file mode 100644 index 00000000..303a8853 --- /dev/null +++ b/src/cco-iris/ont00001421.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001421 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-6"@en ; + rdfs:label "Sierra Time Zone"@en ; + "S" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001422.ttl b/src/cco-iris/ont00001422.ttl new file mode 100644 index 00000000..444581a3 --- /dev/null +++ b/src/cco-iris/ont00001422.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001422 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Quart Measurement Unit"@en ; + "qt" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001423.ttl b/src/cco-iris/ont00001423.ttl new file mode 100644 index 00000000..cc0ba326 --- /dev/null +++ b/src/cco-iris/ont00001423.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001423 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Deciliter Measurement Unit"@en ; + "dL"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001424.ttl b/src/cco-iris/ont00001424.ttl new file mode 100644 index 00000000..091a360c --- /dev/null +++ b/src/cco-iris/ont00001424.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001424 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+1"@en ; + rdfs:label "Alpha Time Zone"@en ; + "A" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001425.ttl b/src/cco-iris/ont00001425.ttl new file mode 100644 index 00000000..2672871b --- /dev/null +++ b/src/cco-iris/ont00001425.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000969 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001425 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Miles Per Second Measurement Unit"@en ; + "mi/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001426.ttl b/src/cco-iris/ont00001426.ttl new file mode 100644 index 00000000..6b4ec8f5 --- /dev/null +++ b/src/cco-iris/ont00001426.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001426 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Chinese Renminbi"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001427.ttl b/src/cco-iris/ont00001427.ttl new file mode 100644 index 00000000..ac8c73e5 --- /dev/null +++ b/src/cco-iris/ont00001427.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001427 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Canadian Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001428.ttl b/src/cco-iris/ont00001428.ttl new file mode 100644 index 00000000..9864b47d --- /dev/null +++ b/src/cco-iris/ont00001428.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000969 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001428 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilometers Per Hour Measurement Unit"@en ; + "km/h"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001429.ttl b/src/cco-iris/ont00001429.ttl new file mode 100644 index 00000000..d04b1258 --- /dev/null +++ b/src/cco-iris/ont00001429.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000140 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001429 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gram-Mole Measurement Unit"@en ; + "g-mol"@en , + "gram-mole"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001430.ttl b/src/cco-iris/ont00001430.ttl new file mode 100644 index 00000000..42555f73 --- /dev/null +++ b/src/cco-iris/ont00001430.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001430 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+6"@en ; + rdfs:label "Foxtrot Time Zone"@en ; + "F" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001431.ttl b/src/cco-iris/ont00001431.ttl new file mode 100644 index 00000000..596b6022 --- /dev/null +++ b/src/cco-iris/ont00001431.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001431 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-10"@en ; + rdfs:label "Whiskey Time Zone"@en ; + "W" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001432.ttl b/src/cco-iris/ont00001432.ttl new file mode 100644 index 00000000..19b944e0 --- /dev/null +++ b/src/cco-iris/ont00001432.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001090 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001432 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Force Per Centimeter Square Measurement Unit"@en ; + "Kilogram Per Square Centimeter Measurement Unit"@en , + "Kilopond Per Centimeter Square Measurement Unit"@en ; + "kg/cm^2" , + "kgf/cm^2" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001433.ttl b/src/cco-iris/ont00001433.ttl new file mode 100644 index 00000000..dc302eb0 --- /dev/null +++ b/src/cco-iris/ont00001433.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001433 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mile Measurement Unit"@en ; + "mi"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001434.ttl b/src/cco-iris/ont00001434.ttl new file mode 100644 index 00000000..536b370f --- /dev/null +++ b/src/cco-iris/ont00001434.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001434 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+1"@en ; + "ECT"@en , + "European Central Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001435.ttl b/src/cco-iris/ont00001435.ttl new file mode 100644 index 00000000..c2e06401 --- /dev/null +++ b/src/cco-iris/ont00001435.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001435 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Colombian Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001436.ttl b/src/cco-iris/ont00001436.ttl new file mode 100644 index 00000000..6e448b0c --- /dev/null +++ b/src/cco-iris/ont00001436.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000630 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001436 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Time 1 D"@en ; + "UT1D" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001437.ttl b/src/cco-iris/ont00001437.ttl new file mode 100644 index 00000000..2fcd2761 --- /dev/null +++ b/src/cco-iris/ont00001437.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001437 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Liter Measurement Unit"@en ; + "Litre"@en ; + "L" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001438.ttl b/src/cco-iris/ont00001438.ttl new file mode 100644 index 00000000..b8a548ca --- /dev/null +++ b/src/cco-iris/ont00001438.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001438 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Yard Measurement Unit"@en ; + "yd^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001439.ttl b/src/cco-iris/ont00001439.ttl new file mode 100644 index 00000000..1771edf3 --- /dev/null +++ b/src/cco-iris/ont00001439.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000263 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001439 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Twenty-Four-Hour Clock Time System"@en ; + "24-Hour Clock"@en , + "24-Hour Clock Time System"@en , + "Military Time"@en , + "Military Time System"@en , + "Twenty-Four Hour Clock Time System"@en , + "Twenty-Four-Hour Clock"@en ; + "A Clock Time System for time keeping in which the Day runs from midnight to midnight and is divided into 24 Hours, indicated by the Hours passed since midnight, from 0 to 23."@en ; + "https://en.wikipedia.org/w/index.php?title=24-hour_clock&oldid=1063744105"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001440.ttl b/src/cco-iris/ont00001440.ttl new file mode 100644 index 00000000..27c357af --- /dev/null +++ b/src/cco-iris/ont00001440.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001440 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-9"@en ; + "AST"@en , + "Alaska Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001441.ttl b/src/cco-iris/ont00001441.ttl new file mode 100644 index 00000000..b4a46070 --- /dev/null +++ b/src/cco-iris/ont00001441.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001441 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Rwanda Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001442.ttl b/src/cco-iris/ont00001442.ttl new file mode 100644 index 00000000..da1e5fdf --- /dev/null +++ b/src/cco-iris/ont00001442.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001357 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001442 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Week Measurement Unit"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001443.ttl b/src/cco-iris/ont00001443.ttl new file mode 100644 index 00000000..b0f3568a --- /dev/null +++ b/src/cco-iris/ont00001443.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001443 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Albania Lek"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001444.ttl b/src/cco-iris/ont00001444.ttl new file mode 100644 index 00000000..57a7515b --- /dev/null +++ b/src/cco-iris/ont00001444.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001357 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001444 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Year Measurement Unit"@en ; + "yr"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001445.ttl b/src/cco-iris/ont00001445.ttl new file mode 100644 index 00000000..b67e51ec --- /dev/null +++ b/src/cco-iris/ont00001445.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001445 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Centiliter Measurement Unit"@en ; + "cL"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001446.ttl b/src/cco-iris/ont00001446.ttl new file mode 100644 index 00000000..2e8355b0 --- /dev/null +++ b/src/cco-iris/ont00001446.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001446 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Mike Time Zone is the same local time as Yankee Time Zone, but is 1 Day (i.e. 24 Hours) ahead of Yankee Time Zone as they are on opposite sides of the International Date Line."@en , + "Offset from Universal Coordinated Time = UTC+12"@en ; + rdfs:label "Mike Time Zone"@en ; + "M" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001447.ttl b/src/cco-iris/ont00001447.ttl new file mode 100644 index 00000000..b1f92ad6 --- /dev/null +++ b/src/cco-iris/ont00001447.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001447 + rdf:type owl:NamedIndividual , + ; + rdfs:label "CFP Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001448.ttl b/src/cco-iris/ont00001448.ttl new file mode 100644 index 00000000..b7e0e923 --- /dev/null +++ b/src/cco-iris/ont00001448.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001448 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Malawi Kwacha"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001449.ttl b/src/cco-iris/ont00001449.ttl new file mode 100644 index 00000000..87001269 --- /dev/null +++ b/src/cco-iris/ont00001449.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001449 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Czech Koruna"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001450.ttl b/src/cco-iris/ont00001450.ttl new file mode 100644 index 00000000..523efb24 --- /dev/null +++ b/src/cco-iris/ont00001450.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001004 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001450 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Volt Measurement Unit"@en ; + "V"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001451.ttl b/src/cco-iris/ont00001451.ttl new file mode 100644 index 00000000..10805299 --- /dev/null +++ b/src/cco-iris/ont00001451.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001004 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001451 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Milliampere Measurement Unit"@en ; + "mA"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001452.ttl b/src/cco-iris/ont00001452.ttl new file mode 100644 index 00000000..8ce68bab --- /dev/null +++ b/src/cco-iris/ont00001452.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001452 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Indian Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001453.ttl b/src/cco-iris/ont00001453.ttl new file mode 100644 index 00000000..d67b64f4 --- /dev/null +++ b/src/cco-iris/ont00001453.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000707 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001453 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Binary Degree Measurement Unit"@en ; + "Binary Radian"@en , + "Brad"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001454.ttl b/src/cco-iris/ont00001454.ttl new file mode 100644 index 00000000..eee5777f --- /dev/null +++ b/src/cco-iris/ont00001454.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001454 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+11"@en ; + rdfs:label "Lima Time Zone"@en ; + "L" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001455.ttl b/src/cco-iris/ont00001455.ttl new file mode 100644 index 00000000..92a53f33 --- /dev/null +++ b/src/cco-iris/ont00001455.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001455 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bolivia Boliviano"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001456.ttl b/src/cco-iris/ont00001456.ttl new file mode 100644 index 00000000..d668c847 --- /dev/null +++ b/src/cco-iris/ont00001456.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001456 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Mile Measurement Unit"@en ; + "mi^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001457.ttl b/src/cco-iris/ont00001457.ttl new file mode 100644 index 00000000..99a22e9f --- /dev/null +++ b/src/cco-iris/ont00001457.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001457 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-4"@en ; + rdfs:label "Quebec Time Zone"@en ; + "Q" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001458.ttl b/src/cco-iris/ont00001458.ttl new file mode 100644 index 00000000..1033d916 --- /dev/null +++ b/src/cco-iris/ont00001458.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001458 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Costa Rica Colon"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001459.ttl b/src/cco-iris/ont00001459.ttl new file mode 100644 index 00000000..270b7508 --- /dev/null +++ b/src/cco-iris/ont00001459.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001307 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001459 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound Per Second Measurement Unit"@en ; + "lb/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001460.ttl b/src/cco-iris/ont00001460.ttl new file mode 100644 index 00000000..72188c7d --- /dev/null +++ b/src/cco-iris/ont00001460.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001460 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mauritius Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001461.ttl b/src/cco-iris/ont00001461.ttl new file mode 100644 index 00000000..45e3c5d6 --- /dev/null +++ b/src/cco-iris/ont00001461.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001461 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "TDB is a linear scaling of Barycentric Coordinate Time (TCB) and is a relativistic coordinate time scale used in astronomy as a time standard that accounts for time dilation when calculating Orbits and Ephemerides of Astronomical Bodies and interplanetary Spacecraft in the Solar System. TDB is a successor of Ephemeris Time (ET) and is nearly equivalent to the time scale Teph used for DE405 planetary and lunar ephemerides generated by the Jet Propulsion Laboratory."@en ; + rdfs:label "Barycentric Dynamical Time"@en ; + "TDB" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001462.ttl b/src/cco-iris/ont00001462.ttl new file mode 100644 index 00000000..d3f5b787 --- /dev/null +++ b/src/cco-iris/ont00001462.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001462 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Twenty Foot Equivalent Unit"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001463.ttl b/src/cco-iris/ont00001463.ttl new file mode 100644 index 00000000..fcce6c47 --- /dev/null +++ b/src/cco-iris/ont00001463.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000140 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001463 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilomole Measurement Unit"@en ; + "kilomole"@en , + "kmol"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001464.ttl b/src/cco-iris/ont00001464.ttl new file mode 100644 index 00000000..9eab4e19 --- /dev/null +++ b/src/cco-iris/ont00001464.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001464 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Uzbekistan Sum"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001465.ttl b/src/cco-iris/ont00001465.ttl new file mode 100644 index 00000000..b6f61139 --- /dev/null +++ b/src/cco-iris/ont00001465.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001465 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Namibia Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001466.ttl b/src/cco-iris/ont00001466.ttl new file mode 100644 index 00000000..7c4fd056 --- /dev/null +++ b/src/cco-iris/ont00001466.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000959 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001466 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Revolutions Per Day Measurement Unit"@en ; + "r/day"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001467.ttl b/src/cco-iris/ont00001467.ttl new file mode 100644 index 00000000..73ab954e --- /dev/null +++ b/src/cco-iris/ont00001467.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001467 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-4"@en ; + "PRT"@en , + "Puerto Rico and US Virgin Islands Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001468.ttl b/src/cco-iris/ont00001468.ttl new file mode 100644 index 00000000..31864889 --- /dev/null +++ b/src/cco-iris/ont00001468.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001468 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+10"@en ; + "AET"@en , + "Australia Eastern Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001469.ttl b/src/cco-iris/ont00001469.ttl new file mode 100644 index 00000000..bc9a6350 --- /dev/null +++ b/src/cco-iris/ont00001469.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000969 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001469 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilometers Per Second Measurement Unit"@en ; + "km/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001470.ttl b/src/cco-iris/ont00001470.ttl new file mode 100644 index 00000000..a346ca1b --- /dev/null +++ b/src/cco-iris/ont00001470.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000959 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001470 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Megahertz Measurement Unit"@en ; + "MHz"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001471.ttl b/src/cco-iris/ont00001471.ttl new file mode 100644 index 00000000..3904e62a --- /dev/null +++ b/src/cco-iris/ont00001471.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001471 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Centimeter Measurement Unit"@en ; + "cm^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001472.ttl b/src/cco-iris/ont00001472.ttl new file mode 100644 index 00000000..af003583 --- /dev/null +++ b/src/cco-iris/ont00001472.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001472 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Millimeter Measurement Unit"@en ; + "mm^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001473.ttl b/src/cco-iris/ont00001473.ttl new file mode 100644 index 00000000..776fb78a --- /dev/null +++ b/src/cco-iris/ont00001473.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001473 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Euro"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001474.ttl b/src/cco-iris/ont00001474.ttl new file mode 100644 index 00000000..ab7749e9 --- /dev/null +++ b/src/cco-iris/ont00001474.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001090 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001474 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Atmosphere Measurement Unit"@en ; + "atm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001475.ttl b/src/cco-iris/ont00001475.ttl new file mode 100644 index 00000000..f2301fbd --- /dev/null +++ b/src/cco-iris/ont00001475.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000959 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001475 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilohertz Measurement Unit"@en ; + "kHz"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001476.ttl b/src/cco-iris/ont00001476.ttl new file mode 100644 index 00000000..c14cfed0 --- /dev/null +++ b/src/cco-iris/ont00001476.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001476 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+4"@en ; + "NET"@en , + "Near East Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001477.ttl b/src/cco-iris/ont00001477.ttl new file mode 100644 index 00000000..9ec98df5 --- /dev/null +++ b/src/cco-iris/ont00001477.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001477 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Measurement Unit"@en ; + "kilogram" ; + "kg" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001478.ttl b/src/cco-iris/ont00001478.ttl new file mode 100644 index 00000000..b16f8527 --- /dev/null +++ b/src/cco-iris/ont00001478.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001478 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Angstrom Measurement Unit"@en ; + "Angstrom"@en , + "Å"@en , + "Ångström"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001479.ttl b/src/cco-iris/ont00001479.ttl new file mode 100644 index 00000000..bf32edea --- /dev/null +++ b/src/cco-iris/ont00001479.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001479 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Angolan Kwanza"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001480.ttl b/src/cco-iris/ont00001480.ttl new file mode 100644 index 00000000..fa22d75b --- /dev/null +++ b/src/cco-iris/ont00001480.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001480 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+9"@en ; + rdfs:label "India Time Zone"@en ; + "I" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001481.ttl b/src/cco-iris/ont00001481.ttl new file mode 100644 index 00000000..d588c549 --- /dev/null +++ b/src/cco-iris/ont00001481.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001481 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Macao Pataca"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001482.ttl b/src/cco-iris/ont00001482.ttl new file mode 100644 index 00000000..90f729da --- /dev/null +++ b/src/cco-iris/ont00001482.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001482 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Algerian Dinar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001483.ttl b/src/cco-iris/ont00001483.ttl new file mode 100644 index 00000000..491cf2f9 --- /dev/null +++ b/src/cco-iris/ont00001483.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000140 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001483 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "One mole contains exactly 6.02214076×10^23 elementary entities."@en ; + rdfs:label "Mole Measurement Unit"@en ; + "mole" ; + "mol" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001484.ttl b/src/cco-iris/ont00001484.ttl new file mode 100644 index 00000000..431863c2 --- /dev/null +++ b/src/cco-iris/ont00001484.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001484 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bangladesh Taka"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001485.ttl b/src/cco-iris/ont00001485.ttl new file mode 100644 index 00000000..8bb9d8de --- /dev/null +++ b/src/cco-iris/ont00001485.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001485 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Surinamese Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001486.ttl b/src/cco-iris/ont00001486.ttl new file mode 100644 index 00000000..5b50ed2d --- /dev/null +++ b/src/cco-iris/ont00001486.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001486 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Kilometer Measurement Unit"@en ; + "km^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001487.ttl b/src/cco-iris/ont00001487.ttl new file mode 100644 index 00000000..c9104be9 --- /dev/null +++ b/src/cco-iris/ont00001487.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001487 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Peru Nuevo Sol"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001488.ttl b/src/cco-iris/ont00001488.ttl new file mode 100644 index 00000000..4f90fec7 --- /dev/null +++ b/src/cco-iris/ont00001488.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001488 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-7"@en ; + rdfs:label "Tango Time Zone"@en ; + "T" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001489.ttl b/src/cco-iris/ont00001489.ttl new file mode 100644 index 00000000..9b42adb5 --- /dev/null +++ b/src/cco-iris/ont00001489.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000707 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001489 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Radian Measurement Unit"@en ; + "radian" ; + "rad" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001490.ttl b/src/cco-iris/ont00001490.ttl new file mode 100644 index 00000000..923be267 --- /dev/null +++ b/src/cco-iris/ont00001490.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001490 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bulgarian Lev"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001491.ttl b/src/cco-iris/ont00001491.ttl new file mode 100644 index 00000000..cfac1f6d --- /dev/null +++ b/src/cco-iris/ont00001491.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000630 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001491 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Time 1 A"@en ; + "UT1A" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001492.ttl b/src/cco-iris/ont00001492.ttl new file mode 100644 index 00000000..7bad97fd --- /dev/null +++ b/src/cco-iris/ont00001492.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001492 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Lebanese Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001493.ttl b/src/cco-iris/ont00001493.ttl new file mode 100644 index 00000000..d96a4c31 --- /dev/null +++ b/src/cco-iris/ont00001493.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000497 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001493 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilonewton Measurement Unit"@en ; + "kN"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001494.ttl b/src/cco-iris/ont00001494.ttl new file mode 100644 index 00000000..7fa7c7f6 --- /dev/null +++ b/src/cco-iris/ont00001494.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001494 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Yard Measurement Unit"@en ; + "yrd"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001495.ttl b/src/cco-iris/ont00001495.ttl new file mode 100644 index 00000000..2e48e51a --- /dev/null +++ b/src/cco-iris/ont00001495.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000198 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001495 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sone Measurement Unit"@en ; + "sone"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001496.ttl b/src/cco-iris/ont00001496.ttl new file mode 100644 index 00000000..dde17144 --- /dev/null +++ b/src/cco-iris/ont00001496.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001496 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Meter Measurement Unit"@en ; + "m^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001497.ttl b/src/cco-iris/ont00001497.ttl new file mode 100644 index 00000000..7991948f --- /dev/null +++ b/src/cco-iris/ont00001497.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001497 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kuwaiti Dinar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001498.ttl b/src/cco-iris/ont00001498.ttl new file mode 100644 index 00000000..5a060c0b --- /dev/null +++ b/src/cco-iris/ont00001498.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001498 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Fiji Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001499.ttl b/src/cco-iris/ont00001499.ttl new file mode 100644 index 00000000..7d1a999a --- /dev/null +++ b/src/cco-iris/ont00001499.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001499 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kiloliter Measurement Unit"@en ; + "kL"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001500.ttl b/src/cco-iris/ont00001500.ttl new file mode 100644 index 00000000..5b04045a --- /dev/null +++ b/src/cco-iris/ont00001500.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001500 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+5"@en ; + rdfs:label "Echo Time Zone"@en ; + "E" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001501.ttl b/src/cco-iris/ont00001501.ttl new file mode 100644 index 00000000..daff4e66 --- /dev/null +++ b/src/cco-iris/ont00001501.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001501 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tanzania Shilling"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001502.ttl b/src/cco-iris/ont00001502.ttl new file mode 100644 index 00000000..8365de9d --- /dev/null +++ b/src/cco-iris/ont00001502.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/contributor + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000229 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001502 + rdf:type owl:NamedIndividual , + ; + "Donna Jones" , + "Olivia Hobai" ; + rdfs:label "Decibel Isotropic Measurement Unit"@en ; + "Decibels Over Isotropic" , + "Decibels Over Isotropic Antenna" , + "Decibels Relative to Isotrope" , + "Decibels Relative to Isotropic Radiator" , + "Decibels Relative to an Isotropic Reference Antenna" ; + "dBi" ; + "https://shopdelta.eu/dbi-power-gain-of-isotropic-antenna_l2_aid836.html"^^xsd:anyURI , + "https://www.techtarget.com/whatis/definition/decibels-relative-to-isotropic-radiator-dBi"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001503.ttl b/src/cco-iris/ont00001503.ttl new file mode 100644 index 00000000..0e83e1d2 --- /dev/null +++ b/src/cco-iris/ont00001503.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001503 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Hungary Forint"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001504.ttl b/src/cco-iris/ont00001504.ttl new file mode 100644 index 00000000..3af3486c --- /dev/null +++ b/src/cco-iris/ont00001504.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000659 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001504 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Newton Meter Measurement Unit"@en ; + "N-m" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001505.ttl b/src/cco-iris/ont00001505.ttl new file mode 100644 index 00000000..33db0943 --- /dev/null +++ b/src/cco-iris/ont00001505.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001505 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Uruguay Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001506.ttl b/src/cco-iris/ont00001506.ttl new file mode 100644 index 00000000..770a52cc --- /dev/null +++ b/src/cco-iris/ont00001506.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000630 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001506 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Time 1 F"@en ; + "UT1F" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001507.ttl b/src/cco-iris/ont00001507.ttl new file mode 100644 index 00000000..a5aaf207 --- /dev/null +++ b/src/cco-iris/ont00001507.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001507 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Lesotho Loti"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001508.ttl b/src/cco-iris/ont00001508.ttl new file mode 100644 index 00000000..03b9b96b --- /dev/null +++ b/src/cco-iris/ont00001508.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001508 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Brunei Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001509.ttl b/src/cco-iris/ont00001509.ttl new file mode 100644 index 00000000..abc9a7e3 --- /dev/null +++ b/src/cco-iris/ont00001509.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001509 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Belarussian Ruble"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001510.ttl b/src/cco-iris/ont00001510.ttl new file mode 100644 index 00000000..84ef34ea --- /dev/null +++ b/src/cco-iris/ont00001510.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001510 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tonga Pa anga"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001511.ttl b/src/cco-iris/ont00001511.ttl new file mode 100644 index 00000000..e29b03a9 --- /dev/null +++ b/src/cco-iris/ont00001511.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000969 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001511 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Meters Per Second Measurement Unit"@en ; + "m/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001512.ttl b/src/cco-iris/ont00001512.ttl new file mode 100644 index 00000000..ac2c02ef --- /dev/null +++ b/src/cco-iris/ont00001512.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001512 + rdf:type owl:NamedIndividual , + ; + rdfs:label "South Sudanese Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001513.ttl b/src/cco-iris/ont00001513.ttl new file mode 100644 index 00000000..58e8cafc --- /dev/null +++ b/src/cco-iris/ont00001513.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001513 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mexican Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001514.ttl b/src/cco-iris/ont00001514.ttl new file mode 100644 index 00000000..0237eb78 --- /dev/null +++ b/src/cco-iris/ont00001514.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001514 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Laos Kip"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001515.ttl b/src/cco-iris/ont00001515.ttl new file mode 100644 index 00000000..8ce5023d --- /dev/null +++ b/src/cco-iris/ont00001515.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001515 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Liberian Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001516.ttl b/src/cco-iris/ont00001516.ttl new file mode 100644 index 00000000..5a6d38e2 --- /dev/null +++ b/src/cco-iris/ont00001516.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001516 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-2"@en ; + rdfs:label "Oscar Time Zone"@en ; + "O" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001517.ttl b/src/cco-iris/ont00001517.ttl new file mode 100644 index 00000000..69d20808 --- /dev/null +++ b/src/cco-iris/ont00001517.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001517 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Nicaragua Cordoba Oro"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001518.ttl b/src/cco-iris/ont00001518.ttl new file mode 100644 index 00000000..6ff3b41e --- /dev/null +++ b/src/cco-iris/ont00001518.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001518 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Madagascar Malagasy Ariary"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001519.ttl b/src/cco-iris/ont00001519.ttl new file mode 100644 index 00000000..40cfdeb5 --- /dev/null +++ b/src/cco-iris/ont00001519.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001519 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Turkish Lira"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001520.ttl b/src/cco-iris/ont00001520.ttl new file mode 100644 index 00000000..0b88a293 --- /dev/null +++ b/src/cco-iris/ont00001520.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001520 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Zambia Kwacha"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001521.ttl b/src/cco-iris/ont00001521.ttl new file mode 100644 index 00000000..f498a35e --- /dev/null +++ b/src/cco-iris/ont00001521.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001521 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Philippine Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001522.ttl b/src/cco-iris/ont00001522.ttl new file mode 100644 index 00000000..d25085a2 --- /dev/null +++ b/src/cco-iris/ont00001522.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001522 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Foot Measurement Unit"@en ; + "ft^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001523.ttl b/src/cco-iris/ont00001523.ttl new file mode 100644 index 00000000..40f0dac8 --- /dev/null +++ b/src/cco-iris/ont00001523.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001523 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pint Measurement Unit"@en ; + "pt"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001524.ttl b/src/cco-iris/ont00001524.ttl new file mode 100644 index 00000000..21053317 --- /dev/null +++ b/src/cco-iris/ont00001524.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001524 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-11"@en ; + "MIT"@en , + "Midway Islands Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001525.ttl b/src/cco-iris/ont00001525.ttl new file mode 100644 index 00000000..ad642e4c --- /dev/null +++ b/src/cco-iris/ont00001525.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000497 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001525 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Newton Measurement Unit"@en ; + "newton" ; + "N" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001526.ttl b/src/cco-iris/ont00001526.ttl new file mode 100644 index 00000000..32a1bf36 --- /dev/null +++ b/src/cco-iris/ont00001526.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000969 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001526 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mach Measurement Unit"@en ; + "M"@en , + "Ma"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001527.ttl b/src/cco-iris/ont00001527.ttl new file mode 100644 index 00000000..f6d6c304 --- /dev/null +++ b/src/cco-iris/ont00001527.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001527 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+8"@en ; + rdfs:label "Hotel Time Zone"@en ; + "H" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001528.ttl b/src/cco-iris/ont00001528.ttl new file mode 100644 index 00000000..1aa5c4ba --- /dev/null +++ b/src/cco-iris/ont00001528.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000940 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001528 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Meter Per Second Measurement Unit"@en ; + "kg m/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001529.ttl b/src/cco-iris/ont00001529.ttl new file mode 100644 index 00000000..d420933e --- /dev/null +++ b/src/cco-iris/ont00001529.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001529 + rdf:type owl:NamedIndividual , + ; + rdfs:comment """\"TCG is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to precession, nutation, the Moon, and artificial satellites of the Earth. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the center of the Earth: that is, a clock that performs exactly the same movements as the Earth but is outside the Earth's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Earth.\" +From: (https://en.wikipedia.org/wiki/Geocentric_Coordinate_Time)"""@en ; + rdfs:label "Geocentric Coordinate Time"@en ; + "TCG" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001530.ttl b/src/cco-iris/ont00001530.ttl new file mode 100644 index 00000000..376ef5dc --- /dev/null +++ b/src/cco-iris/ont00001530.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000374 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001530 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Meter Per Second Measurement Unit"@en ; + "m^3/s" ; + "cumec" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001531.ttl b/src/cco-iris/ont00001531.ttl new file mode 100644 index 00000000..a64de734 --- /dev/null +++ b/src/cco-iris/ont00001531.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001531 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Botswana Pula"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001532.ttl b/src/cco-iris/ont00001532.ttl new file mode 100644 index 00000000..e3e388d5 --- /dev/null +++ b/src/cco-iris/ont00001532.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001532 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Egyptian Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001533.ttl b/src/cco-iris/ont00001533.ttl new file mode 100644 index 00000000..dbc82b12 --- /dev/null +++ b/src/cco-iris/ont00001533.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001357 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001533 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Hour Measurement Unit"@en ; + "hr"@en ; + "h" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001534.ttl b/src/cco-iris/ont00001534.ttl new file mode 100644 index 00000000..d386b9b8 --- /dev/null +++ b/src/cco-iris/ont00001534.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001534 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+7"@en ; + "VST"@en , + "Vietnam Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001535.ttl b/src/cco-iris/ont00001535.ttl new file mode 100644 index 00000000..18624dc2 --- /dev/null +++ b/src/cco-iris/ont00001535.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001535 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sudanese Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001536.ttl b/src/cco-iris/ont00001536.ttl new file mode 100644 index 00000000..d3fd3d2f --- /dev/null +++ b/src/cco-iris/ont00001536.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001357 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001536 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Second Measurement Unit"@en ; + "second" ; + "s" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001537.ttl b/src/cco-iris/ont00001537.ttl new file mode 100644 index 00000000..c6f44437 --- /dev/null +++ b/src/cco-iris/ont00001537.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000067 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000630 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001537 + rdf:type owl:NamedIndividual , + , + ; + rdfs:comment "UTC is a variant of Universal Time that is calculated by combining Universal Time 1 with International Atomic Time by occasionally adding leap seconds to TAI in order to maintain UTC within 0.9 seconds of UT1. The difference between UTC and UT1 is called DUT1 and always has a value between -0.9 seconds and +0.9 seconds. Coordinated Universal Time is the current basis for civil time and is the reference time for time zones, whose local times are defined based on an offset from UTC."@en ; + rdfs:label "Coordinated Universal Time"@en ; + "UTC" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001538.ttl b/src/cco-iris/ont00001538.ttl new file mode 100644 index 00000000..91979565 --- /dev/null +++ b/src/cco-iris/ont00001538.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000074 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001538 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Meters Per Second Per Second Measurement Unit"@en ; + "m/s/s"@en , + "m/s^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001539.ttl b/src/cco-iris/ont00001539.ttl new file mode 100644 index 00000000..22395930 --- /dev/null +++ b/src/cco-iris/ont00001539.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001539 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tajikistan Somoni"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001540.ttl b/src/cco-iris/ont00001540.ttl new file mode 100644 index 00000000..1c9d384f --- /dev/null +++ b/src/cco-iris/ont00001540.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001540 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Israel Shekel"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001541.ttl b/src/cco-iris/ont00001541.ttl new file mode 100644 index 00000000..8a32b130 --- /dev/null +++ b/src/cco-iris/ont00001541.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001541 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+12"@en ; + "NST"@en , + "New Zealand Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001542.ttl b/src/cco-iris/ont00001542.ttl new file mode 100644 index 00000000..d82b1636 --- /dev/null +++ b/src/cco-iris/ont00001542.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001542 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Paraguay Guarani"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001543.ttl b/src/cco-iris/ont00001543.ttl new file mode 100644 index 00000000..56e5e5c9 --- /dev/null +++ b/src/cco-iris/ont00001543.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001543 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Decimeter Measurement Unit"@en ; + "dm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001544.ttl b/src/cco-iris/ont00001544.ttl new file mode 100644 index 00000000..bf99b8aa --- /dev/null +++ b/src/cco-iris/ont00001544.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001544 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Short Ton Measurement Unit"@en ; + "Net Ton"@en , + "ton (US)"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001545.ttl b/src/cco-iris/ont00001545.ttl new file mode 100644 index 00000000..34328200 --- /dev/null +++ b/src/cco-iris/ont00001545.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001545 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Swaziland Lilangeni"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001546.ttl b/src/cco-iris/ont00001546.ttl new file mode 100644 index 00000000..9e87a68d --- /dev/null +++ b/src/cco-iris/ont00001546.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001546 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Democratic Republic Of Congo Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001547.ttl b/src/cco-iris/ont00001547.ttl new file mode 100644 index 00000000..0cce827d --- /dev/null +++ b/src/cco-iris/ont00001547.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001547 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Syrian Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001548.ttl b/src/cco-iris/ont00001548.ttl new file mode 100644 index 00000000..6a12c4e4 --- /dev/null +++ b/src/cco-iris/ont00001548.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000630 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001548 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "UT1R is a variant of Universal Time that is a smoothed version of UT1 by filtering out periodic variations due to tidal waves."@en ; + rdfs:label "Universal Time 1 R"@en ; + "UT1R" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001549.ttl b/src/cco-iris/ont00001549.ttl new file mode 100644 index 00000000..47fc86d9 --- /dev/null +++ b/src/cco-iris/ont00001549.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000497 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001549 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Dyne Measurement Unit"@en ; + "dyn"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001550.ttl b/src/cco-iris/ont00001550.ttl new file mode 100644 index 00000000..3f47d56f --- /dev/null +++ b/src/cco-iris/ont00001550.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000276 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001550 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "The Julian Calendar was proposed by Julius Caesar as a reform of the Roman Calendar, took effect on 1 January 46 BC, and was the predominant Calendar System in Europe until being largely replaced by the Gregorian Calendar."@en ; + rdfs:label "Julian Calendar"@en ; + "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years such that the average length of a Julian Year is 365.25 Days."@en ; + "https://en.wikipedia.org/w/index.php?title=Julian_calendar&oldid=1063127575"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001551.ttl b/src/cco-iris/ont00001551.ttl new file mode 100644 index 00000000..90bec1f9 --- /dev/null +++ b/src/cco-iris/ont00001551.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001551 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Foot Measurement Unit"@en ; + "ft^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001552.ttl b/src/cco-iris/ont00001552.ttl new file mode 100644 index 00000000..ca1397f5 --- /dev/null +++ b/src/cco-iris/ont00001552.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001552 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gram Measurement Unit"@en ; + "g"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001553.ttl b/src/cco-iris/ont00001553.ttl new file mode 100644 index 00000000..a085fe1a --- /dev/null +++ b/src/cco-iris/ont00001553.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001553 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+6"@en ; + "BST"@en , + "Bangladesh Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001554.ttl b/src/cco-iris/ont00001554.ttl new file mode 100644 index 00000000..54fa43ca --- /dev/null +++ b/src/cco-iris/ont00001554.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001554 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-10"@en ; + "HST"@en , + "Hawaii Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001555.ttl b/src/cco-iris/ont00001555.ttl new file mode 100644 index 00000000..4f5853a2 --- /dev/null +++ b/src/cco-iris/ont00001555.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000659 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001555 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound Foot Measurement Unit"@en ; + "lb ft" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001556.ttl b/src/cco-iris/ont00001556.ttl new file mode 100644 index 00000000..399c532d --- /dev/null +++ b/src/cco-iris/ont00001556.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001556 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Samoa Tala"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001557.ttl b/src/cco-iris/ont00001557.ttl new file mode 100644 index 00000000..cba841c5 --- /dev/null +++ b/src/cco-iris/ont00001557.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000527 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001557 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound Foot Second Square Measurement Unit"@en ; + "lb ft s^2" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001558.ttl b/src/cco-iris/ont00001558.ttl new file mode 100644 index 00000000..a0419564 --- /dev/null +++ b/src/cco-iris/ont00001558.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001558 + rdf:type owl:NamedIndividual , + ; + rdfs:label "New Zealand Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001559.ttl b/src/cco-iris/ont00001559.ttl new file mode 100644 index 00000000..98cb059e --- /dev/null +++ b/src/cco-iris/ont00001559.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001090 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001559 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pascal Measurement Unit"@en ; + "pascal" ; + "Pa" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001560.ttl b/src/cco-iris/ont00001560.ttl new file mode 100644 index 00000000..b8498c51 --- /dev/null +++ b/src/cco-iris/ont00001560.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000229 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000444 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000852 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001560 + rdf:type owl:NamedIndividual , + , + , + ; + rdfs:label "Calorie Measurement Unit"@en ; + "cal"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001561.ttl b/src/cco-iris/ont00001561.ttl new file mode 100644 index 00000000..8d444e76 --- /dev/null +++ b/src/cco-iris/ont00001561.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001561 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Uganda Shilling"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001562.ttl b/src/cco-iris/ont00001562.ttl new file mode 100644 index 00000000..0faa3749 --- /dev/null +++ b/src/cco-iris/ont00001562.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001562 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cambodian Riel"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001563.ttl b/src/cco-iris/ont00001563.ttl new file mode 100644 index 00000000..b196c64c --- /dev/null +++ b/src/cco-iris/ont00001563.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000229 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000444 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000852 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001563 + rdf:type owl:NamedIndividual , + , + , + ; + rdfs:label "Horsepower Measurement Unit"@en ; + "hp"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001564.ttl b/src/cco-iris/ont00001564.ttl new file mode 100644 index 00000000..e498a1e9 --- /dev/null +++ b/src/cco-iris/ont00001564.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001564 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Decigram Measurement Unit"@en ; + "dg"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001565.ttl b/src/cco-iris/ont00001565.ttl new file mode 100644 index 00000000..4d872044 --- /dev/null +++ b/src/cco-iris/ont00001565.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001565 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-5"@en ; + "EST"@en , + "Eastern Standard Time"@en , + "IET"@en , + "Indiana Eastern Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001566.ttl b/src/cco-iris/ont00001566.ttl new file mode 100644 index 00000000..de90fe55 --- /dev/null +++ b/src/cco-iris/ont00001566.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000229 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001566 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Watt Measurement Unit"@en ; + "watt" ; + "W" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001567.ttl b/src/cco-iris/ont00001567.ttl new file mode 100644 index 00000000..997fb75d --- /dev/null +++ b/src/cco-iris/ont00001567.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001567 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Ounce Measurement Unit"@en ; + "oz"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001568.ttl b/src/cco-iris/ont00001568.ttl new file mode 100644 index 00000000..861d0eb7 --- /dev/null +++ b/src/cco-iris/ont00001568.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000770 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001568 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gram Per Cubic Centimeter Measurement Unit"@en ; + "g/cm^3" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001569.ttl b/src/cco-iris/ont00001569.ttl new file mode 100644 index 00000000..4181406b --- /dev/null +++ b/src/cco-iris/ont00001569.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000770 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001569 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Per Cubic Meter Measurement Unit"@en ; + "kg/m^3" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001570.ttl b/src/cco-iris/ont00001570.ttl new file mode 100644 index 00000000..ea3ac2b2 --- /dev/null +++ b/src/cco-iris/ont00001570.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001570 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+2"@en ; + "EET"@en , + "Eastern European Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001571.ttl b/src/cco-iris/ont00001571.ttl new file mode 100644 index 00000000..1fdce0a8 --- /dev/null +++ b/src/cco-iris/ont00001571.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001357 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001571 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Day Measurement Unit"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001572.ttl b/src/cco-iris/ont00001572.ttl new file mode 100644 index 00000000..ed4ef9d0 --- /dev/null +++ b/src/cco-iris/ont00001572.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000844 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001572 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kelvin Measurement Unit"@en ; + "kelvin" ; + "K" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001573.ttl b/src/cco-iris/ont00001573.ttl new file mode 100644 index 00000000..8d0d9143 --- /dev/null +++ b/src/cco-iris/ont00001573.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001573 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Teaspoon Measurement Unit"@en ; + "t" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001574.ttl b/src/cco-iris/ont00001574.ttl new file mode 100644 index 00000000..3e4c9cc9 --- /dev/null +++ b/src/cco-iris/ont00001574.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000959 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001574 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Revolutions Per Minute Measurement Unit"@en ; + "r/min"@en , + "rpm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001575.ttl b/src/cco-iris/ont00001575.ttl new file mode 100644 index 00000000..f5cfd46e --- /dev/null +++ b/src/cco-iris/ont00001575.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001575 + rdf:type owl:NamedIndividual , + ; + rdfs:label "CFA Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001576.ttl b/src/cco-iris/ont00001576.ttl new file mode 100644 index 00000000..bf330315 --- /dev/null +++ b/src/cco-iris/ont00001576.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001576 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Milliliter Measurement Unit"@en ; + "mL"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001577.ttl b/src/cco-iris/ont00001577.ttl new file mode 100644 index 00000000..aa559de6 --- /dev/null +++ b/src/cco-iris/ont00001577.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001577 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Ukraine Hryvnia"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001578.ttl b/src/cco-iris/ont00001578.ttl new file mode 100644 index 00000000..9af19706 --- /dev/null +++ b/src/cco-iris/ont00001578.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001578 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Nepalese Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001579.ttl b/src/cco-iris/ont00001579.ttl new file mode 100644 index 00000000..a3f0bff9 --- /dev/null +++ b/src/cco-iris/ont00001579.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000374 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001579 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Liter Per Second Measurement Unit"@en ; + "l/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001580.ttl b/src/cco-iris/ont00001580.ttl new file mode 100644 index 00000000..41d52561 --- /dev/null +++ b/src/cco-iris/ont00001580.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001580 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-3"@en ; + rdfs:label "Papa Time Zone"@en ; + "P" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001581.ttl b/src/cco-iris/ont00001581.ttl new file mode 100644 index 00000000..d53d64b0 --- /dev/null +++ b/src/cco-iris/ont00001581.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001581 + rdf:type owl:NamedIndividual , + ; + rdfs:comment """The ITRS definition fulfills the following conditions: +1. It is geocentric, the center of mass being defined for the whole earth, including oceans and atmosphere. +2. The unit of length is the metre (SI). This scale is consistent with the TCG time coordinate for a geocentric local frame, in agreement with IAU and IUGG (1991) resolutions. This is obtained by appropriate relativistic modelling. +3. Its orientation was initially given by the BIH orientation at 1984.0. +4. The time evolution of the orientation is ensured by using a no-net-rotation condition with regards to horizontal tectonic motions over the whole earth. +From: (https://www.iers.org/IERS/EN/Science/ITRS/ITRS.html)"""@en ; + rdfs:label "International Terrestrial Reference System"@en ; + "ITRS" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001582.ttl b/src/cco-iris/ont00001582.ttl new file mode 100644 index 00000000..e501be3b --- /dev/null +++ b/src/cco-iris/ont00001582.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001582 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Transverse Mercator Reference System"@en ; + "UTM" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001583.ttl b/src/cco-iris/ont00001583.ttl new file mode 100644 index 00000000..2d2c0489 --- /dev/null +++ b/src/cco-iris/ont00001583.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000969 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001583 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Feet Per Second Measurement Unit"@en ; + "ft/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001584.ttl b/src/cco-iris/ont00001584.ttl new file mode 100644 index 00000000..85a5f722 --- /dev/null +++ b/src/cco-iris/ont00001584.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001584 + rdf:type owl:NamedIndividual , + ; + rdfs:label "World Geographic Reference System"@en ; + "WGRS" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001585.ttl b/src/cco-iris/ont00001585.ttl new file mode 100644 index 00000000..fe284648 --- /dev/null +++ b/src/cco-iris/ont00001585.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000940 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001585 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Newton Second Per Kilogram Measurement Unit"@en ; + "Ns/kg"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001586.ttl b/src/cco-iris/ont00001586.ttl new file mode 100644 index 00000000..7795f30b --- /dev/null +++ b/src/cco-iris/ont00001586.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001586 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Poland Zloty"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001587.ttl b/src/cco-iris/ont00001587.ttl new file mode 100644 index 00000000..3e983e49 --- /dev/null +++ b/src/cco-iris/ont00001587.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001090 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001587 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bayre Measurement Unit"@en ; + "ba"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001588.ttl b/src/cco-iris/ont00001588.ttl new file mode 100644 index 00000000..b4a4f023 --- /dev/null +++ b/src/cco-iris/ont00001588.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001588 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+9"@en ; + "JST"@en , + "Japan Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001589.ttl b/src/cco-iris/ont00001589.ttl new file mode 100644 index 00000000..0c2e3313 --- /dev/null +++ b/src/cco-iris/ont00001589.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001589 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Inch Measurement Unit"@en ; + "in^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001590.ttl b/src/cco-iris/ont00001590.ttl new file mode 100644 index 00000000..9ea57cb1 --- /dev/null +++ b/src/cco-iris/ont00001590.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001590 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "TAI is a time standard the values of which are generated by calculating the weighted average of the measurements of more than 400 atomic clocks and is based on the International System of Units (SI) definition of one second equals the time it takes a Cesium-133 atom at the ground state to oscillate exactly 9,192,631,770 times. TAI is extremely precise, but does not perfectly synchronize with Earth times, which is why TAI and UT1 are both used to determine UTC. TAI serves as the main realization of TT."@en ; + rdfs:label "International Atomic Time"@en ; + "TAI" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001591.ttl b/src/cco-iris/ont00001591.ttl new file mode 100644 index 00000000..b9accaf8 --- /dev/null +++ b/src/cco-iris/ont00001591.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001591 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-8"@en ; + rdfs:label "Uniform Time Zone"@en ; + "U" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001592.ttl b/src/cco-iris/ont00001592.ttl new file mode 100644 index 00000000..dc8538ce --- /dev/null +++ b/src/cco-iris/ont00001592.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001592 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kazakhstan Tenge"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001593.ttl b/src/cco-iris/ont00001593.ttl new file mode 100644 index 00000000..f87ed1d4 --- /dev/null +++ b/src/cco-iris/ont00001593.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001593 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Ethiopian Birr"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001594.ttl b/src/cco-iris/ont00001594.ttl new file mode 100644 index 00000000..4acd3464 --- /dev/null +++ b/src/cco-iris/ont00001594.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001594 + rdf:type owl:NamedIndividual , + ; + rdfs:label "North Korean Won"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001595.ttl b/src/cco-iris/ont00001595.ttl new file mode 100644 index 00000000..b5593bf4 --- /dev/null +++ b/src/cco-iris/ont00001595.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001595 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Swedish Krona"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001596.ttl b/src/cco-iris/ont00001596.ttl new file mode 100644 index 00000000..dc5b6201 --- /dev/null +++ b/src/cco-iris/ont00001596.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001307 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001596 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Per Second Measurement Unit"@en ; + "kg/s" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001597.ttl b/src/cco-iris/ont00001597.ttl new file mode 100644 index 00000000..56ee6672 --- /dev/null +++ b/src/cco-iris/ont00001597.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001597 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+11"@en ; + "SST"@en , + "Solomon Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001598.ttl b/src/cco-iris/ont00001598.ttl new file mode 100644 index 00000000..21e5c653 --- /dev/null +++ b/src/cco-iris/ont00001598.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001598 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilometer Measurement Unit"@en ; + "km"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001599.ttl b/src/cco-iris/ont00001599.ttl new file mode 100644 index 00000000..9bbf71a2 --- /dev/null +++ b/src/cco-iris/ont00001599.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001599 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+3:30"@en ; + "Iran Standard Time"@en , + "Iran Time"@en ; + "IRST" , + "IT" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001600.ttl b/src/cco-iris/ont00001600.ttl new file mode 100644 index 00000000..f9e82fe0 --- /dev/null +++ b/src/cco-iris/ont00001600.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001600 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Guinean Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001601.ttl b/src/cco-iris/ont00001601.ttl new file mode 100644 index 00000000..bc6b7e92 --- /dev/null +++ b/src/cco-iris/ont00001601.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001601 + rdf:type owl:NamedIndividual , + ; + rdfs:label "United Kingdom Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001602.ttl b/src/cco-iris/ont00001602.ttl new file mode 100644 index 00000000..22b542e1 --- /dev/null +++ b/src/cco-iris/ont00001602.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000969 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001602 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Miles Per Hour Measurement Unit"@en ; + "mi/h"@en , + "mph"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001603.ttl b/src/cco-iris/ont00001603.ttl new file mode 100644 index 00000000..2fb946e3 --- /dev/null +++ b/src/cco-iris/ont00001603.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001603 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-1"@en ; + rdfs:label "November Time Zone"@en ; + "N" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001604.ttl b/src/cco-iris/ont00001604.ttl new file mode 100644 index 00000000..4ad1decf --- /dev/null +++ b/src/cco-iris/ont00001604.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000707 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001604 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Degree Measurement Unit"@en ; + "°" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001605.ttl b/src/cco-iris/ont00001605.ttl new file mode 100644 index 00000000..fda87428 --- /dev/null +++ b/src/cco-iris/ont00001605.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001605 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Argentine Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001606.ttl b/src/cco-iris/ont00001606.ttl new file mode 100644 index 00000000..6bfc4427 --- /dev/null +++ b/src/cco-iris/ont00001606.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000844 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001606 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Degree Celsius Measurement Unit"@en ; + "degree Celsius" ; + "°C" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001607.ttl b/src/cco-iris/ont00001607.ttl new file mode 100644 index 00000000..649862a9 --- /dev/null +++ b/src/cco-iris/ont00001607.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001607 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-9"@en ; + rdfs:label "Victor Time Zone"@en ; + "V" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001608.ttl b/src/cco-iris/ont00001608.ttl new file mode 100644 index 00000000..b6cbda12 --- /dev/null +++ b/src/cco-iris/ont00001608.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000140 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001608 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound-Mole Measurement Unit"@en ; + "lb-mol"@en , + "lbmol"@en , + "pound-mole"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001609.ttl b/src/cco-iris/ont00001609.ttl new file mode 100644 index 00000000..58376d51 --- /dev/null +++ b/src/cco-iris/ont00001609.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000707 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001609 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gradian Measurement Unit"@en ; + "Gon"@en , + "Grad"@en , + "Grade"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001610.ttl b/src/cco-iris/ont00001610.ttl new file mode 100644 index 00000000..ba8e7396 --- /dev/null +++ b/src/cco-iris/ont00001610.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001610 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Thai Baht"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001611.ttl b/src/cco-iris/ont00001611.ttl new file mode 100644 index 00000000..2decfaf8 --- /dev/null +++ b/src/cco-iris/ont00001611.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001611 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gallon Measurement Unit"@en ; + "gal"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001612.ttl b/src/cco-iris/ont00001612.ttl new file mode 100644 index 00000000..c69f7610 --- /dev/null +++ b/src/cco-iris/ont00001612.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001090 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001612 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bar Measurement Unit"@en ; + "bar"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001613.ttl b/src/cco-iris/ont00001613.ttl new file mode 100644 index 00000000..f9e90af4 --- /dev/null +++ b/src/cco-iris/ont00001613.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001004 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001613 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilovolt Ampere Measurement Unit"@en ; + "kVA"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001614.ttl b/src/cco-iris/ont00001614.ttl new file mode 100644 index 00000000..d63e9dea --- /dev/null +++ b/src/cco-iris/ont00001614.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001614 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Moldovan Leu"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001615.ttl b/src/cco-iris/ont00001615.ttl new file mode 100644 index 00000000..f4e555be --- /dev/null +++ b/src/cco-iris/ont00001615.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001615 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-7"@en ; + "MST"@en , + "Mountain Standard Time"@en , + "PNT"@en , + "Phoenix Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001616.ttl b/src/cco-iris/ont00001616.ttl new file mode 100644 index 00000000..fd317aa2 --- /dev/null +++ b/src/cco-iris/ont00001616.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001616 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gambian Dalasi"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001617.ttl b/src/cco-iris/ont00001617.ttl new file mode 100644 index 00000000..530e0c8e --- /dev/null +++ b/src/cco-iris/ont00001617.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001617 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Nigeria Naira"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001618.ttl b/src/cco-iris/ont00001618.ttl new file mode 100644 index 00000000..caf7a0a4 --- /dev/null +++ b/src/cco-iris/ont00001618.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001618 + rdf:type owl:NamedIndividual , + ; + rdfs:label "United States Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001619.ttl b/src/cco-iris/ont00001619.ttl new file mode 100644 index 00000000..8b13e117 --- /dev/null +++ b/src/cco-iris/ont00001619.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001619 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Solomon Island Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001620.ttl b/src/cco-iris/ont00001620.ttl new file mode 100644 index 00000000..e11997da --- /dev/null +++ b/src/cco-iris/ont00001620.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001620 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Macedonian Denar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001621.ttl b/src/cco-iris/ont00001621.ttl new file mode 100644 index 00000000..2ed302f1 --- /dev/null +++ b/src/cco-iris/ont00001621.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001621 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pakistani Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001622.ttl b/src/cco-iris/ont00001622.ttl new file mode 100644 index 00000000..1e3ba959 --- /dev/null +++ b/src/cco-iris/ont00001622.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001622 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Armenian Dram"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001623.ttl b/src/cco-iris/ont00001623.ttl new file mode 100644 index 00000000..0274e121 --- /dev/null +++ b/src/cco-iris/ont00001623.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001623 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Romanian Leu"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001624.ttl b/src/cco-iris/ont00001624.ttl new file mode 100644 index 00000000..3101d603 --- /dev/null +++ b/src/cco-iris/ont00001624.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001624 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+7"@en ; + rdfs:label "Golf Time Zone"@en ; + "G" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001625.ttl b/src/cco-iris/ont00001625.ttl new file mode 100644 index 00000000..53375aac --- /dev/null +++ b/src/cco-iris/ont00001625.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000630 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001625 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "UT0 is a variant of Universal Time that is measured by observing the diurnal motion of stars or extragalactic radio sources at a specific location on Earth. It does not take into consideration distorting factors, in particular polar motion, such that its value will differ based on the location it is measured at."@en ; + rdfs:label "Universal Time 0"@en ; + "UT0" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001626.ttl b/src/cco-iris/ont00001626.ttl new file mode 100644 index 00000000..feef5ba5 --- /dev/null +++ b/src/cco-iris/ont00001626.ttl @@ -0,0 +1,57 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000263 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001626 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Twelve-Hour Clock Time System"@en ; + "12-Hour Clock"@en , + "12-Hour Clock Time System"@en , + "Twelve Hour Clock"@en , + "Twelve Hour Clock Time System"@en , + "Twelve-Hour Clock"@en ; + "A Clock Time System for keeping the Time of Day in which the Day runs from midnight to midnight and is divided into two intervals of 12 Hours each, where: the first interval begins at midnight, ends at noon, and is indicated by the suffix 'a.m.'; the second interval begins at noon, ends at midnight, and is indicated by the suffix 'p.m.'; and the midnight and noon Hours are numbered 12 with subsequent Hours numbered 1-11."@en ; + "https://en.wikipedia.org/w/index.php?title=12-hour_clock&oldid=1057602523"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001627.ttl b/src/cco-iris/ont00001627.ttl new file mode 100644 index 00000000..d8b74885 --- /dev/null +++ b/src/cco-iris/ont00001627.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001627 + rdf:type owl:NamedIndividual , + ; + rdfs:label "HongKong Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001628.ttl b/src/cco-iris/ont00001628.ttl new file mode 100644 index 00000000..5cac458a --- /dev/null +++ b/src/cco-iris/ont00001628.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001628 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-12"@en , + "Yankee Time Zone is the same local time as Mike Time Zone, but is 1 Day (i.e. 24 Hours) behind Mike Time Zone as they are on opposite sides of the International Date Line."@en ; + rdfs:label "Yankee Time Zone"@en ; + "Y" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001629.ttl b/src/cco-iris/ont00001629.ttl new file mode 100644 index 00000000..5a93a5e5 --- /dev/null +++ b/src/cco-iris/ont00001629.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001629 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Nautical Mile Measurement Unit"@en ; + "M"@en , + "NM"@en , + "nmi"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001630.ttl b/src/cco-iris/ont00001630.ttl new file mode 100644 index 00000000..c8c935b8 --- /dev/null +++ b/src/cco-iris/ont00001630.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001630 + rdf:type owl:NamedIndividual , + ; + rdfs:comment """\"WGS 84 is an Earth-centered, Earth-fixed terrestrial reference system and geodetic datum. WGS 84 is based on a consistent set of constants and model parameters that describe the Earth's size, shape, and gravity and geomagnetic fields. WGS 84 is the standard U.S. Department of Defense definition of a global reference system for geospatial information and is the reference system for the Global Positioning System (GPS). It is compatible with the International Terrestrial Reference System (ITRS).\" +From: (http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf)"""@en ; + rdfs:label "World Geodetic System 1984"@en ; + "WGS 84" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001631.ttl b/src/cco-iris/ont00001631.ttl new file mode 100644 index 00000000..86713699 --- /dev/null +++ b/src/cco-iris/ont00001631.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001631 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Seychelles Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001632.ttl b/src/cco-iris/ont00001632.ttl new file mode 100644 index 00000000..275bb826 --- /dev/null +++ b/src/cco-iris/ont00001632.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001632 + rdf:type owl:NamedIndividual , + ; + rdfs:label "South Korean Won"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001633.ttl b/src/cco-iris/ont00001633.ttl new file mode 100644 index 00000000..6f2e5d33 --- /dev/null +++ b/src/cco-iris/ont00001633.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001633 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Vanuatu Vatu"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001634.ttl b/src/cco-iris/ont00001634.ttl new file mode 100644 index 00000000..a4a1afc5 --- /dev/null +++ b/src/cco-iris/ont00001634.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001634 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-1"@en ; + "CAT"@en , + "Central African Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001635.ttl b/src/cco-iris/ont00001635.ttl new file mode 100644 index 00000000..de840575 --- /dev/null +++ b/src/cco-iris/ont00001635.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001635 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bosnia And Herzegovina Convertible Mark"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001636.ttl b/src/cco-iris/ont00001636.ttl new file mode 100644 index 00000000..88111388 --- /dev/null +++ b/src/cco-iris/ont00001636.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000198 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001636 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Phon Measurement Unit"@en ; + "phon"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001637.ttl b/src/cco-iris/ont00001637.ttl new file mode 100644 index 00000000..c21bdecd --- /dev/null +++ b/src/cco-iris/ont00001637.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001637 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Nanometer Measurement Unit"@en ; + "Nanometre"@en , + "nm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001638.ttl b/src/cco-iris/ont00001638.ttl new file mode 100644 index 00000000..d5c21a05 --- /dev/null +++ b/src/cco-iris/ont00001638.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001638 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Comoros Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001639.ttl b/src/cco-iris/ont00001639.ttl new file mode 100644 index 00000000..574eef1d --- /dev/null +++ b/src/cco-iris/ont00001639.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001639 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Indonesia Rupiah"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001640.ttl b/src/cco-iris/ont00001640.ttl new file mode 100644 index 00000000..0f84c74e --- /dev/null +++ b/src/cco-iris/ont00001640.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001640 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Myanmar Kyat"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001641.ttl b/src/cco-iris/ont00001641.ttl new file mode 100644 index 00000000..8ced1af1 --- /dev/null +++ b/src/cco-iris/ont00001641.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000527 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001641 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Meter Square Measurement Unit"@en ; + "kg-m^2" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001642.ttl b/src/cco-iris/ont00001642.ttl new file mode 100644 index 00000000..54cb224b --- /dev/null +++ b/src/cco-iris/ont00001642.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001642 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Millimeter Measurement Unit"@en ; + "mm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001643.ttl b/src/cco-iris/ont00001643.ttl new file mode 100644 index 00000000..927a960b --- /dev/null +++ b/src/cco-iris/ont00001643.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001090 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001643 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Millibar Measurement Unit"@en ; + "mb"@en , + "mbar"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001644.ttl b/src/cco-iris/ont00001644.ttl new file mode 100644 index 00000000..c2269a40 --- /dev/null +++ b/src/cco-iris/ont00001644.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000374 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001644 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Feet Per Second Measurement Unit"@en ; + "ft^3/s"@en ; + "cusec" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001645.ttl b/src/cco-iris/ont00001645.ttl new file mode 100644 index 00000000..87ac4afc --- /dev/null +++ b/src/cco-iris/ont00001645.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001645 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Inch Measurement Unit"@en ; + "in^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001646.ttl b/src/cco-iris/ont00001646.ttl new file mode 100644 index 00000000..b76a0ed1 --- /dev/null +++ b/src/cco-iris/ont00001646.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000969 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001646 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Knot Measurement Unit"@en ; + "kn"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001647.ttl b/src/cco-iris/ont00001647.ttl new file mode 100644 index 00000000..88871c45 --- /dev/null +++ b/src/cco-iris/ont00001647.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000074 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001647 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Feet Per Second Per Second Measurement Unit"@en ; + "ft/s/s"@en , + "ft/s^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001648.ttl b/src/cco-iris/ont00001648.ttl new file mode 100644 index 00000000..032ccd3f --- /dev/null +++ b/src/cco-iris/ont00001648.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001351 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001648 + rdf:type owl:NamedIndividual , + , + ; + rdfs:label "Earth-Centered Earth-Fixed Coordinate System"@en ; + "Conventional Terrestrial Coordinate System"@en , + "ECEF"@en , + "ECR"@en , + "Earth Centered Earth Fixed"@en , + "Earth Centered Rotational Coordinate System"@en , + "Earth-Centered Earth-Fixed"@en , + "Earth-Centered, Earth-Fixed"@en ; + "A Geospatial and Cartesian Coordinate System that identifies positions using an x-axis, y-axis, and z-axis coordinate where the zero point is the center of the Earth, the z-Axis extends toward the North Pole but does not always coincide exactly with the Earth's Axis of Rotation, the x-Axis extends through the intersection of the Prime Meridian and the Equator, the y-Axis completes the right-handed system, and all three axes are fixed to the Earth such that they rotate along with the Earth."@en ; + "https://en.wikipedia.org/w/index.php?title=Earth-centered,_Earth-fixed_coordinate_system&oldid=1062678600"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001649.ttl b/src/cco-iris/ont00001649.ttl new file mode 100644 index 00000000..a3c676e2 --- /dev/null +++ b/src/cco-iris/ont00001649.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001649 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mongolia Tugrik"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001650.ttl b/src/cco-iris/ont00001650.ttl new file mode 100644 index 00000000..62f0955f --- /dev/null +++ b/src/cco-iris/ont00001650.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001650 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tunisian Dinar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001651.ttl b/src/cco-iris/ont00001651.ttl new file mode 100644 index 00000000..f1c43a36 --- /dev/null +++ b/src/cco-iris/ont00001651.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001307 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001651 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gram Per Second Measurement Unit"@en ; + "g/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001652.ttl b/src/cco-iris/ont00001652.ttl new file mode 100644 index 00000000..a48fcb42 --- /dev/null +++ b/src/cco-iris/ont00001652.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001652 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Russian Rouble"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001653.ttl b/src/cco-iris/ont00001653.ttl new file mode 100644 index 00000000..44a7923e --- /dev/null +++ b/src/cco-iris/ont00001653.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000229 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000444 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000852 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001653 + rdf:type owl:NamedIndividual , + , + , + ; + rdfs:label "Joule Measurement Unit"@en ; + "joule" ; + "J" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001654.ttl b/src/cco-iris/ont00001654.ttl new file mode 100644 index 00000000..03d8f99b --- /dev/null +++ b/src/cco-iris/ont00001654.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001654 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Iranian Rial"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001655.ttl b/src/cco-iris/ont00001655.ttl new file mode 100644 index 00000000..a4a34608 --- /dev/null +++ b/src/cco-iris/ont00001655.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001655 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cape Verde Escudo"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001656.ttl b/src/cco-iris/ont00001656.ttl new file mode 100644 index 00000000..562b701a --- /dev/null +++ b/src/cco-iris/ont00001656.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001345 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001656 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Newton Second Measurement Unit"@en ; + "N s"@en , + "Newton second"@en , + "Ns"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001657.ttl b/src/cco-iris/ont00001657.ttl new file mode 100644 index 00000000..d7ff955b --- /dev/null +++ b/src/cco-iris/ont00001657.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001657 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Trinidad and Tobago Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001658.ttl b/src/cco-iris/ont00001658.ttl new file mode 100644 index 00000000..806d116c --- /dev/null +++ b/src/cco-iris/ont00001658.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001658 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Teph (the 'eph' is written as subscript) is an ephemeris time argument developed and calculated at the Jet Propulsion Laboratory (JPL) and implemented in a series of numerically integrated Development Ephemerides (DE), including the currently used DE405. Teph is characterized as a relativistic coordinate time that is nearly equivalent to the IAU's definition of TCB, though Teph is not currently an IAU time standard. Teph is used by the JPL to generate the ephemerides it publishes to support spacecraft navigation and astronomy."@en ; + rdfs:label "Jet Propulsion Laboratory Ephemeris Time Argument"@en ; + "JPL Ephemeris Time"@en ; + "Teph" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001659.ttl b/src/cco-iris/ont00001659.ttl new file mode 100644 index 00000000..055843bd --- /dev/null +++ b/src/cco-iris/ont00001659.ttl @@ -0,0 +1,46 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000707 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001659 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Turn Measurement Unit"@en ; + "Cycle"@en , + "Full Circle"@en , + "Revolution"@en , + "Rotation"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001660.ttl b/src/cco-iris/ont00001660.ttl new file mode 100644 index 00000000..a0a58d2a --- /dev/null +++ b/src/cco-iris/ont00001660.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001660 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "This global main field model provides magnetic field values for any location on Earth, e.g. for navigational purposes (declination) or as a standard for core field subtraction for aeromagnetic surveys. An updated version is adopted by International Association of Geomagnetism and Aeronomy (IAGA) every 5 years)."@en ; + rdfs:label "International Geomagnetic Reference Field"@en ; + "Alken, P., Thébault, E., Beggan, C.D. et al. International Geomagnetic Reference Field: the thirteenth generation. Earth Planets Space 73, 49 (2021). https://doi.org/10.1186/s40623-020-01288-x , https://www.iaga-aiga.org/" . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001661.ttl b/src/cco-iris/ont00001661.ttl new file mode 100644 index 00000000..c7528f5e --- /dev/null +++ b/src/cco-iris/ont00001661.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001661 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+8"@en ; + "CTT"@en , + "China Taiwan Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001662.ttl b/src/cco-iris/ont00001662.ttl new file mode 100644 index 00000000..dee73f86 --- /dev/null +++ b/src/cco-iris/ont00001662.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001662 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mozambique Metical"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001663.ttl b/src/cco-iris/ont00001663.ttl new file mode 100644 index 00000000..98650e7e --- /dev/null +++ b/src/cco-iris/ont00001663.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001663 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Meter Measurement Unit"@en ; + "m^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001664.ttl b/src/cco-iris/ont00001664.ttl new file mode 100644 index 00000000..6a38e298 --- /dev/null +++ b/src/cco-iris/ont00001664.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000198 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001664 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Decibel Measurement Unit"@en ; + "dB" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001665.ttl b/src/cco-iris/ont00001665.ttl new file mode 100644 index 00000000..a23f1209 --- /dev/null +++ b/src/cco-iris/ont00001665.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001665 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Georgian Lari"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001666.ttl b/src/cco-iris/ont00001666.ttl new file mode 100644 index 00000000..210e5505 --- /dev/null +++ b/src/cco-iris/ont00001666.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001666 + rdf:type owl:NamedIndividual , + ; + rdfs:comment """\"Barycentric Coordinate Time (TCB, from the French Temps-coordonnée barycentrique) is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to orbits of planets, asteroids, comets, and interplanetary spacecraft in the Solar system. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the barycenter of the Solar system: that is, a clock that performs exactly the same movements as the Solar system but is outside the system's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Sun and the rest of the system.\" +From: (https://en.wikipedia.org/wiki/Barycentric_Coordinate_Time)"""@en ; + rdfs:label "Barycentric Coordinate Time"@en ; + "TCB" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001667.ttl b/src/cco-iris/ont00001667.ttl new file mode 100644 index 00000000..bf5cac5b --- /dev/null +++ b/src/cco-iris/ont00001667.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001357 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001667 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Minute Measurement Unit"@en ; + "min" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001668.ttl b/src/cco-iris/ont00001668.ttl new file mode 100644 index 00000000..0a8b2bd7 --- /dev/null +++ b/src/cco-iris/ont00001668.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001668 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sierra Leone Leone"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001669.ttl b/src/cco-iris/ont00001669.ttl new file mode 100644 index 00000000..26385a74 --- /dev/null +++ b/src/cco-iris/ont00001669.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000959 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001669 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gigahertz Measurement Unit"@en ; + "GHz"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001670.ttl b/src/cco-iris/ont00001670.ttl new file mode 100644 index 00000000..bbed7dca --- /dev/null +++ b/src/cco-iris/ont00001670.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001670 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Malaysia Ringgit"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001671.ttl b/src/cco-iris/ont00001671.ttl new file mode 100644 index 00000000..2771c923 --- /dev/null +++ b/src/cco-iris/ont00001671.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001671 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Azerbaijan Manat"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001672.ttl b/src/cco-iris/ont00001672.ttl new file mode 100644 index 00000000..8fb93e86 --- /dev/null +++ b/src/cco-iris/ont00001672.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001672 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Decimeter Measurement Unit"@en ; + "dm^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001673.ttl b/src/cco-iris/ont00001673.ttl new file mode 100644 index 00000000..9c61e4d3 --- /dev/null +++ b/src/cco-iris/ont00001673.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001673 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Japanese Yen"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001674.ttl b/src/cco-iris/ont00001674.ttl new file mode 100644 index 00000000..61d606df --- /dev/null +++ b/src/cco-iris/ont00001674.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000276 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001674 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "The Gregorian Calendar was instituted by Pope Gregory XIII via papal bull on 24 February 1582 as a reform of the Julian Calendar to stop the drift of the calendar with respect to the equinoxes and solstices. The Gregorian Calendar is currently the most widely used civil Calendar System in the world and is 13 days ahead of the Julian Calendar Date."@en ; + rdfs:label "Gregorian Calendar"@en ; + "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years except Years that are evenly divisible by 100 but not 400 such that there are 97 leap Years every 400 Years and the average length of a Gregorian Year is 365.2425 Days (365 Days 5 Hours 49 Minutes 12 Seconds)."@en ; + "https://en.wikipedia.org/w/index.php?title=Gregorian_calendar&oldid=1062360692"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001675.ttl b/src/cco-iris/ont00001675.ttl new file mode 100644 index 00000000..14e8699c --- /dev/null +++ b/src/cco-iris/ont00001675.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000940 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001675 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Slug Foot Per Second Measurement Unit"@en ; + "slug ft/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001676.ttl b/src/cco-iris/ont00001676.ttl new file mode 100644 index 00000000..bcd14620 --- /dev/null +++ b/src/cco-iris/ont00001676.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001676 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Metric Ton Measurement Unit"@en ; + "tonne"@en ; + "t" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001677.ttl b/src/cco-iris/ont00001677.ttl new file mode 100644 index 00000000..09062ba6 --- /dev/null +++ b/src/cco-iris/ont00001677.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001677 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Inch Measurement Unit"@en ; + "in"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001678.ttl b/src/cco-iris/ont00001678.ttl new file mode 100644 index 00000000..39a2bac5 --- /dev/null +++ b/src/cco-iris/ont00001678.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001678 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Decimeter Measurement Unit"@en ; + "dm^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001679.ttl b/src/cco-iris/ont00001679.ttl new file mode 100644 index 00000000..6509cc54 --- /dev/null +++ b/src/cco-iris/ont00001679.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001679 + rdf:type owl:NamedIndividual , + ; + rdfs:label "St Helena Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001680.ttl b/src/cco-iris/ont00001680.ttl new file mode 100644 index 00000000..74d65a13 --- /dev/null +++ b/src/cco-iris/ont00001680.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000074 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001680 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Miles Per Second Per Second Measurement Unit"@en ; + "mi/s/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001681.ttl b/src/cco-iris/ont00001681.ttl new file mode 100644 index 00000000..50d0177c --- /dev/null +++ b/src/cco-iris/ont00001681.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000374 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001681 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gallon Per Minute Measurement Unit"@en ; + "gal/min"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001682.ttl b/src/cco-iris/ont00001682.ttl new file mode 100644 index 00000000..e0c8f651 --- /dev/null +++ b/src/cco-iris/ont00001682.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000497 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001682 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilopond Measurement Unit"@en ; + "Kilogram Force Measurement Unit"@en , + "Kilogram-Force"@en , + "kgf"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001683.ttl b/src/cco-iris/ont00001683.ttl new file mode 100644 index 00000000..30d978b5 --- /dev/null +++ b/src/cco-iris/ont00001683.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001683 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Meter Measurement Unit"@en ; + "meter" ; + "m" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001684.ttl b/src/cco-iris/ont00001684.ttl new file mode 100644 index 00000000..dd0e2787 --- /dev/null +++ b/src/cco-iris/ont00001684.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001684 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Burundi Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001685.ttl b/src/cco-iris/ont00001685.ttl new file mode 100644 index 00000000..f9b85039 --- /dev/null +++ b/src/cco-iris/ont00001685.ttl @@ -0,0 +1,51 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000707 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001685 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Second of Arc Measurement Unit"@en ; + "Arcsecond"@en , + "arcsec"@en , + "as"@en , + "asec"@en ; + "\"" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001686.ttl b/src/cco-iris/ont00001686.ttl new file mode 100644 index 00000000..f897a7ab --- /dev/null +++ b/src/cco-iris/ont00001686.ttl @@ -0,0 +1,48 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000374 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001686 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Standard Cubic Centimeter Per Minute Measurement Unit"@en ; + "cm^3/min"@en ; + "sccm" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001687.ttl b/src/cco-iris/ont00001687.ttl new file mode 100644 index 00000000..afcc4af7 --- /dev/null +++ b/src/cco-iris/ont00001687.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001317 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001687 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Yard Measurement Unit"@en ; + "yrd^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001688.ttl b/src/cco-iris/ont00001688.ttl new file mode 100644 index 00000000..34207267 --- /dev/null +++ b/src/cco-iris/ont00001688.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001688 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sao Tome Principe Dobra"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001689.ttl b/src/cco-iris/ont00001689.ttl new file mode 100644 index 00000000..881363b7 --- /dev/null +++ b/src/cco-iris/ont00001689.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000229 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000444 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000852 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001689 + rdf:type owl:NamedIndividual , + , + , + ; + rdfs:label "British Thermal Unit Measurement Unit"@en ; + "BTU"@en , + "Btu"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001690.ttl b/src/cco-iris/ont00001690.ttl new file mode 100644 index 00000000..2c2a917c --- /dev/null +++ b/src/cco-iris/ont00001690.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001690 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Turkmenistan Manat"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001691.ttl b/src/cco-iris/ont00001691.ttl new file mode 100644 index 00000000..5c3a632b --- /dev/null +++ b/src/cco-iris/ont00001691.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001691 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-6"@en ; + "CST"@en , + "Central Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001692.ttl b/src/cco-iris/ont00001692.ttl new file mode 100644 index 00000000..72435c58 --- /dev/null +++ b/src/cco-iris/ont00001692.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001328 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001692 + rdf:type owl:NamedIndividual , + ; + rdfs:comment """Unix Time is a Temporal Reference System for describing a point in time, defined as the number of seconds that have elapsed since 00:00:00 Coordinated Universal Time (UTC) Thursday, 1 January 1970 minus the number of leap seconds that have taken place since then. +(See: https://en.wikipedia.org/wiki/Unix_time)"""@en ; + rdfs:label "Unix Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001693.ttl b/src/cco-iris/ont00001693.ttl new file mode 100644 index 00000000..c25d2f26 --- /dev/null +++ b/src/cco-iris/ont00001693.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001693 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+0"@en ; + rdfs:label "Zulu Time Zone"@en ; + "Z" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001694.ttl b/src/cco-iris/ont00001694.ttl new file mode 100644 index 00000000..d72eb690 --- /dev/null +++ b/src/cco-iris/ont00001694.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001090 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001694 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pounds Per Square Inch Measurement Unit"@en ; + "psi"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001695.ttl b/src/cco-iris/ont00001695.ttl new file mode 100644 index 00000000..b5706d1c --- /dev/null +++ b/src/cco-iris/ont00001695.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000630 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001695 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "UT2 is a variant of Universal Time that smooths UT1 by accounting for both polar motion and variations in Earth's rotation due to seasonal factors, such as changes in vegetation and water or snow distribution."@en ; + rdfs:label "Universal Time 2"@en ; + "UT2" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001696.ttl b/src/cco-iris/ont00001696.ttl new file mode 100644 index 00000000..de0d04e3 --- /dev/null +++ b/src/cco-iris/ont00001696.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001696 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Centigram Measurement Unit"@en ; + "cg"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001697.ttl b/src/cco-iris/ont00001697.ttl new file mode 100644 index 00000000..809c07ff --- /dev/null +++ b/src/cco-iris/ont00001697.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000074 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001697 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilometers Per Second Per Second Measurement Unit"@en ; + "km/s/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001698.ttl b/src/cco-iris/ont00001698.ttl new file mode 100644 index 00000000..ed366247 --- /dev/null +++ b/src/cco-iris/ont00001698.ttl @@ -0,0 +1,47 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001698 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Long Ton Measurement Unit"@en ; + "Displacement Ton"@en , + "Gross Ton"@en , + "Imperial Ton"@en , + "Weight Ton"@en , + "ton (UK)"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001699.ttl b/src/cco-iris/ont00001699.ttl new file mode 100644 index 00000000..84f0f38e --- /dev/null +++ b/src/cco-iris/ont00001699.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001699 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Morocco Dirham"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001700.ttl b/src/cco-iris/ont00001700.ttl new file mode 100644 index 00000000..9ddd5fbf --- /dev/null +++ b/src/cco-iris/ont00001700.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001700 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Juliet time is used as an indexical to refer to local time without otherwise specifying the time zone."@en ; + rdfs:label "Juliet Time Zone"@en ; + "J" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001701.ttl b/src/cco-iris/ont00001701.ttl new file mode 100644 index 00000000..5a051697 --- /dev/null +++ b/src/cco-iris/ont00001701.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001701 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-3"@en ; + "AGT"@en , + "Argentina Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001702.ttl b/src/cco-iris/ont00001702.ttl new file mode 100644 index 00000000..f5bd86b7 --- /dev/null +++ b/src/cco-iris/ont00001702.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001702 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+5:30"@en ; + "Indian Standard Time"@en , + "Sri Lanka Standard Time"@en ; + "IST" , + "SLST" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001703.ttl b/src/cco-iris/ont00001703.ttl new file mode 100644 index 00000000..9c575549 --- /dev/null +++ b/src/cco-iris/ont00001703.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001703 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Brazilian Real"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001704.ttl b/src/cco-iris/ont00001704.ttl new file mode 100644 index 00000000..53546d0e --- /dev/null +++ b/src/cco-iris/ont00001704.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001352 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001704 + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+3"@en ; + "EAT"@en , + "Eastern African Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001705.ttl b/src/cco-iris/ont00001705.ttl new file mode 100644 index 00000000..c6fcd907 --- /dev/null +++ b/src/cco-iris/ont00001705.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001705 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Chilean Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001706.ttl b/src/cco-iris/ont00001706.ttl new file mode 100644 index 00000000..72ac31ad --- /dev/null +++ b/src/cco-iris/ont00001706.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001706 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Acre Measurement Unit"@en ; + "acre"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001707.ttl b/src/cco-iris/ont00001707.ttl new file mode 100644 index 00000000..5b4d9485 --- /dev/null +++ b/src/cco-iris/ont00001707.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001357 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001707 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Month Measurement Unit"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001708.ttl b/src/cco-iris/ont00001708.ttl new file mode 100644 index 00000000..e40201f6 --- /dev/null +++ b/src/cco-iris/ont00001708.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001708 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Serbian Dinar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001709.ttl b/src/cco-iris/ont00001709.ttl new file mode 100644 index 00000000..98e61d80 --- /dev/null +++ b/src/cco-iris/ont00001709.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000502 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001709 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Quartic Meter Measurement Unit"@en ; + "m^4" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001710.ttl b/src/cco-iris/ont00001710.ttl new file mode 100644 index 00000000..5811b659 --- /dev/null +++ b/src/cco-iris/ont00001710.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001710 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Danish Krone"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001711.ttl b/src/cco-iris/ont00001711.ttl new file mode 100644 index 00000000..ad2b9917 --- /dev/null +++ b/src/cco-iris/ont00001711.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001345 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001711 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Dyne Second Measurement Unit"@en ; + "dyne s"@en , + "dyne second"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001712.ttl b/src/cco-iris/ont00001712.ttl new file mode 100644 index 00000000..259eb892 --- /dev/null +++ b/src/cco-iris/ont00001712.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001712 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC-5"@en ; + rdfs:label "Romeo Time Zone"@en ; + "R" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001713.ttl b/src/cco-iris/ont00001713.ttl new file mode 100644 index 00000000..66b1c099 --- /dev/null +++ b/src/cco-iris/ont00001713.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000217 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001713 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Millimeter Measurement Unit"@en ; + "mm^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001714.ttl b/src/cco-iris/ont00001714.ttl new file mode 100644 index 00000000..f5c48073 --- /dev/null +++ b/src/cco-iris/ont00001714.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001290 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001714 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Foot Measurement Unit"@en ; + "ft"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001715.ttl b/src/cco-iris/ont00001715.ttl new file mode 100644 index 00000000..15c06c71 --- /dev/null +++ b/src/cco-iris/ont00001715.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000959 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001715 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Terahertz Measurement Unit"@en ; + "THz"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001716.ttl b/src/cco-iris/ont00001716.ttl new file mode 100644 index 00000000..e409ec19 --- /dev/null +++ b/src/cco-iris/ont00001716.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000630 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001716 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "UT1 is a derivation of UT0 that takes into account distortions caused by polar motion and is proportional to the rotation angle of the Earth with respect to distant quasars, specifically, the International Celestial Reference Frame (ICRF). UT1 is currently the most widely used variant of Universal Time and has the same value everywhere on Earth."@en ; + rdfs:label "Universal Time 1"@en ; + "Astronomical Time"@en ; + "UT1" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001717.ttl b/src/cco-iris/ont00001717.ttl new file mode 100644 index 00000000..94e81bcd --- /dev/null +++ b/src/cco-iris/ont00001717.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001717 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Croatia Kuna"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001718.ttl b/src/cco-iris/ont00001718.ttl new file mode 100644 index 00000000..a6232876 --- /dev/null +++ b/src/cco-iris/ont00001718.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001718 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Honduras Lempira"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001719.ttl b/src/cco-iris/ont00001719.ttl new file mode 100644 index 00000000..5fe9a7c9 --- /dev/null +++ b/src/cco-iris/ont00001719.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001719 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kyrgyzstan Som"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001720.ttl b/src/cco-iris/ont00001720.ttl new file mode 100644 index 00000000..d6c7602a --- /dev/null +++ b/src/cco-iris/ont00001720.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001720 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Guatemala Quetzal"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001721.ttl b/src/cco-iris/ont00001721.ttl new file mode 100644 index 00000000..41118461 --- /dev/null +++ b/src/cco-iris/ont00001721.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001721 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Libyan Dinar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001722.ttl b/src/cco-iris/ont00001722.ttl new file mode 100644 index 00000000..7b1bc114 --- /dev/null +++ b/src/cco-iris/ont00001722.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001722 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bhutan Ngultrum"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001723.ttl b/src/cco-iris/ont00001723.ttl new file mode 100644 index 00000000..34d4cb91 --- /dev/null +++ b/src/cco-iris/ont00001723.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001723 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+4"@en ; + rdfs:label "Delta Time Zone"@en ; + "D" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001724.ttl b/src/cco-iris/ont00001724.ttl new file mode 100644 index 00000000..7e8db5e8 --- /dev/null +++ b/src/cco-iris/ont00001724.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000844 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001724 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Degree Fahrenheit Measurement Unit"@en ; + "°F"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001725.ttl b/src/cco-iris/ont00001725.ttl new file mode 100644 index 00000000..1e02739c --- /dev/null +++ b/src/cco-iris/ont00001725.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001725 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Iceland Krona"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001726.ttl b/src/cco-iris/ont00001726.ttl new file mode 100644 index 00000000..5236319a --- /dev/null +++ b/src/cco-iris/ont00001726.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001726 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Norwegian Krone"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001727.ttl b/src/cco-iris/ont00001727.ttl new file mode 100644 index 00000000..058af916 --- /dev/null +++ b/src/cco-iris/ont00001727.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001727 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+10"@en ; + rdfs:label "Kilo Time Zone"@en ; + "K" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001728.ttl b/src/cco-iris/ont00001728.ttl new file mode 100644 index 00000000..eb7893ca --- /dev/null +++ b/src/cco-iris/ont00001728.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000239 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001728 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound Measurement Unit"@en ; + "lb"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001729.ttl b/src/cco-iris/ont00001729.ttl new file mode 100644 index 00000000..0699f9af --- /dev/null +++ b/src/cco-iris/ont00001729.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001004 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001729 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Volt Ampere Measurement Unit"@en ; + "VA"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001730.ttl b/src/cco-iris/ont00001730.ttl new file mode 100644 index 00000000..ae0a3ceb --- /dev/null +++ b/src/cco-iris/ont00001730.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000959 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001730 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Hertz Measurement Unit"@en ; + "cycles per second"@en ; + "hertz" ; + "Hz" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001731.ttl b/src/cco-iris/ont00001731.ttl new file mode 100644 index 00000000..07d472fc --- /dev/null +++ b/src/cco-iris/ont00001731.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001731 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Jamaican Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001732.ttl b/src/cco-iris/ont00001732.ttl new file mode 100644 index 00000000..8618f7e0 --- /dev/null +++ b/src/cco-iris/ont00001732.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001235 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001732 + rdf:type owl:NamedIndividual , + ; + rdfs:comment "Offset from Universal Coordinated Time = UTC+3"@en ; + rdfs:label "Charlie Time Zone"@en ; + "C" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001733.ttl b/src/cco-iris/ont00001733.ttl new file mode 100644 index 00000000..9f840d31 --- /dev/null +++ b/src/cco-iris/ont00001733.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001307 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001733 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Slug Per Second Measurement Unit"@en ; + "slug/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001734.ttl b/src/cco-iris/ont00001734.ttl new file mode 100644 index 00000000..086a81e2 --- /dev/null +++ b/src/cco-iris/ont00001734.ttl @@ -0,0 +1,38 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000518 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### https://www.commoncoreontologies.org/ont00001734 + rdf:type owl:NamedIndividual , + ; + rdfs:label "Australian Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001735.ttl b/src/cco-iris/ont00001735.ttl new file mode 100644 index 00000000..895e2168 --- /dev/null +++ b/src/cco-iris/ont00001735.ttl @@ -0,0 +1,30 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001735 + rdf:type owl:AnnotationProperty ; + rdfs:label "query text"@en ; + "The text of a query that is associated with a class"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001737.ttl b/src/cco-iris/ont00001737.ttl new file mode 100644 index 00000000..3ccf8cb2 --- /dev/null +++ b/src/cco-iris/ont00001737.ttl @@ -0,0 +1,36 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001737 + rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal definition"@en ; + "A Definition that is taken directly from a Doctrinal Source."@en ; + "There is only one definition for any given term in an ontology; however, a Doctrinal Definition may be provided in addition to the asserted Definition if the preservation of this information is important. When both a Definition and a Doctrinal Definition are provided for a term, the Definition takes precedence."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001738.ttl b/src/cco-iris/ont00001738.ttl new file mode 100644 index 00000000..49a2d7f6 --- /dev/null +++ b/src/cco-iris/ont00001738.ttl @@ -0,0 +1,78 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001738 + rdf:type owl:AnnotationProperty ; + rdfs:label "SI unit label"@en ; + "An Alternative Label that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Annotations +################################################################# + + "kilogram" . + + + "mole" . + + + "radian" . + + + "newton" . + + + "second" . + + + "pascal" . + + + "watt" . + + + "kg/m^3" . + + + "kelvin" . + + + "degree Celsius" . + + + "joule" . + + + "meter" . + + + "hertz" . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001739.ttl b/src/cco-iris/ont00001739.ttl new file mode 100644 index 00000000..ea8b630a --- /dev/null +++ b/src/cco-iris/ont00001739.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001739 + rdf:type owl:AnnotationProperty ; + rdfs:label "ordinal measurement annotation"@en ; + "An ordinal measurement value of an instance of a quality, realizable or process profile"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001746 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001740.ttl b/src/cco-iris/ont00001740.ttl new file mode 100644 index 00000000..322c2f2f --- /dev/null +++ b/src/cco-iris/ont00001740.ttl @@ -0,0 +1,123 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty ; + rdfs:label "SI unit symbol"@en ; + "An Acronym that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Annotations +################################################################# + + "'" . + + + "kg/L" . + + + "L" . + + + "kg" . + + + "mol" . + + + "rad" . + + + "dBi" . + + + "N-m" . + + + "N" . + + + "m^3/s" . + + + "h" . + + + "s" . + + + "Pa" . + + + "W" . + + + "g/cm^3" . + + + "K" . + + + "kg/s" . + + + "°" . + + + "°C" . + + + "kg-m^2" . + + + "J" . + + + "dB" . + + + "min" . + + + "t" . + + + "m" . + + + "\"" . + + + "m^4" . + + + "Hz" . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001741.ttl b/src/cco-iris/ont00001741.ttl new file mode 100644 index 00000000..0008f305 --- /dev/null +++ b/src/cco-iris/ont00001741.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001741 + rdf:type owl:AnnotationProperty ; + rdfs:label "nominal measurement annotation"@en ; + "A nominal measurement value of an instance of a quality, realizable or process profile"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001746 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001742.ttl b/src/cco-iris/ont00001742.ttl new file mode 100644 index 00000000..5aa12fcf --- /dev/null +++ b/src/cco-iris/ont00001742.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001742 + rdf:type owl:AnnotationProperty ; + rdfs:label "term creator"@en ; + "The name of the Term Editor who added the term to the ontology."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001762 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001743.ttl b/src/cco-iris/ont00001743.ttl new file mode 100644 index 00000000..425c9167 --- /dev/null +++ b/src/cco-iris/ont00001743.ttl @@ -0,0 +1,30 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001743 + rdf:type owl:AnnotationProperty ; + rdfs:label "content license"@en ; + "The name and description of the license under which the ideas, concepts and other informational content expressed in the .owl file are released."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001744.ttl b/src/cco-iris/ont00001744.ttl new file mode 100644 index 00000000..0becd318 --- /dev/null +++ b/src/cco-iris/ont00001744.ttl @@ -0,0 +1,30 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001744 + rdf:type owl:AnnotationProperty ; + rdfs:label "copyright"@en ; + "An assertion of copyright"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001745.ttl b/src/cco-iris/ont00001745.ttl new file mode 100644 index 00000000..e4f0c608 --- /dev/null +++ b/src/cco-iris/ont00001745.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001745 + rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal source"@en ; + "A Definition Source that consists of a formalized doctrine in which the term is authoritatively defined."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001746.ttl b/src/cco-iris/ont00001746.ttl new file mode 100644 index 00000000..657c5e80 --- /dev/null +++ b/src/cco-iris/ont00001746.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001739 + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001741 + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001746 + rdf:type owl:AnnotationProperty ; + rdfs:label "measurement annotation"@en ; + "A measurement value of an instance of a quality, realizable or process profile"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001747 + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001756 + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001747.ttl b/src/cco-iris/ont00001747.ttl new file mode 100644 index 00000000..e78a5083 --- /dev/null +++ b/src/cco-iris/ont00001747.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001746 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001747 + rdf:type owl:AnnotationProperty ; + rdfs:label "ratio measurement annotation"@en ; + "A ratio measurement value of an instance of a quality, realizable or process profile"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001748.ttl b/src/cco-iris/ont00001748.ttl new file mode 100644 index 00000000..2d9baa82 --- /dev/null +++ b/src/cco-iris/ont00001748.ttl @@ -0,0 +1,40 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001748 + rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal label"@en ; + "An Alternative Label that consists of the preferred term or phrase used by a Doctrinal Source to denote the entity."@en ; + "When the cco:doctrinal_label is identical to the rdfs:label, the cco:doctrinal_label annotation is superfluous. As a subclass of 'alternative label', 'doctrinal label' is intended to be used to provide additional information about the entity when its preferred doctrinal designator is ambiguous or otherwise inappropriate for use as the rdfs:label."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001749.ttl b/src/cco-iris/ont00001749.ttl new file mode 100644 index 00000000..49ab21e5 --- /dev/null +++ b/src/cco-iris/ont00001749.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001749 + rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal acronym"@en ; + "An Acronym that is used by a Doctrinal Source to denote the entity."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001752.ttl b/src/cco-iris/ont00001752.ttl new file mode 100644 index 00000000..fe9828d3 --- /dev/null +++ b/src/cco-iris/ont00001752.ttl @@ -0,0 +1,30 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001752 + rdf:type owl:AnnotationProperty ; + rdfs:label "has token unit"@en ; + "A relation between an information content entity and a widely used measurement unit of the token used to express it."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001753.ttl b/src/cco-iris/ont00001753.ttl new file mode 100644 index 00000000..70dc9b56 --- /dev/null +++ b/src/cco-iris/ont00001753.ttl @@ -0,0 +1,303 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#altLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001740 + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001749 + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001753 + rdf:type owl:AnnotationProperty ; + rdfs:label "acronym"@en ; + "An Alternative Label that consists of a shortened or abbreviated form of the rdfs:label and is used to denote the entity."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Annotations +################################################################# + + "EOL" , + "EoL" . + + + "RF" . + + + "VHF" . + + + "MOB" . + + + "RPG" . + + + "JD" . + + + "THF" . + + + "ELF" . + + + "MJD" . + + + "APC" . + + + "EHF" . + + + "UT" . + + + "LF" . + + + "SLF" . + + + "FOB" . + + + "ULF" . + + + "VLF" . + + + "IED" . + + + "BOL" , + "BoL" . + + + "MF" . + + + "SHF" . + + + "UHF" . + + + "HF" . + + + "IFV" . + + + "T" . + + + "NST" . + + + "GARS" . + + + "B" . + + + "ACST" . + + + "X" . + + + "TT" . + + + "ET" . + + + "S" . + + + "qt" . + + + "A" . + + + "F" . + + + "W" . + + + "kg/cm^2" , + "kgf/cm^2" . + + + "UT1D" . + + + "M" . + + + "L" . + + + "Q" . + + + "TDB" . + + + "I" . + + + "T" . + + + "UT1A" . + + + "E" . + + + "UT1F" . + + + "O" . + + + "H" . + + + "TCG" . + + + "cumec" . + + + "UTC" . + + + "UT1R" . + + + "lb ft" . + + + "lb ft s^2" . + + + "t" . + + + "P" . + + + "ITRS" . + + + "UTM" . + + + "WGRS" . + + + "TAI" . + + + "U" . + + + "IRST" , + "IT" . + + + "N" . + + + "V" . + + + "G" . + + + "UT0" . + + + "Y" . + + + "WGS 84" . + + + "cusec" . + + + "Teph" . + + + "TCB" . + + + "sccm" . + + + "Z" . + + + "UT2" . + + + "J" . + + + "IST" , + "SLST" . + + + "R" . + + + "UT1" . + + + "D" . + + + "K" . + + + "C" . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001754.ttl b/src/cco-iris/ont00001754.ttl new file mode 100644 index 00000000..e19729aa --- /dev/null +++ b/src/cco-iris/ont00001754.ttl @@ -0,0 +1,2195 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001745 + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty ; + rdfs:label "definition source"@en ; + "A citation of where all or some of the information used to create the term's Definition was acquired from."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Annotations +################################################################# + + "http://www.thefreedictionary.com/natural+process" . + + + "http://www.dictionary.com/browse/corporation" . + + + "https://en.oxforddictionaries.com/definition/nominal (Definition 6)" . + + + "https://en.wikipedia.org/w/index.php?title=Shotgun&oldid=1062571691"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Semi-major_and_semi-minor_axes&oldid=1047911304"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Title_(property)" . + + + "http://www.dictionary.com/browse/advising" . + + + "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Nuclear_reactor&oldid=1063370273"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Church_(building)" . + + + "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Observation&oldid=1062502087"^^xsd:anyURI . + + + "https://www.incose.org/about-systems-engineering/system-and-se-definition/general-system-definition"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Grocery_store&oldid=1060022873"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Hostel&oldid=1057812930"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Province&oldid=1062496131"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Flow_control_valve&oldid=1013438085"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Random_wire_antenna&oldid=1058546356"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Motor_vehicle&oldid=1063627395"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Stirling_engine&oldid=1061164490"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Medicine&oldid=1062226814"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Reaction_engine&oldid=1046981784"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Mobile_phone&oldid=1061800841"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Open-pit_mining&oldid=1059271938"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Book&oldid=1063132471"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Transcript&oldid=1038510063"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/town" . + + + "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" . + + + "https://en.wikipedia.org/w/index.php?title=Optical_microscope&oldid=1063131242"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Social_movement&oldid=1062720561"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Cutting&oldid=1058846915"^^xsd:anyURI . + + + "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3017014/" . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=minute" . + + + "https://en.wikipedia.org/w/index.php?title=Autopilot&oldid=1063382206"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ordinal_date&oldid=1061989434"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Firearm&oldid=1061216363"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Infrared_telescope&oldid=1062918090"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Flight_control_surfaces&oldid=1019271264"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI . + + + "Hecht, Eugene (1987). Optics (2nd ed.). Addison Wesley. ISBN 978-0-201-11609-0. Chapters 5 & 6."@en . + + + "https://en.wikipedia.org/w/index.php?title=Wave&oldid=1062648180"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Naval_mine&oldid=1062538523"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Train_station&oldid=1063922802"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Orientation_(geometry)" . + + + "https://en.wikipedia.org/w/index.php?title=Unit_of_measurement&oldid=1061038125"^^xsd:anyURI . + + + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" . + + + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" . + + + "http://www.geonames.org/export/codes.html" . + + + "http://www.thefreedictionary.com/tattoo" . + + + "https://en.wikipedia.org/w/index.php?title=Transformer&oldid=1062163369"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Record&oldid=1062776450"^^xsd:anyURI . + + + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" . + + + "http://www.geonames.org/export/codes.html" . + + + "https://en.wikipedia.org/w/index.php?title=Optical_instrument&oldid=1061981216"^^xsd:anyURI . + + + "http://en.wikipedia.org/wiki/Deposit_(bank)" . + + + "https://avalon.law.yale.edu/20th_century/intam03.asp" . + + + "https://en.wikipedia.org/w/index.php?title=Population&oldid=1059148871"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=meet (Sense Key: meet%2:41:00, get together%2:41:00)" . + + + "https://en.wikipedia.org/w/index.php?title=Incendiary_device&oldid=1055642422"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Constructed_language&oldid=1062733589"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Transponder_(aeronautics)&oldid=1052688836"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Instant_messaging&oldid=1062873579"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Radio_wave&oldid=1062110903"^^xsd:anyURI . + + + "http://www.merriam-webster.com/dictionary/report" . + + + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Handgun&oldid=1060570395"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Lithium-ion_battery&oldid=1064099588"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Timekeeper&oldid=1061681902"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Hand_tool&oldid=1060741381"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Crime&oldid=1062237249"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Interpersonal_relationship&oldid=1060991304"^^xsd:anyURI . + + + "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" . + + + "https://en.wikipedia.org/w/index.php?title=Detergent&oldid=1064079329"^^xsd:anyURI . + + + "http://www.jcs.mil/Portals/36/Documents/Doctrine/pubs/dictionary.pdf?ver=2018-08-27-122235-653" . + + + "https://chass.usu.edu/international-studies/aggies-go/power" , + "https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks" . + + + "J. J. Gibson, \"The Theory of Affordances,\" in The Ecological Approach to Visual Perception (NY: Taylor & Francis Group, 1986): 127-143. Available at: https://archive.org/details/pdfy-u5hmFOvOM2Civ4Gz/page/n70/mode/1up."@en . + + + "https://en.wikipedia.org/w/index.php?title=Arrow&oldid=1058445874"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Hotel&oldid=1063583593"^^xsd:anyURI . + + + " http://www.merriam-webster.com/dictionary/thanks" . + + + "https://en.wikipedia.org/w/index.php?title=Perfume&oldid=1062785740"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ground_track&oldid=1058025510"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/degree" . + + + "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Heliport&oldid=1049937701"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/camera" . + + + "https://en.wikipedia.org/w/index.php?title=Pilgrimage&oldid=1056524204"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" . + + + "https://en.wikipedia.org/w/index.php?title=Rifle&oldid=1056172452"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Friction&oldid=1061569068"^^xsd:anyURI . + + + "http://www.merriam-webster.com/dictionary/congratulate" . + + + "http://www.physicsclassroom.com/Class/waves/u10l2b.cfm" . + + + "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Chemical_weapon&oldid=1054342645"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Continent&oldid=1064057312"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Radio_telescope&oldid=1052819190"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Shell_(projectile)" . + + + "https://en.wikipedia.org/w/index.php?title=Reflecting_telescope&oldid=1062982683"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ammunition_dump&oldid=1044466765"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Human_settlement&oldid=1060418164"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=month" . + + + "https://en.wikipedia.org/w/index.php?title=Transport&oldid=1063526665"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Diffraction_grating&oldid=1060463366"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Torpedo_tube&oldid=1063672665"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Pumping_station&oldid=1045678418"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" . + + + "https://en.wikipedia.org/wiki/Propeller_(aeronautics)" . + + + "https://en.wikipedia.org/w/index.php?title=Oath&oldid=1052326917"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Heat_sink&oldid=1062822080"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/fragmentation" . + + + "https://en.wikipedia.org/w/index.php?title=Petroleum&oldid=1062956217"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Road&oldid=1063402841" . + + + "https://en.wikipedia.org/w/index.php?title=Chemical_industry&oldid=1061177027"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Shaft&oldid=1023963656"^^xsd:anyURI . + + + "JC3IEDM version 3.0.2" . + + + "http://purl.obolibrary.org/obo/IAO_0000178"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Gamma_ray&oldid=1062115897"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Election&oldid=1063238552"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Hearing_aid&oldid=1062688647"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Catalysis&oldid=1063864001"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Cannon&oldid=1063792906"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Transmitter&oldid=1061735586"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Underground_mining_(hard_rock)" . + + + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Coordinate_system&oldid=1060461397"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Solar_calendar&oldid=1058016588"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Nuclear_weapon&oldid=1060854171"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Torpedo&oldid=1062609830"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Albedo&oldid=1063352646"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Counterfeit_money&oldid=1064052318"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Emergency_position-indicating_radiobeacon&oldid=1063407242"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Inertial_navigation_system&oldid=1063682725"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Power_source&oldid=1032888635"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Airbreathing_jet_engine&oldid=1062364308"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Angular_velocity&oldid=1060081663"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Hydrosphere&oldid=1128848972"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Transmission_(mechanics)"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Intercom&oldid=1055934442"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Microscope&oldid=1059024357"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Hinge&oldid=1059935559"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Food&oldid=1062824590"^^xsd:anyURI . + + + "http://www.collinsdictionary.com/dictionary/english/military-service" . + + + "https://en.wikipedia.org/w/index.php?title=Health_care&oldid=1064015344"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Grenade&oldid=1060366148"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Filtration&oldid=1061655528"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI . + + + "http://purl.obolibrary.org/obo/OGMS_0000031" . + + + "https://en.wikipedia.org/w/index.php?title=Design&oldid=1063941625"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Reconnaissance&oldid=1038843823"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI . + + + "http://www.cfr.org/infrastructure/transportation-infrastructure-moving-america/p18611" . + + + "https://en.wikipedia.org/w/index.php?title=Thermal_power_station&oldid=1062208548"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=House&oldid=1062818553"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Training_camp&oldid=1059977631"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Gas_turbine&oldid=1062398125"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Apartment&oldid=1064019048"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Rocket-propelled_grenade&oldid=1063641548"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Fan_(machine)" . + + + "https://en.wikipedia.org/w/index.php?title=Agriculture&oldid=1063222666"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Mortar_(weapon)" . + + + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Brake&oldid=1047693009"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Reciprocating_engine&oldid=1057783145"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Surfactant&oldid=1063693411"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Police_station&oldid=1056208781"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=commanding (Edited 08-22-2016)" . + + + "http://www.merriam-webster.com/dictionary/testify" . + + + "https://en.wikipedia.org/w/index.php?title=Refracting_telescope&oldid=1059975066"^^xsd:anyURI . + + + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" . + + + "http://www.merriam-webster.com/dictionary/motion" . + + + "https://www.defit.org/julian-date/" . + + + "https://en.wikipedia.org/w/index.php?title=Rocket_engine&oldid=1063879464"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Wireless_network&oldid=1060257041"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Rotation&oldid=1055998344"^^xsd:anyURI . + + + "http://www.thefreedictionary.com/condoling" . + + + "http://www.skybrary.aero/index.php/Transformer_Rectifier_Unit_(TRU)" . + + + "https://en.wikipedia.org/w/index.php?title=Warehouse&oldid=1063721454"^^xsd:anyURI . + + + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" . + + + "https://en.wikipedia.org/w/index.php?title=Arms_industry&oldid=1063811497"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Spreadsheet&oldid=1064060503"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Webcast&oldid=1062685084"^^xsd:anyURI . + + + "International Telecommunication Union (ITU)" . + + + "https://en.wikipedia.org/w/index.php?title=Internal_combustion_engine&oldid=1063281505"^^xsd:anyURI . + + + "International Telecommunication Union (ITU)" . + + + "https://en.wikipedia.org/w/index.php?title=Park&oldid=1061073992"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Communication&oldid=1063752020"^^xsd:anyURI . + + + "http://www.thefreedictionary.com/iris" . + + + "http://www.geonames.org/export/codes.html" . + + + "https://en.wikipedia.org/w/index.php?title=Electrical_resistivity_and_conductivity&oldid=1063749049"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Redox&oldid=1063866348"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Electron_microscope&oldid=1060512240"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Antimicrobial&oldid=1064100151"^^xsd:anyURI . + + + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" . + + + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Computer&oldid=1061553332"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Nuclear_power_plant&oldid=1062752651"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Automotive_industry&oldid=1061661751"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Armoured_fighting_vehicle&oldid=1063212018"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Junction_(rail)" . + + + "https://en.wikipedia.org/w/index.php?title=External_combustion_engine&oldid=1063941809"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Missile_launch_facility&oldid=1062709375"^^xsd:anyURI . + + + "http://en.wiktionary.org/wiki/associate" . + + + "https://en.wikipedia.org/w/index.php?title=X-ray_microscope&oldid=1046169107"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Enhancement&oldid=1003326590"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Watercraft&oldid=1054071067"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Weapon&oldid=1143263715"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Motion_(physics)" . + + + "https://en.wikipedia.org/w/index.php?title=Remuneration&oldid=1033306001"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ceremony&oldid=1064081855"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805" . + + + "https://en.wikipedia.org/w/index.php?title=Coupling&oldid=1055718683"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Fluorescence&oldid=1061358510"^^xsd:anyURI . + + + "http://aa.usno.navy.mil/data/docs/JulianDate.php" . + + + "https://en.wikipedia.org/w/index.php?title=Armoured_personnel_carrier&oldid=1061608326"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Office&oldid=1063508719"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/degree" . + + + "http://www.geonames.org/export/codes.html" . + + + "http://en.wikipedia.org/wiki/Objective_(goal)" . + + + "https://en.wikipedia.org/w/index.php?title=Fuel_cell&oldid=1063586731"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Research_and_development&oldid=1062181110"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Military_base&oldid=1047077734"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Tripod&oldid=1063988190"^^xsd:anyURI . + + + "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" . + + + "https://en.wikipedia.org/w/index.php?title=Detonation&oldid=1061553336"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Natural_language&oldid=1060890461"^^xsd:anyURI . + + + "https://www.defit.org/julian-date/" . + + + "http://en.wikipedia.org/wiki/Deposit_(bank)" . + + + "https://en.wikipedia.org/w/index.php?title=Center_of_mass&oldid=1059976491"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Service_provider&oldid=1059415018"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Mosque&oldid=1062609892"^^xsd:anyURI . + + + "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" . + + + "International Telecommunication Union (ITU)" . + + + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" . + + + "https://en.wikipedia.org/w/index.php?title=Pulsejet&oldid=1050473545"^^xsd:anyURI . + + + "https://byjus.com/physics/loudness-of-sound/"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Air_conditioning&oldid=1063494896"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI . + + + "https://avalon.law.yale.edu/20th_century/intam03.asp" . + + + "https://en.wikipedia.org/w/index.php?title=Jet_engine&oldid=1060157063"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/cutting" . + + + "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Defoliant&oldid=1059494225"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Explosive_weapon&oldid=1062481268"^^xsd:anyURI . + + + "http://www.thefreedictionary.com/enhance" . + + + "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Cone&oldid=1058362269"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Dam&oldid=1053601756" . + + + "https://en.wikipedia.org/w/index.php?title=Animal&oldid=1063873549"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI . + + + "https://stats.oecd.org/glossary/detail.asp?ID=2508" . + + + "https://en.wikipedia.org/w/index.php?title=Rectifier&oldid=1049943028"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Tool&oldid=1061967184"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Motel&oldid=1063898961"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Variable-pitch_propeller&oldid=1041375492"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Media&oldid=1062799283"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Flight_instruments&oldid=1062972990"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Valve&oldid=1048906126"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Law&oldid=1060821734"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Truck&oldid=1060924486"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=encounter (Sense Key: Encounter%2:38:00)" . + + + "http://www.dictionary.com/browse/religion" . + + + "https://en.wikipedia.org/w/index.php?title=Thermographic_camera&oldid=1063916009"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Category:Land_vehicles&oldid=546083623"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=week" . + + + "https://en.wikipedia.org/w/index.php?title=Radiodensity&oldid=1048274724"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Report&oldid=1063765657"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Deception&oldid=1061346984"^^xsd:anyURI . + + + "https://avalon.law.yale.edu/20th_century/intam03.asp" . + + + "https://en.wikipedia.org/w/index.php?title=Steam_engine&oldid=1064097686"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Mining&oldid=1062844924"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI . + + + "International Telecommunication Union (ITU)" . + + + "https://en.wikipedia.org/w/index.php?title=Oscillation&oldid=1002978272"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Highway&oldid=1063985949"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/containing" . + + + "https://en.wikipedia.org/w/index.php?title=Decoy&oldid=1058455081"^^xsd:anyURI . + + + "http://purl.obolibrary.org/obo/IAO_0000064"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Terrorism&oldid=1063471352"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Radiological_warfare&oldid=1060817328"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=effect" . + + + "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI . + + + "https://avalon.law.yale.edu/20th_century/intam03.asp" . + + + "https://en.wikipedia.org/wiki/Outpost_(military)" . + + + "https://en.wikipedia.org/w/index.php?title=Battery_terminal&oldid=1059455659"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Antibiotic&oldid=1063633090"^^xsd:anyURI . + + + "International Telecommunication Union (ITU)" . + + + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI . + + + "http://www.merriam-webster.com/dictionary/inhabit" . + + + "https://en.wikipedia.org/w/index.php?title=Voltage_regulation&oldid=1045628774"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Navigation_light&oldid=1034200601"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Mirror&oldid=1063296474"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Contract&oldid=1061365227"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Border&oldid=1061275162"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Turbofan&oldid=1063724215"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Switch&oldid=1059685800"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Probability&oldid=1059657543"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=De_Laval_nozzle&oldid=1062746288"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Computer_network&oldid=1061571662"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Image&oldid=1062709732"^^xsd:anyURI . + + + "http://www.thefreedictionary.com/system+clock" . + + + "https://en.wikipedia.org/w/index.php?title=Tunnel&oldid=1062456881"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Electric_power_transmission&oldid=1062551058"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Electrical_connector&oldid=1061247409"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Water_tower&oldid=1059754959"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Visual_prosthesis&oldid=1059269261"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/command-post" . + + + "https://en.wikipedia.org/w/index.php?title=Semi-automatic_pistol&oldid=1058568715"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Acceleration&oldid=1062249960"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Horn_antenna&oldid=1050375403"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Battery_(electricity)" . + + + "https://en.wikipedia.org/w/index.php?title=Fossil_fuel&oldid=1062298144"^^xsd:anyURI . + + + "http://www.merriam-webster.com/dictionary/village" . + + + "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Cryogenic_storage_dewar&oldid=1021282649"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Parabolic_antenna&oldid=1057213241"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Wedding&oldid=1063857279"^^xsd:anyURI . + + + "http://kp12m.as.arizona.edu/docs/what_is_submillimeter.htm, https://en.wikipedia.org/wiki/Submillimetre_astronomy" . + + + "https://en.wikipedia.org/w/index.php?title=Spherical_coordinate_system&oldid=1061029174"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Microwave&oldid=1062124842"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Land_mine&oldid=1060289159"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Forward_operating_base&oldid=1059263624"^^xsd:anyURI . + + + "Adapted from “Chart.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/chart. Accessed 4 Aug. 2024." . + + + "https://en.wikipedia.org/w/index.php?title=Canal&oldid=1059514223" . + + + "https://en.wikipedia.org/w/index.php?title=Bullet&oldid=1062391591"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Text_messaging&oldid=1062261405"^^xsd:anyURI . + + + "International Telecommunication Union (ITU)" . + + + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Zenith&oldid=1052625030"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Database&oldid=1057024641"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Synagogue&oldid=1063773298"^^xsd:anyURI . + + + "ISO/IEC. 1998. Information Technology ― System and Software Integrity Levels Geneva, Switzerland: International Organization for Standardization (ISO)/International Electrotechnical Commission (IEC). ISO/IEC. 15026:1998. : 3.1"@en . + + + "https://en.wikipedia.org/w/index.php?title=Pier&oldid=1057802753"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Fungicide&oldid=1056769271"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Velocity&oldid=1063300750"^^xsd:anyURI . + + + "http://en.wiktionary.org/wiki/amount" . + + + "http://www.merriam-webster.com/dictionary/request" . + + + "https://en.wikipedia.org/w/index.php?title=Locomotive&oldid=1062802629"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Detection_theory&oldid=1049765804"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Hydraulic_motor&oldid=1027427666"^^xsd:anyURI . + + + "https://oceanservice.noaa.gov/facts/cryosphere.html (accessed 03/06/2023)"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Control_system&oldid=1061817176"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Factory&oldid=1064125324"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Repeater&oldid=1040047439"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Steam_turbine&oldid=1060224962"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Chemical_reaction&oldid=1063262412"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Catadioptric_system&oldid=1017210114"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=List_(abstract_data_type)&oldid=1041588680"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=day" . + + + "https://en.wikipedia.org/wiki/Stage_(theatre)" . + + + "http://www.merriam-webster.com/dictionary/round" . + + + "https://en.wikipedia.org/w/index.php?title=Prism&oldid=1060221124"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Power_tool&oldid=1057147715"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Reagent&oldid=1017651471"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Submersible&oldid=1062994844"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_pulse&oldid=1060859738"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Water_treatment&oldid=1061706931"^^xsd:anyURI . + + + "http://www.merriam-webster.com/dictionary/promise" . + + + "International Telecommunication Union (ITU)" . + + + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telecommunications_link&oldid=1062252217"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Refractive_index&oldid=1062519140"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/pesticide" . + + + "https://en.wikipedia.org/w/index.php?title=Speed&oldid=1058949945"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Herbicide&oldid=1061228045"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=year" . + + + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Donation&oldid=1059373518"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Bicycle&oldid=1063761124"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/explosive" . + + + "https://en.wikipedia.org/w/index.php?title=Solar_cell&oldid=1063439932"^^xsd:anyURI , + "https://en.wikipedia.org/w/index.php?title=Solar_panel&oldid=1064397496"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Hydroelectricity&oldid=1062438236"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Light_machine_gun&oldid=1063598801"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Improvised_explosive_device&oldid=1063432318"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Television_broadcasting&oldid=1063890047"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI , + "http://www.animations.physics.unsw.edu.au/waves-sound/quantifying/index.html" . + + + "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Radio_network&oldid=1037183126"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Pipeline&oldid=1024308788"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Camera&oldid=1063931551"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Plant&oldid=1060821100"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Landform&oldid=1060439172"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Video&oldid=1049376249"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Identification_friend_or_foe&oldid=1055168718"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Storage&oldid=1048222564"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Wind_farm&oldid=1062817899"^^xsd:anyURI . + + + "http://www.merriam-webster.com/dictionary/invite" . + + + "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=City&oldid=1062635325"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Travel&oldid=1037229469"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Marriage&oldid=1064076951"^^xsd:anyURI , + "Haviland, William A.; Prins, Harald E. L.; McBride, Bunny; Walrath, Dana (2011). Cultural Anthropology: The Human Challenge (13th ed.). Cengage Learning. ISBN 978-0-495-81178-7" . + + + "https://chass.usu.edu/international-studies/aggies-go/power" . + + + "https://en.wikipedia.org/w/index.php?title=Decontamination&oldid=1049850150"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Post_office&oldid=1063684373"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Email_box&oldid=1061295368"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Pyramid_(geometry)" . + + + "https://en.wikipedia.org/w/index.php?title=Lunar_calendar&oldid=1055396837"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Permanent_residency" . + + + "https://en.wikipedia.org/wiki/Node_(networking)" . + + + "https://en.wikipedia.org/w/index.php?title=Death&oldid=1064114499"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=apologizing" . + + + "https://en.wikipedia.org/w/index.php?title=Railroad_car&oldid=1063802472"^^xsd:anyURI . + + + "http://origins.sese.asu.edu/ses405/Class%20Notes/Sys-Hier-WBS_Module_V1.0_PAS.pdf"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93metal_hydride_battery&oldid=1061626676"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Constituent_state&oldid=1063662102"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Phosphorescence&oldid=1060815719"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Sniper_rifle&oldid=1061592308"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ocular_prosthesis&oldid=1061336760"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=X-ray_telescope&oldid=1035025593"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Administration_(government)" . + + + "http://en.wikipedia.org/wiki/Worship (Sense Key: Worship%2:42:00 or Worship%1:04:00::)" . + + + "https://en.wikipedia.org/w/index.php?title=Electric_motor&oldid=1063829856"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Category:Telecommunications_infrastructure&oldid=989151314"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Angular_momentum&oldid=1063992505"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Interchange_(road)" . + + + "https://en.wikipedia.org/w/index.php?title=Reservoir&oldid=1055068000"^^xsd:anyURI . + + + "http://purl.obolibrary.org/obo/IAO_0000030" . + + + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI . + + + "International Telecommunication Union (ITU)" . + + + "https://en.wikipedia.org/w/index.php?title=Assault_rifle&oldid=1063774380"^^xsd:anyURI . + + + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" . + + + "https://en.wikipedia.org/w/index.php?title=Plan&oldid=1047320560"^^xsd:anyURI . + + + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" . + + + "https://en.wikipedia.org/w/index.php?title=Thermal_insulation&oldid=1059273300"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Scar&oldid=1057179533"^^xsd:anyURI . + + + "http://en.wikitionary.org/wiki/citizen" . + + + "International Telecommunication Union (ITU)" . + + + "https://physics.nist.gov/cuu/Units/second.html" . + + + "https://en.wikipedia.org/w/index.php?title=Ramjet&oldid=1062836331"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Message&oldid=1060098631"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Cartridge_(firearms)" . + + + "https://en.wikipedia.org/w/index.php?title=Turbojet&oldid=1060948529"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Passenger_car_(rail)" . + + + "https://en.wikipedia.org/w/index.php?title=Biological_warfare&oldid=1062972883"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Optical_telescope&oldid=1062201329"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Car&oldid=1064116950"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Controlled-access_highway&oldid=1063655601"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Lithosphere&oldid=1143215085"^^xsd:anyURI . + + + "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en . + + + "http://www.merriam-webster.com/dictionary/denial" . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=calendar+week" . + + + "https://en.wikipedia.org/w/index.php?title=Electric_generator&oldid=1057805035"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Trim_tab&oldid=1054550485"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Mechanical_wave&oldid=1057233679"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Rocket_(weapon)" . + + + "https://en.wikipedia.org/w/index.php?title=Train&oldid=1064071492"^^xsd:anyURI . + + + "http://www.merriam-webster.com/dictionary/volunteer" . + + + "https://en.wikipedia.org/w/index.php?title=Assignment_(law)&oldid=1056101591"^^xsd:anyURI . + + + "http://purl.org/obo/owl/PATO#PATO_0000047" . + + + "https://en.wikipedia.org/w/index.php?title=Communications_system&oldid=1058600948"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93cadmium_battery&oldid=1061809659"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Nadir&oldid=1057007248"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Aircraft&oldid=1063924562"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Frequency&oldid=1062800545"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Primary_cell&oldid=1047226932"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Projectile&oldid=1062048285"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Helical_antenna&oldid=1062343033"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Light&oldid=1062630851"^^xsd:anyURI . + + + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=hour" . + + + "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Motorcycle&oldid=1063743553"^^xsd:anyURI . + + + "https://dictionary.cambridge.org/us/dictionary/english/international-community" . + + + "https://en.wikipedia.org/w/index.php?title=Barcode&oldid=1059844765"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Laser&oldid=1059215159"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI . + + + "International Telecommunication Union (ITU) Region 2" . + + + "https://en.wikipedia.org/w/index.php?title=Power_station&oldid=1052973815"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Heavy_machine_gun&oldid=1047303735"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Airport&oldid=1063243963"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Junction_(road)" . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=decade" . + + + "https://en.wikipedia.org/w/index.php?title=Petrochemical&oldid=1060574535"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Fortification&oldid=1060156408"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Espionage&oldid=1062702647"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Cellular_network&oldid=1061429562"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Submachine_gun&oldid=1063939013"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Hospital&oldid=1063047817"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Bridge&oldid=1061858310" . + + + "https://en.wikipedia.org/w/index.php?title=Commerce&oldid=1063120985"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Long_gun&oldid=1063715506"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Rechargeable_battery&oldid=1064096406"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Landfill&oldid=1058364420"^^xsd:anyURI . + + + "International Telecommunication Union (ITU)" . + + + "https://en.wikipedia.org/w/index.php?title=Proper_acceleration&oldid=1058169867"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Epoch_(reference_date)" . + + + "https://en.wikipedia.org/w/index.php?title=Propelling_nozzle&oldid=1061239812"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Surface_tension&oldid=1062753527"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Form_(document)" . + + + "https://en.wikipedia.org/w/index.php?title=Scramjet&oldid=1062429697"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/poison" . + + + "https://en.wikipedia.org/w/index.php?title=Missile&oldid=1062028589"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Luminescence&oldid=1050169944"^^xsd:anyURI . + + + "http://www.thefreedictionary.com/reside" . + + + "https://en.wikipedia.org/w/index.php?title=Vehicle_frame&oldid=1054003530"^^xsd:anyURI . + + + "Adapted from: https://en.wikipedia.org/wiki/Beverage_antenna" . + + + "https://en.wikipedia.org/w/index.php?title=Spacecraft&oldid=1062102614"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Flywheel&oldid=1061360783"^^xsd:anyURI . + + + "https://archive.org/details/economicsprincip00osul/page/n489/mode/2up"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Fax&oldid=1054674158"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Radio_receiver&oldid=1060111342"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Violence&oldid=1063681926"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ammunition&oldid=1062875850"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Paper&oldid=1057624743"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Bond_(finance)" . + + + "https://en.wikipedia.org/w/index.php?title=Solvent&oldid=1062572314"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI . + + + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" . + + + "https://en.wikipedia.org/w/index.php?title=County&oldid=1062817834"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Terrorist_training_camp&oldid=1037856600"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Working_mass&oldid=1057126114"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Rocket_launcher&oldid=1049900727"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_shielding&oldid=1063432544"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Data_storage&oldid=1060116427"^^xsd:anyURI . + + + "http://purl.obolibrary.org/obo/OBI_0000245" . + + + "https://en.wikipedia.org/wiki/Phase_angle_(astronomy)" . + + + "https://en.wikipedia.org/w/index.php?title=Rocket&oldid=1063307477"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Navigation&oldid=1064122463"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Dentures&oldid=1056527226"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Antenna_(radio)" . + + + "http://www.merriam-webster.com/dictionary/anthropogenic" . + + + "https://en.wikipedia.org/w/index.php?title=Railcar&oldid=1063519348"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Trail&oldid=1056047142"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Lens_(optics)" . + + + "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" . + + + "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI . + + + "http://purl.org/obo/owl/PATO#PATO_0000383" . + + + "https://en.wikipedia.org/w/index.php?title=Funeral&oldid=1060270978"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Periscope&oldid=1030400442"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Medium_machine_gun&oldid=1063571269"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Signal_processing&oldid=1062720685"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Photovoltaic_system&oldid=1063366598"^^xsd:anyURI . + + + "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" . + + + "https://en.wikipedia.org/w/index.php?title=Academic_journal&oldid=1059723283"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Alkaline_battery&oldid=1055652562"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Rhombic_antenna&oldid=1057114456"^^xsd:anyURI . + + + "http://en.wikipedia.org/wiki/Possession_(law)" . + + + "http://www.dictionary.com/browse/crushing" . + + + "https://en.wikipedia.org/wiki/Neutralization_(chemistry)" . + + + "http://www.merriam-webster.com/dictionary/suicide" . + + + "https://en.wikipedia.org/w/index.php?title=Birth&oldid=1063718655"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Actuator&oldid=1064000375"^^xsd:anyURI . + + + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" . + + + "https://en.wikipedia.org/w/index.php?title=Communication_endpoint&oldid=1020569501"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Artificial_eye&oldid=1046672400"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Cabin_pressurization&oldid=1062243955"^^xsd:anyURI . + + + "http://en.wikipedia.org/wiki/Intelligence_(information_gathering)" . + + + "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Fuel&oldid=1063590518"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Revolver&oldid=1060461644"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Insecticide&oldid=1063322558"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Reliability_(statistics)" . + + + "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Atmosphere&oldid=1135486662"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/identify" . + + + "https://en.wikipedia.org/w/index.php?title=Human&oldid=1063145185"^^xsd:anyURI . + + + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" . + + + "https://en.wikipedia.org/w/index.php?title=Public_address_system&oldid=1059177344"^^xsd:anyURI . + + + "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" . + + + "https://en.wikipedia.org/w/index.php?title=Propaganda&oldid=1062472484"^^xsd:anyURI . + + + "http://www.merriam-webster.com/dictionary/warning" . + + + "https://en.wikipedia.org/w/index.php?title=Howitzer&oldid=1059576383"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Stock&oldid=1064040249"^^xsd:anyURI . + + + "https://physicsabout.com/motion/"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Emulsion&oldid=1056901580"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Refinery&oldid=1027092124"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/maintain" . + + + "https://en.wikipedia.org/w/index.php?title=Round_shot&oldid=1062790260"^^xsd:anyURI . + + + "http://www.thefreedictionary.com/damaged" . + + + "https://en.wikipedia.org/w/index.php?title=Bus&oldid=1055341487"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Headquarters&oldid=1046429636"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Document&oldid=1057829688"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Wetting&oldid=1062806793"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Patch_antenna&oldid=1016658507"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Goods_and_services&oldid=1063137197"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Sewage_treatment&oldid=1062966352"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Lot_number&oldid=1061846325"^^xsd:anyURI . + + + "http://www.dictionary.com/browse/covering" . + + + "https://en.wikipedia.org/w/index.php?title=Aerospace_manufacturer&oldid=1059223410"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Paramilitary&oldid=1063281359"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Clothing&oldid=1063505718"^^xsd:anyURI . + + + "http://www.id.uscourts.gov/glossary.htm" . + + + "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Gimbal&oldid=1053306885"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Tank&oldid=1060527612"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Transceiver&oldid=1058453736"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Lead%E2%80%93acid_battery&oldid=1061641405"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Bearing_(mechanical)" . + + + "http://en.wiktionary.org/wiki/commually" . + + + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Telemetry&oldid=1061697851"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Purchasing&oldid=1050163120"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Ownership&oldid=1058224617"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Infrared&oldid=1064111319"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Geosphere&oldid=1137306949"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Infantry_fighting_vehicle&oldid=1062470745"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Circuit_breaker&oldid=1060854893"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Legal_instrument&oldid=1054387344"^^xsd:anyURI . + + + "http://purl.obolibrary.org/obo/GO_0007610" . + + + "https://en.wikipedia.org/w/index.php?title=Cartesian_coordinate_system&oldid=1058613323"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Goods_wagon&oldid=1062686785"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=School&oldid=1063515394"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Healing&oldid=1053920678"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Natural-gas_processing&oldid=1056700541"^^xsd:anyURI . + + + "http://purl.org/obo/owl/PATO#PATO_0000384" . + + + "http://purl.obolibrary.org/obo/PATO_0001708" . + + + "https://en.wikipedia.org/wiki/Bearing_(mechanical)" . + + + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_induction&oldid=1061836930"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Fertilizer&oldid=1062923261"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Bow_and_arrow&oldid=1062193194"^^xsd:anyURI . + + + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" . + + + "https://en.wikipedia.org/w/index.php?title=Washing&oldid=1035998791"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Torque&oldid=1063339484"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Hospitality&oldid=1049599161"^^xsd:anyURI . + + + "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en . + + + "https://en.wikipedia.org/w/index.php?title=Farm&oldid=1058311769"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Fire_station&oldid=1060666629"^^xsd:anyURI . + + + "https://en.wikipedia.org/wiki/Opacity_(optics)" . + + + "https://en.wikipedia.org/w/index.php?title=24-hour_clock&oldid=1063744105"^^xsd:anyURI . + + + "https://shopdelta.eu/dbi-power-gain-of-isotropic-antenna_l2_aid836.html"^^xsd:anyURI , + "https://www.techtarget.com/whatis/definition/decibels-relative-to-isotropic-radiator-dBi"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Julian_calendar&oldid=1063127575"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=12-hour_clock&oldid=1057602523"^^xsd:anyURI . + + + "https://en.wikipedia.org/w/index.php?title=Earth-centered,_Earth-fixed_coordinate_system&oldid=1062678600"^^xsd:anyURI . + + + "Alken, P., Thébault, E., Beggan, C.D. et al. International Geomagnetic Reference Field: the thirteenth generation. Earth Planets Space 73, 49 (2021). https://doi.org/10.1186/s40623-020-01288-x , https://www.iaga-aiga.org/" . + + + "https://en.wikipedia.org/w/index.php?title=Gregorian_calendar&oldid=1062360692"^^xsd:anyURI . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html" . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en . + + + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en . + + + "http://en.wiktionary.org/wiki/supervise)" . + + + "http://purl.obolibrary.org/obo/IAO_0000136" . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html)" . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en . + + + "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "http://en.wikipedia.org/wiki/Accessory_(legal_term)" . + + + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en . + + + "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "http://en.wiktionary.org/wiki/supervise" . + + + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en . + + + "http://en.wikipedia.org/wiki/Accessory_(legal_term)" . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + + "https://en.wikipedia.org/w/index.php?title=IPO_model&oldid=1024398398"^^xsd:anyURI . + + + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en . + + + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001756.ttl b/src/cco-iris/ont00001756.ttl new file mode 100644 index 00000000..a271391c --- /dev/null +++ b/src/cco-iris/ont00001756.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001746 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001756 + rdf:type owl:AnnotationProperty ; + rdfs:label "interval measurement annotation"@en ; + "A interval measurement value of an instance of a quality, realizable or process profile "@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001757.ttl b/src/cco-iris/ont00001757.ttl new file mode 100644 index 00000000..3171904c --- /dev/null +++ b/src/cco-iris/ont00001757.ttl @@ -0,0 +1,30 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001757 + rdf:type owl:AnnotationProperty ; + rdfs:label "designator annotation"@en ; + "A name or other identifier that is used to designate an individual."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001758.ttl b/src/cco-iris/ont00001758.ttl new file mode 100644 index 00000000..94399e1d --- /dev/null +++ b/src/cco-iris/ont00001758.ttl @@ -0,0 +1,30 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001758 + rdf:type owl:AnnotationProperty ; + rdfs:label "http query string"@en ; + "The text of an HTTP request that can be sent to a SPARQL Protocol service."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001759.ttl b/src/cco-iris/ont00001759.ttl new file mode 100644 index 00000000..c16a743f --- /dev/null +++ b/src/cco-iris/ont00001759.ttl @@ -0,0 +1,30 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001759 + rdf:type owl:AnnotationProperty ; + rdfs:label "code license"@en ; + "The name and description of the license under which the .owl file is released."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001760.ttl b/src/cco-iris/ont00001760.ttl new file mode 100644 index 00000000..65d8d5bd --- /dev/null +++ b/src/cco-iris/ont00001760.ttl @@ -0,0 +1,6015 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty ; + rdfs:label "is curated in ontology"@en ; + "An annotation property that links a class, property, or named individual to the URI of the ontology where it is located."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Annotations +################################################################# + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology" . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001761.ttl b/src/cco-iris/ont00001761.ttl new file mode 100644 index 00000000..f93129f4 --- /dev/null +++ b/src/cco-iris/ont00001761.ttl @@ -0,0 +1,30 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001761 + rdf:type owl:AnnotationProperty ; + rdfs:label "is tokenized by"@en ; + "A relation between an information content entity and a widely used token used to express it."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001762.ttl b/src/cco-iris/ont00001762.ttl new file mode 100644 index 00000000..93748b5a --- /dev/null +++ b/src/cco-iris/ont00001762.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001742 + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001762 + rdf:type owl:AnnotationProperty ; + rdfs:label "term editor"@en ; + "The name of a person who contributed to the development or enhancement of the term."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001763.ttl b/src/cco-iris/ont00001763.ttl new file mode 100644 index 00000000..3e53e9c4 --- /dev/null +++ b/src/cco-iris/ont00001763.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001763 + rdf:type owl:DatatypeProperty ; + rdfs:comment "Altitude values typically use kilometers as the Unit of Measurement."@en ; + rdfs:label "has altitude value"@en ; + "This data property can be used along with has_latitude_value and has_longitude_value to connect three-dimensional spatial data to a single Information Bearing Entity to specify the location of an entity in a Geospatial Region."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001764.ttl b/src/cco-iris/ont00001764.ttl new file mode 100644 index 00000000..6ae25d25 --- /dev/null +++ b/src/cco-iris/ont00001764.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001764 + rdf:type owl:DatatypeProperty ; + rdfs:range xsd:decimal ; + rdfs:label "has longitude value"@en ; + "A Data Property that has as its range the longitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001765.ttl b/src/cco-iris/ont00001765.ttl new file mode 100644 index 00000000..1958c688 --- /dev/null +++ b/src/cco-iris/ont00001765.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001765 + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "has text value"@en ; + "A data property that has as its range a string value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001766.ttl b/src/cco-iris/ont00001766.ttl new file mode 100644 index 00000000..5bd46474 --- /dev/null +++ b/src/cco-iris/ont00001766.ttl @@ -0,0 +1,35 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001766 + rdf:type owl:DatatypeProperty ; + rdfs:range xsd:decimal ; + rdfs:label "has latitude value"@en ; + "A Data Property that has as its range the latitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001767.ttl b/src/cco-iris/ont00001767.ttl new file mode 100644 index 00000000..ae394d5f --- /dev/null +++ b/src/cco-iris/ont00001767.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001767 + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:dateTime ; + rdfs:label "has datetime value"@en ; + "A data property that has as its value a datetime value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001768.ttl b/src/cco-iris/ont00001768.ttl new file mode 100644 index 00000000..2bf20efa --- /dev/null +++ b/src/cco-iris/ont00001768.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001768 + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:anyURI ; + rdfs:label "has URI value"@en ; + "A data property that has as its range a URI value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001769.ttl b/src/cco-iris/ont00001769.ttl new file mode 100644 index 00000000..41f4347d --- /dev/null +++ b/src/cco-iris/ont00001769.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001769 + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:decimal ; + rdfs:label "has decimal value"@en ; + "A data property that has as its range a decimal value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001770.ttl b/src/cco-iris/ont00001770.ttl new file mode 100644 index 00000000..cce8e081 --- /dev/null +++ b/src/cco-iris/ont00001770.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001770 + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:double ; + rdfs:label "has double value"@en ; + "A data property that has as its range a double value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001771.ttl b/src/cco-iris/ont00001771.ttl new file mode 100644 index 00000000..08bffc5a --- /dev/null +++ b/src/cco-iris/ont00001771.ttl @@ -0,0 +1,43 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001771 + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "has date value"@en ; + "A data property that has as its range a date value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001772.ttl b/src/cco-iris/ont00001772.ttl new file mode 100644 index 00000000..5f11326b --- /dev/null +++ b/src/cco-iris/ont00001772.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001772 + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:boolean ; + rdfs:label "has boolean value"@en ; + "A data property that has as its range a boolean value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001773.ttl b/src/cco-iris/ont00001773.ttl new file mode 100644 index 00000000..d00d598c --- /dev/null +++ b/src/cco-iris/ont00001773.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Data properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001773 + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:integer ; + rdfs:label "has integer value"@en ; + "A data property that has as its range an integer value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001774.ttl b/src/cco-iris/ont00001774.ttl new file mode 100644 index 00000000..6921a798 --- /dev/null +++ b/src/cco-iris/ont00001774.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001774 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has brother"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001883 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001902 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001775.ttl b/src/cco-iris/ont00001775.ttl new file mode 100644 index 00000000..ecc32324 --- /dev/null +++ b/src/cco-iris/ont00001775.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001775 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is successor of"@en ; + "A continuant c2 is a successor of some continuant c1 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1. Inverse of is predecessor. "@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001928 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001776.ttl b/src/cco-iris/ont00001776.ttl new file mode 100644 index 00000000..1136cd19 --- /dev/null +++ b/src/cco-iris/ont00001776.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001776 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has grandfather"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001876 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001945 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001972 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001973 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001777.ttl b/src/cco-iris/ont00001777.ttl new file mode 100644 index 00000000..332e771b --- /dev/null +++ b/src/cco-iris/ont00001777.ttl @@ -0,0 +1,190 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000117 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has process part"@en ; + "x has_process_part y iff x and y are instances of Process, such that y occurs during the temporal interval of x, and y either provides an input to x or receives an output of x, or both."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001857 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000099 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000296 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000345 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000368 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000514 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000517 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000558 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000566 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000675 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000712 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000752 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000763 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000789 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000889 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000951 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000983 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001028 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001219 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001227 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001246 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001330 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001778.ttl b/src/cco-iris/ont00001778.ttl new file mode 100644 index 00000000..523f7ebe --- /dev/null +++ b/src/cco-iris/ont00001778.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001778 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has object"@en ; + "If p is a process and c is a continuant, then p has object c if and only if p is performed by an agent and c is part of the projected state that agent intends to achieve by performing p."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001936 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001779.ttl b/src/cco-iris/ont00001779.ttl new file mode 100644 index 00000000..d51a59b0 --- /dev/null +++ b/src/cco-iris/ont00001779.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001779 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has inside instant"@en ; + "For Temporal Interval t1 and Temporal Instant t2, t1 has inside instant t2 if and only if there exists Temporal Instants t3 and t4 that are part of t1 and non-identical with t2, such that t3 is before t2 and t4 is after t2."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001848 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000148 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001780.ttl b/src/cco-iris/ont00001780.ttl new file mode 100644 index 00000000..43f0a914 --- /dev/null +++ b/src/cco-iris/ont00001780.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001780 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has mother"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001786 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001842 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001781.ttl b/src/cco-iris/ont00001781.ttl new file mode 100644 index 00000000..26ecca46 --- /dev/null +++ b/src/cco-iris/ont00001781.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001781 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has step sister"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001979 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001996 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001782.ttl b/src/cco-iris/ont00001782.ttl new file mode 100644 index 00000000..f408da9c --- /dev/null +++ b/src/cco-iris/ont00001782.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001782 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "has all members located in"@en ; + "x has all members located in y iff x is an instance of Object Aggregate and y is an instance of independent continuant but not a spatial region, and every member of x is located in y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001832 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000006 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001783.ttl b/src/cco-iris/ont00001783.ttl new file mode 100644 index 00000000..9138c9f8 --- /dev/null +++ b/src/cco-iris/ont00001783.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001783 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is granddaughter of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001820 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001945 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001784.ttl b/src/cco-iris/ont00001784.ttl new file mode 100644 index 00000000..e50ab269 --- /dev/null +++ b/src/cco-iris/ont00001784.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001784 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has son in law"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001881 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001785.ttl b/src/cco-iris/ont00001785.ttl new file mode 100644 index 00000000..6f96a3e5 --- /dev/null +++ b/src/cco-iris/ont00001785.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001785 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has uncle"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001790 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001823 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001988 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001786.ttl b/src/cco-iris/ont00001786.ttl new file mode 100644 index 00000000..556535cd --- /dev/null +++ b/src/cco-iris/ont00001786.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001780 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001786 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is mother of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001995 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001787.ttl b/src/cco-iris/ont00001787.ttl new file mode 100644 index 00000000..d7b265a4 --- /dev/null +++ b/src/cco-iris/ont00001787.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000056 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001787 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "agent in"@en ; + "x agent_in y iff y is an instance of Process and x is an instance of Agent, such that x is causally active in y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001833 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001788.ttl b/src/cco-iris/ont00001788.ttl new file mode 100644 index 00000000..57c8da52 --- /dev/null +++ b/src/cco-iris/ont00001788.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001788 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has paternal aunt"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001789 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001994 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001789.ttl b/src/cco-iris/ont00001789.ttl new file mode 100644 index 00000000..d90c6f00 --- /dev/null +++ b/src/cco-iris/ont00001789.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001788 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001789 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has aunt"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001955 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001958 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001790.ttl b/src/cco-iris/ont00001790.ttl new file mode 100644 index 00000000..5905db38 --- /dev/null +++ b/src/cco-iris/ont00001790.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001785 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001790 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has maternal uncle"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001929 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001791.ttl b/src/cco-iris/ont00001791.ttl new file mode 100644 index 00000000..d655aec6 --- /dev/null +++ b/src/cco-iris/ont00001791.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001791 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "coincides with"@en ; + "An immaterial entity im1 coincides with some immaterial entity im2 iff im1 is a spatial part of im2 and im2 is a spatial part of im1."@en ; + "Given a stronger temporal interpretation, this property may be transitive and symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001810 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001792.ttl b/src/cco-iris/ont00001792.ttl new file mode 100644 index 00000000..93f54b36 --- /dev/null +++ b/src/cco-iris/ont00001792.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001792 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has sister"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001851 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001902 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001793.ttl b/src/cco-iris/ont00001793.ttl new file mode 100644 index 00000000..9352aa65 --- /dev/null +++ b/src/cco-iris/ont00001793.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001793 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has half sister"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001948 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001975 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001794.ttl b/src/cco-iris/ont00001794.ttl new file mode 100644 index 00000000..ea946eb5 --- /dev/null +++ b/src/cco-iris/ont00001794.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001794 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has subsidiary"@en ; + "An Organization o1 has_subsidiary Organization o2 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies."@en ; + "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001815 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001977 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001795.ttl b/src/cco-iris/ont00001795.ttl new file mode 100644 index 00000000..98dffb07 --- /dev/null +++ b/src/cco-iris/ont00001795.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001795 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has inside interval"@en ; + "A Temporal Interval INT2 has inside interval some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001796.ttl b/src/cco-iris/ont00001796.ttl new file mode 100644 index 00000000..7784c989 --- /dev/null +++ b/src/cco-iris/ont00001796.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001796 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "tangential part of"@en ; + "An immaterial entity im1 is a tangential part of some immaterial entity im2 iff im1 is a spatial part of im2 and there exists some immaterial entity im3 such that im3 externally connects with im1 and im3 externally connects with im2."@en ; + "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001909 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001944 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001797.ttl b/src/cco-iris/ont00001797.ttl new file mode 100644 index 00000000..36174aee --- /dev/null +++ b/src/cco-iris/ont00001797.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001797 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "partially overlaps with"@en ; + "An immaterial entity im1 partially overlaps with some immaterial entity im2 iff im1 overlaps with im2 and im1 is not a spatial part of im2 and im2 is not a spatial part of im1."@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001810 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001798.ttl b/src/cco-iris/ont00001798.ttl new file mode 100644 index 00000000..e9870d7d --- /dev/null +++ b/src/cco-iris/ont00001798.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001798 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is supervised by"@en ; + "A person p1 is supervised by a person p2 by virtue of p1 being directed, managed, or overseen by p2."@en ; + "http://en.wiktionary.org/wiki/supervise)" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001939 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001943 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001799.ttl b/src/cco-iris/ont00001799.ttl new file mode 100644 index 00000000..9f51e71f --- /dev/null +++ b/src/cco-iris/ont00001799.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001799 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "role of aggregate"@en ; + "x role_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Role, and x inheres_in_aggregate y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001809 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001800.ttl b/src/cco-iris/ont00001800.ttl new file mode 100644 index 00000000..b29efdb6 --- /dev/null +++ b/src/cco-iris/ont00001800.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001800 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "prohibits"@en ; + "x prohibits y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that some y must not occur."@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001817 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000553 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001801.ttl b/src/cco-iris/ont00001801.ttl new file mode 100644 index 00000000..5568ed0c --- /dev/null +++ b/src/cco-iris/ont00001801.ttl @@ -0,0 +1,73 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001801 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:range ; + rdfs:label "is subject of"@en ; + "A primitive relationship between an instance of an Entity and an instance of an Information Content Entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001808 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001873 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001879 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001884 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001917 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001920 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001802.ttl b/src/cco-iris/ont00001802.ttl new file mode 100644 index 00000000..a9bc8d13 --- /dev/null +++ b/src/cco-iris/ont00001802.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001802 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has husband"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001804 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001957 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001803.ttl b/src/cco-iris/ont00001803.ttl new file mode 100644 index 00000000..b7c37358 --- /dev/null +++ b/src/cco-iris/ont00001803.ttl @@ -0,0 +1,90 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001803 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is cause of"@en ; + "x is_cause_of y iff x and y are instances of Occurrent, and y is a consequence of x."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001819 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001933 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000003 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000191 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000920 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000978 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001236 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001804.ttl b/src/cco-iris/ont00001804.ttl new file mode 100644 index 00000000..f4f5cf33 --- /dev/null +++ b/src/cco-iris/ont00001804.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001802 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001804 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is spouse of"@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001871 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001887 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001957 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001805.ttl b/src/cco-iris/ont00001805.ttl new file mode 100644 index 00000000..fc4ed26e --- /dev/null +++ b/src/cco-iris/ont00001805.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001805 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "is disrupted by"@en ; + "Inverse of disrupts." ; + "is disrupted by"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001888 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001806.ttl b/src/cco-iris/ont00001806.ttl new file mode 100644 index 00000000..2e1708a4 --- /dev/null +++ b/src/cco-iris/ont00001806.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001806 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is first cousin of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001843 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001894 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001906 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001934 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001807.ttl b/src/cco-iris/ont00001807.ttl new file mode 100644 index 00000000..968070cd --- /dev/null +++ b/src/cco-iris/ont00001807.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001807 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is required by"@en ; + "y is_required_by x at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y must occur."@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001920 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001974 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001808.ttl b/src/cco-iris/ont00001808.ttl new file mode 100644 index 00000000..9a7299e3 --- /dev/null +++ b/src/cco-iris/ont00001808.ttl @@ -0,0 +1,95 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001801 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001808 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is about"@en ; + "A primitive relationship between an Information Content Entity and some Entity."@en ; + "http://purl.obolibrary.org/obo/IAO_0000136" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001938 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001980 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001982 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000031 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001809.ttl b/src/cco-iris/ont00001809.ttl new file mode 100644 index 00000000..4fdc8889 --- /dev/null +++ b/src/cco-iris/ont00001809.ttl @@ -0,0 +1,81 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001799 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001809 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:range ; + rdfs:label "inheres in aggregate"@en ; + "x inheres_in_aggregate y iff x is an instance of Specifically Dependent Continuant and y is an instance of Object Aggregate and z is an instance of Object, such that z bearer_of x, and all other members of y are bearers of a unique instance of the same type as x."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001829 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001836 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001880 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001947 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000020 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000031 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001810.ttl b/src/cco-iris/ont00001810.ttl new file mode 100644 index 00000000..528feefa --- /dev/null +++ b/src/cco-iris/ont00001810.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001791 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001797 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001810 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "connected with"@en ; + "An immaterial entity im1 is connected with some immaterial entity im2 iff there exists some immaterial entity im3 that is common to both im1 and im2."@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001931 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001944 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001811.ttl b/src/cco-iris/ont00001811.ttl new file mode 100644 index 00000000..b5d94a78 --- /dev/null +++ b/src/cco-iris/ont00001811.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001811 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:label "is a ordinal measurement of"@en ; + "x is_a_ordinal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale ordered by rank."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001963 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001966 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001812.ttl b/src/cco-iris/ont00001812.ttl new file mode 100644 index 00000000..7bb795e7 --- /dev/null +++ b/src/cco-iris/ont00001812.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001812 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is grandson of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001945 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001981 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001813.ttl b/src/cco-iris/ont00001813.ttl new file mode 100644 index 00000000..7a086cf8 --- /dev/null +++ b/src/cco-iris/ont00001813.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001813 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:label "uses"@en ; + "x uses y iff x is an instance of an Agent and y is an instance of a Material Entity, such that both x and y participate in some instance of a Process wherein x attempts to accomplish a goal by manipulating, deploying, or leveraging some attribute of y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001925 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001814.ttl b/src/cco-iris/ont00001814.ttl new file mode 100644 index 00000000..ad59e9ef --- /dev/null +++ b/src/cco-iris/ont00001814.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001814 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval finishes"@en ; + "A Temporal Interval INT1 finishes some Temporal Interval INT2 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001821 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001971 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001815.ttl b/src/cco-iris/ont00001815.ttl new file mode 100644 index 00000000..a729a696 --- /dev/null +++ b/src/cco-iris/ont00001815.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001794 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001815 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is subsidiary of"@en ; + "An Organization o2 is_subsidiary_of Organization o1 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies. "@en ; + "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html)" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001939 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001816.ttl b/src/cco-iris/ont00001816.ttl new file mode 100644 index 00000000..714a6aed --- /dev/null +++ b/src/cco-iris/ont00001816.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000056 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001816 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is output of"@en ; + "x is_output_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001986 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000002 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001817.ttl b/src/cco-iris/ont00001817.ttl new file mode 100644 index 00000000..f5deb802 --- /dev/null +++ b/src/cco-iris/ont00001817.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001800 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001817 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is prohibited by"@en ; + "y is_prohibited_by y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y must not occur."@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001920 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001818.ttl b/src/cco-iris/ont00001818.ttl new file mode 100644 index 00000000..3f2dd57c --- /dev/null +++ b/src/cco-iris/ont00001818.ttl @@ -0,0 +1,100 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001784 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is in-law of"@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001826 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001828 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001849 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001853 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001854 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001867 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001881 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001885 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001891 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001935 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001952 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001819.ttl b/src/cco-iris/ont00001819.ttl new file mode 100644 index 00000000..4b48627a --- /dev/null +++ b/src/cco-iris/ont00001819.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001803 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001819 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "caused by"@en ; + "x caused_by y iff x and y are instances of Occurrent, and x is a consequence of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001962 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000003 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000065 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000660 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000783 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000855 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000950 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001820.ttl b/src/cco-iris/ont00001820.ttl new file mode 100644 index 00000000..8c77fb1d --- /dev/null +++ b/src/cco-iris/ont00001820.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001783 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001820 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has granddaughter"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001850 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001821.ttl b/src/cco-iris/ont00001821.ttl new file mode 100644 index 00000000..5b43ddcc --- /dev/null +++ b/src/cco-iris/ont00001821.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001814 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001821 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval finished by"@en ; + "A Temporal Interval INT2 is finished by some Temporal Interval INT1 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001822.ttl b/src/cco-iris/ont00001822.ttl new file mode 100644 index 00000000..c3184234 --- /dev/null +++ b/src/cco-iris/ont00001822.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001822 + rdf:type owl:ObjectProperty , + owl:SymmetricProperty ; + rdfs:domain ; + rdfs:range ; + owl:propertyDisjointWith ; + rdfs:label "interval equals"@en ; + "A Temporal Interval INT1 is equal to some Temporal Interval INT2 iff there exists Temporal Instants inst1 and inst2 such that inst1 is the starting instant of both INT1 and INT2 and inst2 is the ending instant of both INT1 and INT2."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001862 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001823.ttl b/src/cco-iris/ont00001823.ttl new file mode 100644 index 00000000..474d9ad8 --- /dev/null +++ b/src/cco-iris/ont00001823.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001785 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001823 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has paternal uncle"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001926 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001824.ttl b/src/cco-iris/ont00001824.ttl new file mode 100644 index 00000000..7c9fc03e --- /dev/null +++ b/src/cco-iris/ont00001824.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001824 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is excerpted from"@en ; + "An Information Bearing Entity b1 is excerpted from another Information Bearing Entity B2 iff b1 is part of some Information Bearing Entity B1 that is carrier of some Information Content Entity C1, B2 is carrier of some Information Content Entity C2, C1 is not identical with C2, b1 is carrier of some Information Content Entity c1, b2 is an Information Bearing Entity that is part of B2 and b2 is carrier of c1 (i.e. the same Information Content Entity as borne by b1)."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001825.ttl b/src/cco-iris/ont00001825.ttl new file mode 100644 index 00000000..c218e803 --- /dev/null +++ b/src/cco-iris/ont00001825.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001825 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + owl:propertyDisjointWith ; + rdfs:label "interval overlaps"@en ; + "A Temporal Interval INT1 overlaps some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst1 is before inst3, inst3 is before inst2, and inst2 is before inst4."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001862 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001870 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001826.ttl b/src/cco-iris/ont00001826.ttl new file mode 100644 index 00000000..c447fd28 --- /dev/null +++ b/src/cco-iris/ont00001826.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001826 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is sister-in-law of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001828 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001827.ttl b/src/cco-iris/ont00001827.ttl new file mode 100644 index 00000000..c85fc90b --- /dev/null +++ b/src/cco-iris/ont00001827.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001827 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "nontangential part of"@en ; + "An immaterial entity im1 is a nontangential part of some immaterial entity im2 iff im1 is a spatial part of im2 and there does not exist an immaterial entity im3 such that im3 externally connects with im1 and im3 externally connects with im2."@en ; + "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001944 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001989 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001828.ttl b/src/cco-iris/ont00001828.ttl new file mode 100644 index 00000000..a82a3fa5 --- /dev/null +++ b/src/cco-iris/ont00001828.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001826 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001828 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has sister in law"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001829.ttl b/src/cco-iris/ont00001829.ttl new file mode 100644 index 00000000..8acb6f67 --- /dev/null +++ b/src/cco-iris/ont00001829.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001809 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001829 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "disposition of aggregate"@en ; + "x disposition_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Disposition, and x inheres_in_aggregate y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001956 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000016 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001830.ttl b/src/cco-iris/ont00001830.ttl new file mode 100644 index 00000000..e29bd297 --- /dev/null +++ b/src/cco-iris/ont00001830.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001830 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has accomplice"@en ; + "A Processual Entity p1 has_accomplice some agent a1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."@en ; + "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001895 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001831.ttl b/src/cco-iris/ont00001831.ttl new file mode 100644 index 00000000..a3f76bf9 --- /dev/null +++ b/src/cco-iris/ont00001831.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001831 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is subordinate role to"@en ; + "For all x,y,t: y is subordinate role to x at t iff: x is an instance of Role at time t, and y is an instance of Role at time t, and there is some z such that x is realized by z and z is an instance of Process which creates, modifies, transfers, or eliminates some u such that u is a Process Regulation at time t, and u is addressed to the bearer of y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001951 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001832.ttl b/src/cco-iris/ont00001832.ttl new file mode 100644 index 00000000..dee48247 --- /dev/null +++ b/src/cco-iris/ont00001832.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001782 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001832 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf owl:topObjectProperty ; + rdfs:domain ; + rdfs:range [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "has some member located in"@en ; + "x has some member located in y iff x is an instance of Object Aggregate and y is an instance of independent continuant but not a spatial region, and at least one member of x is located in y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000006 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001833.ttl b/src/cco-iris/ont00001833.ttl new file mode 100644 index 00000000..008f59f5 --- /dev/null +++ b/src/cco-iris/ont00001833.ttl @@ -0,0 +1,44 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001787 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001833 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has agent"@en ; + "x has_agent y iff x is an instance of Process and y is an instance of Agent, such that y is causally active in x."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001834.ttl b/src/cco-iris/ont00001834.ttl new file mode 100644 index 00000000..93000bd9 --- /dev/null +++ b/src/cco-iris/ont00001834.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001834 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "affects"@en ; + "x affects y iff x is an instance of Process and y is an instance of Continuant, and x influences y in some manner, most often by producing a change in y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001886 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000002 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001835.ttl b/src/cco-iris/ont00001835.ttl new file mode 100644 index 00000000..6f4c18b5 --- /dev/null +++ b/src/cco-iris/ont00001835.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001835 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is son of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001839 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001842 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001836.ttl b/src/cco-iris/ont00001836.ttl new file mode 100644 index 00000000..18892be8 --- /dev/null +++ b/src/cco-iris/ont00001836.ttl @@ -0,0 +1,81 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001809 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001836 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:label "aggregate bearer of"@en ; + "x aggregate_bearer_of y iff x is an instance of Object Aggregate and y is an instance of Specifically Dependent Continuant and z is an instance of Object, such that z bearer of y, and all other members of x are bearers of a unique instance of the same type as y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001898 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001901 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001907 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001956 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000020 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000031 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001837.ttl b/src/cco-iris/ont00001837.ttl new file mode 100644 index 00000000..7870d0ae --- /dev/null +++ b/src/cco-iris/ont00001837.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000084 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001837 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "time zone identifier used by"@en ; + "x time_zone_identifier_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Time Zone Identifier, such that x designates the spatial region associated with the time zone mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001908 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000829 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001838.ttl b/src/cco-iris/ont00001838.ttl new file mode 100644 index 00000000..4a96dbbe --- /dev/null +++ b/src/cco-iris/ont00001838.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001838 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "disconnected with"@en ; + "An immaterial entity im1 is disconnected with some immaterial entity im2 iff there does not exist some immaterial entity im3 that is common to both im1 and im2."@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001839.ttl b/src/cco-iris/ont00001839.ttl new file mode 100644 index 00000000..5ae7eb0b --- /dev/null +++ b/src/cco-iris/ont00001839.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001835 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001839 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has son"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001995 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001840.ttl b/src/cco-iris/ont00001840.ttl new file mode 100644 index 00000000..aaea721e --- /dev/null +++ b/src/cco-iris/ont00001840.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001840 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has grandmother"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001882 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001937 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001945 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001960 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001841.ttl b/src/cco-iris/ont00001841.ttl new file mode 100644 index 00000000..a61cd153 --- /dev/null +++ b/src/cco-iris/ont00001841.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000056 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001841 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is input of"@en ; + "x is_input_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001921 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000002 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001842.ttl b/src/cco-iris/ont00001842.ttl new file mode 100644 index 00000000..9d25211c --- /dev/null +++ b/src/cco-iris/ont00001842.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001780 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001835 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001842 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is child of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001858 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001946 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001995 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001843.ttl b/src/cco-iris/ont00001843.ttl new file mode 100644 index 00000000..20afb3a7 --- /dev/null +++ b/src/cco-iris/ont00001843.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001806 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001843 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:comment "Comment is_paternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"@en ; + rdfs:label "is paternal first cousin of"@en ; + "Person A is paternal first cousin of Person B iff Person B has father F and F has sibling P and P is parent of Person A."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001894 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001844.ttl b/src/cco-iris/ont00001844.ttl new file mode 100644 index 00000000..6830e3c5 --- /dev/null +++ b/src/cco-iris/ont00001844.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001844 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:range ; + rdfs:label "has sender"@en ; + "y has_sender x iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001993 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001845.ttl b/src/cco-iris/ont00001845.ttl new file mode 100644 index 00000000..27fba78c --- /dev/null +++ b/src/cco-iris/ont00001845.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000183 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001845 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is site of"@en ; + "x is_site_of y iff x is an instance of Site and y is an instance of Process, such that y occurs in x."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001918 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000029 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001846.ttl b/src/cco-iris/ont00001846.ttl new file mode 100644 index 00000000..793022cf --- /dev/null +++ b/src/cco-iris/ont00001846.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001846 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is organizational context of"@en ; + "x is_organizational_context_of y iff x is an instance of an Organization and y is an instance of a Role and z is an instance of a Person, such that z's affiliation with x is a prerequisite for z bearing y, or x ascribes y to the bearer of y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001992 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001847.ttl b/src/cco-iris/ont00001847.ttl new file mode 100644 index 00000000..2c704ec4 --- /dev/null +++ b/src/cco-iris/ont00001847.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001847 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval is after"@en ; + "A TemporalInterval INT2 is after some TemporalInterval INT1 iff there exists TemporalInstants inst2, inst1 such that inst2 is the starting instant of INT2 and inst1 is the ending instant of INT1 and inst2 is after inst1."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001862 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001940 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001848.ttl b/src/cco-iris/ont00001848.ttl new file mode 100644 index 00000000..5a8ad552 --- /dev/null +++ b/src/cco-iris/ont00001848.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001779 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001848 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is inside instant of"@en ; + "For Temporal Instant t1 and Temporal Interval t2, t1 is inside instant of t2 if and only if there are Temporal Instants t3 and t4 non-identical to t1 and part of t2 such that t3 is before t1 and t4 is after t1."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000148 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001849.ttl b/src/cco-iris/ont00001849.ttl new file mode 100644 index 00000000..9bfc3bec --- /dev/null +++ b/src/cco-iris/ont00001849.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001849 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is father in-law of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001935 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001850.ttl b/src/cco-iris/ont00001850.ttl new file mode 100644 index 00000000..726ca35f --- /dev/null +++ b/src/cco-iris/ont00001850.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001820 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001850 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is grandparent of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001876 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001882 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001945 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001981 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001851.ttl b/src/cco-iris/ont00001851.ttl new file mode 100644 index 00000000..91b2c201 --- /dev/null +++ b/src/cco-iris/ont00001851.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001792 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001851 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is sister of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001902 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001852.ttl b/src/cco-iris/ont00001852.ttl new file mode 100644 index 00000000..c69c6544 --- /dev/null +++ b/src/cco-iris/ont00001852.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000056 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001852 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "accessory in"@en ; + "y is_accessory_in x iff x is an instance of Process and y is an instance of Agent, such that y assists another agent in the commission of x, and y was not located at the location of x when x occurred, and y was not an agent_in x."@en ; + "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001949 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001853.ttl b/src/cco-iris/ont00001853.ttl new file mode 100644 index 00000000..6d2f0d9f --- /dev/null +++ b/src/cco-iris/ont00001853.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001853 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is mother in-law of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001885 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001854.ttl b/src/cco-iris/ont00001854.ttl new file mode 100644 index 00000000..f7b74acb --- /dev/null +++ b/src/cco-iris/ont00001854.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001854 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has daughter in law"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001867 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001855.ttl b/src/cco-iris/ont00001855.ttl new file mode 100644 index 00000000..cd8174a2 --- /dev/null +++ b/src/cco-iris/ont00001855.ttl @@ -0,0 +1,110 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001810 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf , + ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has spatial part"@en ; + "y has_spatial_part x iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001909 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001944 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001989 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000068 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000122 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000170 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000205 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000904 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001348 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001856.ttl b/src/cco-iris/ont00001856.ttl new file mode 100644 index 00000000..29429939 --- /dev/null +++ b/src/cco-iris/ont00001856.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001856 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has niece"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001932 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001857.ttl b/src/cco-iris/ont00001857.ttl new file mode 100644 index 00000000..a2ba87c4 --- /dev/null +++ b/src/cco-iris/ont00001857.ttl @@ -0,0 +1,102 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000132 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001777 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001857 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is part of process"@en ; + "x is_part_of_process y iff x and y are instances of Process, such that x occurs during the temporal interval of y, and x either provides an input to y or receives an output of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000144 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000099 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000675 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000752 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000862 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001028 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001227 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001858.ttl b/src/cco-iris/ont00001858.ttl new file mode 100644 index 00000000..f3143f77 --- /dev/null +++ b/src/cco-iris/ont00001858.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001842 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001858 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is daughter of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001987 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001859.ttl b/src/cco-iris/ont00001859.ttl new file mode 100644 index 00000000..41018867 --- /dev/null +++ b/src/cco-iris/ont00001859.ttl @@ -0,0 +1,82 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001859 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is delimited by"@en ; + "An instance of Organization o1 is_delimited_by some Delimiting Domain dd1 iff dd1 is the area within which o1 can legally operate."@en ; + "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001864 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000139 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000532 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001203 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001335 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001860.ttl b/src/cco-iris/ont00001860.ttl new file mode 100644 index 00000000..81d7cda0 --- /dev/null +++ b/src/cco-iris/ont00001860.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001860 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is ancestor of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001968 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001861.ttl b/src/cco-iris/ont00001861.ttl new file mode 100644 index 00000000..f3d7b25e --- /dev/null +++ b/src/cco-iris/ont00001861.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001861 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is material of"@en ; + "An object m is material of an object o when m is the material of which o consists and that material does not undergo a change of kind during the creation of o"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001991 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000030 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001862.ttl b/src/cco-iris/ont00001862.ttl new file mode 100644 index 00000000..047e3b47 --- /dev/null +++ b/src/cco-iris/ont00001862.ttl @@ -0,0 +1,94 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001822 + rdf:type owl:ObjectProperty ; + owl:propertyDisjointWith . + + +### https://www.commoncoreontologies.org/ont00001825 + rdf:type owl:ObjectProperty ; + owl:propertyDisjointWith . + + +### https://www.commoncoreontologies.org/ont00001847 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001862 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + owl:propertyDisjointWith , + , + ; + rdfs:label "interval disjoint"@en ; + "A Temporal Interval INT1 is disjoint with a Temporal Interval INT2 iff INT1 is before or meets INT2 OR INT2 is before or meets INT1. In other words, INT1 and INT2 are disjoint iff INT1 and INT2 do not overlap, contain, or equal one another."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001870 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001896 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001915 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001940 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001971 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001863.ttl b/src/cco-iris/ont00001863.ttl new file mode 100644 index 00000000..a895d257 --- /dev/null +++ b/src/cco-iris/ont00001863.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000101 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001863 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses measurement unit"@en ; + "y uses_measurement_unit x iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001961 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001864.ttl b/src/cco-iris/ont00001864.ttl new file mode 100644 index 00000000..4e446b6f --- /dev/null +++ b/src/cco-iris/ont00001864.ttl @@ -0,0 +1,86 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001859 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001864 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "delimits"@en ; + "An instance of Delimiting Domain dd1 delimits some Organization o1 iff dd1 is the area within which o1 can legally operate."@en ; + "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000472 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001152 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001203 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001335 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001865.ttl b/src/cco-iris/ont00001865.ttl new file mode 100644 index 00000000..a84bb1e4 --- /dev/null +++ b/src/cco-iris/ont00001865.ttl @@ -0,0 +1,160 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001785 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001789 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001804 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001806 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001842 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001850 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001856 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001860 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty , + owl:SymmetricProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has familial relationship to"@en ; + "A relationship between persons by virtue of ancestry or legal union."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001902 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001930 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001932 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001945 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001950 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001953 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001955 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001967 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001968 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001969 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001975 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001988 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001995 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001996 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001866.ttl b/src/cco-iris/ont00001866.ttl new file mode 100644 index 00000000..335f08fb --- /dev/null +++ b/src/cco-iris/ont00001866.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001866 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "is interest of"@en ; + "The inverse of has_interest_in. " ; + "is interest of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001984 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001867.ttl b/src/cco-iris/ont00001867.ttl new file mode 100644 index 00000000..a82a3fd5 --- /dev/null +++ b/src/cco-iris/ont00001867.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001854 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001867 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is daughter in-law of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001868.ttl b/src/cco-iris/ont00001868.ttl new file mode 100644 index 00000000..fee081a5 --- /dev/null +++ b/src/cco-iris/ont00001868.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001868 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:label "is a nominal measurement of"@en ; + "x is_a_nominal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001914 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001966 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000293 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001869.ttl b/src/cco-iris/ont00001869.ttl new file mode 100644 index 00000000..fb475ccc --- /dev/null +++ b/src/cco-iris/ont00001869.ttl @@ -0,0 +1,119 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001795 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval during"@en ; + "A Temporal Interval INT1 is during some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001971 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000085 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000225 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000619 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000832 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000992 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001058 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001088 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001870.ttl b/src/cco-iris/ont00001870.ttl new file mode 100644 index 00000000..c9d3fcfb --- /dev/null +++ b/src/cco-iris/ont00001870.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001825 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001862 + rdf:type owl:ObjectProperty ; + owl:propertyDisjointWith . + + +### https://www.commoncoreontologies.org/ont00001870 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval overlapped by"@en ; + "A Temporal Interval INT2 is overlapped by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst1 is before inst3, inst3 is before inst2, and inst2 is before inst4."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001871.ttl b/src/cco-iris/ont00001871.ttl new file mode 100644 index 00000000..5aca330a --- /dev/null +++ b/src/cco-iris/ont00001871.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001804 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001871 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has wife"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001887 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001872.ttl b/src/cco-iris/ont00001872.ttl new file mode 100644 index 00000000..a80fbfad --- /dev/null +++ b/src/cco-iris/ont00001872.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001872 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is step-brother of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001890 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001996 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001873.ttl b/src/cco-iris/ont00001873.ttl new file mode 100644 index 00000000..94e67c3e --- /dev/null +++ b/src/cco-iris/ont00001873.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001801 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001873 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:range ; + rdfs:comment "See notes for inverse property." ; + rdfs:label "represented by"@en ; + "y represented_by x iff x is an instance of Information Content Entity, and y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001938 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001069 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001874.ttl b/src/cco-iris/ont00001874.ttl new file mode 100644 index 00000000..680c089c --- /dev/null +++ b/src/cco-iris/ont00001874.ttl @@ -0,0 +1,66 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000199 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001874 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:label "is temporal region of"@en ; + "t is temporal region of p iff p occupies temporal region t."@en ; + "Leaving this is in ERO for now since BFO2020 has no inverse of occupies-temporal-region yet."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000008 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000035 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001875.ttl b/src/cco-iris/ont00001875.ttl new file mode 100644 index 00000000..2f3afc73 --- /dev/null +++ b/src/cco-iris/ont00001875.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001875 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval started by"@en ; + "A Temporal Interval INT2 is started by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001923 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001876.ttl b/src/cco-iris/ont00001876.ttl new file mode 100644 index 00000000..ee170de2 --- /dev/null +++ b/src/cco-iris/ont00001876.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001776 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001850 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001876 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is grandfather of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001892 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001903 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001877.ttl b/src/cco-iris/ont00001877.ttl new file mode 100644 index 00000000..b29e85aa --- /dev/null +++ b/src/cco-iris/ont00001877.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001877 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:label "is a interval measurement of"@en ; + "x is_a_interval_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ; + "a measurement of air temperature on the Celsius scale." ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001964 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001966 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001364 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001878.ttl b/src/cco-iris/ont00001878.ttl new file mode 100644 index 00000000..bf1c0c96 --- /dev/null +++ b/src/cco-iris/ont00001878.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001878 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:label "is mention of"@en ; + "x is_mention_of y iff x is an instance Information Bearing Entity and y is an instance Entity, such that x is used as a reference to y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001919 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001879.ttl b/src/cco-iris/ont00001879.ttl new file mode 100644 index 00000000..e3541abd --- /dev/null +++ b/src/cco-iris/ont00001879.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001801 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001879 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:range ; + rdfs:label "designated by"@en ; + "x designated_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that given some context, y uniquely distinguishes x from other entities."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001880.ttl b/src/cco-iris/ont00001880.ttl new file mode 100644 index 00000000..d17b5dcc --- /dev/null +++ b/src/cco-iris/ont00001880.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001809 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001880 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "capability of aggregate"@en ; + "x capability_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Agent Capability, such that x inheres in aggregate y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001898 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000300 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001881.ttl b/src/cco-iris/ont00001881.ttl new file mode 100644 index 00000000..997c2db7 --- /dev/null +++ b/src/cco-iris/ont00001881.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001784 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001881 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is son in-law of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001882.ttl b/src/cco-iris/ont00001882.ttl new file mode 100644 index 00000000..584347fa --- /dev/null +++ b/src/cco-iris/ont00001882.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001840 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001850 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001882 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is grandmother of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001897 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001911 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001883.ttl b/src/cco-iris/ont00001883.ttl new file mode 100644 index 00000000..7355cada --- /dev/null +++ b/src/cco-iris/ont00001883.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001774 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001883 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is brother of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001902 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001884.ttl b/src/cco-iris/ont00001884.ttl new file mode 100644 index 00000000..18814c3d --- /dev/null +++ b/src/cco-iris/ont00001884.ttl @@ -0,0 +1,55 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001801 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001884 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + owl:propertyChainAxiom ( + + ) ; + rdfs:label "condition described by"@en ; + "c condition_described_by p iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001917 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001980 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001885.ttl b/src/cco-iris/ont00001885.ttl new file mode 100644 index 00000000..a650e7fa --- /dev/null +++ b/src/cco-iris/ont00001885.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001853 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001885 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has mother in law"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001886.ttl b/src/cco-iris/ont00001886.ttl new file mode 100644 index 00000000..9e8b7d85 --- /dev/null +++ b/src/cco-iris/ont00001886.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000056 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001834 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001886 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is affected by"@en ; + "x is_affected_by y iff x is an instance of Continuant and y is an instance of Process, and y influences x in some manner, most often by producing a change in x."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000002 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001887.ttl b/src/cco-iris/ont00001887.ttl new file mode 100644 index 00000000..d6e3473b --- /dev/null +++ b/src/cco-iris/ont00001887.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001804 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001871 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001887 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is wife of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001888.ttl b/src/cco-iris/ont00001888.ttl new file mode 100644 index 00000000..d820731c --- /dev/null +++ b/src/cco-iris/ont00001888.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001805 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001888 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "disrupts"@en ; + "A relation where one process disrupts another process from occurring as it would have."@en ; + "To lower the grade of a process is to lower the quality of a process according to some standard, for example when realizing a capability or a function."@en ; + "disrupts"@en ; + "A process can disrupt another process from occurring as it would have by 1) preventing a disposition or role from being realized by that process, 2) lowering the grade of the process, or 3) stopping the process from continuing to occur."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001889.ttl b/src/cco-iris/ont00001889.ttl new file mode 100644 index 00000000..546baba7 --- /dev/null +++ b/src/cco-iris/ont00001889.ttl @@ -0,0 +1,90 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000197 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001889 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "capability of"@en ; + "x capability_of y iff y is an instance of Agent and x is an instance of Agent Capability, such that x inheres in y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001954 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000089 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000568 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001890.ttl b/src/cco-iris/ont00001890.ttl new file mode 100644 index 00000000..13d01d98 --- /dev/null +++ b/src/cco-iris/ont00001890.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001872 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001890 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has step brother"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001996 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001891.ttl b/src/cco-iris/ont00001891.ttl new file mode 100644 index 00000000..bdd13408 --- /dev/null +++ b/src/cco-iris/ont00001891.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001891 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has brother in law"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001952 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001892.ttl b/src/cco-iris/ont00001892.ttl new file mode 100644 index 00000000..bd25e5bf --- /dev/null +++ b/src/cco-iris/ont00001892.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001876 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001892 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is paternal grandfather of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001972 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001893.ttl b/src/cco-iris/ont00001893.ttl new file mode 100644 index 00000000..73d0b109 --- /dev/null +++ b/src/cco-iris/ont00001893.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001893 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdf:type owl:TransitiveProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "instant is after"@en ; + "A temporal instant t2 (a instance of a zero-dimensional temporal region) is after another temporal instant t1 iff there exists some instance of a temporal interval ti1 such that t1 is the starting instant of ti1 and t2 is the ending instant of ti1."@en ; + "'instant is after' is a primitive relationship. Informally, a temporal instant t2 is after some temporal instant t1 if and only if t1 precedes t2."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001990 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000148 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001894.ttl b/src/cco-iris/ont00001894.ttl new file mode 100644 index 00000000..64f0d672 --- /dev/null +++ b/src/cco-iris/ont00001894.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001806 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001843 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001894 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has paternal first cousin"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001895.ttl b/src/cco-iris/ont00001895.ttl new file mode 100644 index 00000000..9fa1b2d2 --- /dev/null +++ b/src/cco-iris/ont00001895.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000056 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001830 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001895 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "accomplice in"@en ; + "An agent a1 is accomplice_in some Processual Entity p1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."@en ; + "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001896.ttl b/src/cco-iris/ont00001896.ttl new file mode 100644 index 00000000..c8f8b7f7 --- /dev/null +++ b/src/cco-iris/ont00001896.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001862 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001896 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdf:type owl:IrreflexiveProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval meets"@en ; + "A Temporal Interval INT1 meets some Temporal Interval INT2 iff there exists some Temporal Instant inst1 such that inst1 is the ending instant of INT1 and inst1 is the starting instant of INT2."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001915 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001897.ttl b/src/cco-iris/ont00001897.ttl new file mode 100644 index 00000000..19429d89 --- /dev/null +++ b/src/cco-iris/ont00001897.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001882 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001897 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is maternal grandmother of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001960 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001898.ttl b/src/cco-iris/ont00001898.ttl new file mode 100644 index 00000000..0fdd9011 --- /dev/null +++ b/src/cco-iris/ont00001898.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001836 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001880 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001898 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "aggregate has capability"@en ; + "x aggregate_has_capability y iff x is an instance of Object Aggregate and y is an instance of Agent Capability, such that x is aggregate bearer of y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000300 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001899.ttl b/src/cco-iris/ont00001899.ttl new file mode 100644 index 00000000..579ebbb2 --- /dev/null +++ b/src/cco-iris/ont00001899.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001899 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "language used in"@en ; + "x language_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Language, such that the literal value of y is a string that is encoded according to the syntax of x."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001976 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001175 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001900.ttl b/src/cco-iris/ont00001900.ttl new file mode 100644 index 00000000..cd328a94 --- /dev/null +++ b/src/cco-iris/ont00001900.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001900 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is geospatial coordinate reference system of"@en ; + "x is_geospatial_coordinate_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001913 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001997 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001901.ttl b/src/cco-iris/ont00001901.ttl new file mode 100644 index 00000000..1a5bd95d --- /dev/null +++ b/src/cco-iris/ont00001901.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001836 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001901 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "aggregate has role"@en ; + "x aggregate_has_role y iff x is an instance of Object Aggregate and y is an instance of Role, such that x aggregate_bearer_of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001902.ttl b/src/cco-iris/ont00001902.ttl new file mode 100644 index 00000000..05c07069 --- /dev/null +++ b/src/cco-iris/ont00001902.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001774 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001792 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001851 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001883 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001902 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is sibling of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001903.ttl b/src/cco-iris/ont00001903.ttl new file mode 100644 index 00000000..ce91c8c4 --- /dev/null +++ b/src/cco-iris/ont00001903.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001876 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001903 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is maternal grandfather of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001973 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001904.ttl b/src/cco-iris/ont00001904.ttl new file mode 100644 index 00000000..07f1f535 --- /dev/null +++ b/src/cco-iris/ont00001904.ttl @@ -0,0 +1,73 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001904 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:range ; + rdfs:label "is measured by"@en ; + "y is_measured_by x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001914 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001917 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001963 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001964 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001965 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001966 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001905.ttl b/src/cco-iris/ont00001905.ttl new file mode 100644 index 00000000..8c2e3a2b --- /dev/null +++ b/src/cco-iris/ont00001905.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001905 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is half-brother of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001927 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001975 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001906.ttl b/src/cco-iris/ont00001906.ttl new file mode 100644 index 00000000..36ae41b0 --- /dev/null +++ b/src/cco-iris/ont00001906.ttl @@ -0,0 +1,45 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001806 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001906 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:comment "Comment is_maternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"@en ; + rdfs:label "is maternal first cousin of"@en ; + "Person A is maternal first cousin of Person B iff Person B has mother M and M has sibling P and P is parent of Person A."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001934 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001907.ttl b/src/cco-iris/ont00001907.ttl new file mode 100644 index 00000000..387a64c5 --- /dev/null +++ b/src/cco-iris/ont00001907.ttl @@ -0,0 +1,65 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001836 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001907 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "aggregate has quality"@en ; + "x aggregate_has_quality y iff x is an instance of Object Aggregate and y is an instance of Quality, such that x aggregate_bearer_of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000507 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000780 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001908.ttl b/src/cco-iris/ont00001908.ttl new file mode 100644 index 00000000..91234bd8 --- /dev/null +++ b/src/cco-iris/ont00001908.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000101 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001837 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001908 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses time zone identifier"@en ; + "x uses_time_zone_identifier y iff x is an instance of Information Bearing Entity and y is an instance of Time Zone Identifier, such that y designates the spatial region associated with the time zone mentioned in x."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000829 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001909.ttl b/src/cco-iris/ont00001909.ttl new file mode 100644 index 00000000..39445962 --- /dev/null +++ b/src/cco-iris/ont00001909.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001796 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001909 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has tangential part"@en ; + "x has_tangential_part y iff x, y, and z are instances of Immaterial Entity, and x has_spatial_part y, such that z externally connects with both x and y."@en ; + "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001910.ttl b/src/cco-iris/ont00001910.ttl new file mode 100644 index 00000000..66ad5224 --- /dev/null +++ b/src/cco-iris/ont00001910.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001910 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "permits"@en ; + "x permits y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y may occur."@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001998 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000751 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001911.ttl b/src/cco-iris/ont00001911.ttl new file mode 100644 index 00000000..6788b641 --- /dev/null +++ b/src/cco-iris/ont00001911.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001882 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001911 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is paternal grandmother of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001937 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001912.ttl b/src/cco-iris/ont00001912.ttl new file mode 100644 index 00000000..491394a0 --- /dev/null +++ b/src/cco-iris/ont00001912.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000101 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001912 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses reference system"@en ; + "y uses_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001913 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001997 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000398 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001913.ttl b/src/cco-iris/ont00001913.ttl new file mode 100644 index 00000000..f8d53b89 --- /dev/null +++ b/src/cco-iris/ont00001913.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001900 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001912 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001913 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses geospatial coordinate reference system"@en ; + "y uses_geospatial_coordinate_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000469 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001914.ttl b/src/cco-iris/ont00001914.ttl new file mode 100644 index 00000000..0e70b0d9 --- /dev/null +++ b/src/cco-iris/ont00001914.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001868 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001904 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001914 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:range ; + rdfs:label "is measured by nominal"@en ; + "y is_measured_by_nominal x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000293 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001915.ttl b/src/cco-iris/ont00001915.ttl new file mode 100644 index 00000000..3c194716 --- /dev/null +++ b/src/cco-iris/ont00001915.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001862 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001896 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001915 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdf:type owl:IrreflexiveProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval met by"@en ; + "A Temporal Interval INT2 is met by some Temporal Interval INT1 iff there exists some Temporal Instant inst1 such that inst1 is the starting instant of INT2 and inst1 is the ending instant of INT1."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001916.ttl b/src/cco-iris/ont00001916.ttl new file mode 100644 index 00000000..c35d85a8 --- /dev/null +++ b/src/cco-iris/ont00001916.ttl @@ -0,0 +1,233 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001808 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001879 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001916 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:label "designates"@en ; + "x designates y iff x is an instance of an Information Content Entity, and y is an instance of an Entity, such that given some context, x uniquely distinguishes y from other entities."@en ; + "a URL designates the location of a Web Page on the internet" , + "a person's name designates that person" , + "a vehicle identification number designates some vehicle" ; + "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000006 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000008 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000203 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000073 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000223 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000292 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000359 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000390 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000399 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000498 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000529 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000540 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000686 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000749 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000827 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000833 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001045 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001103 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001917.ttl b/src/cco-iris/ont00001917.ttl new file mode 100644 index 00000000..97b54af5 --- /dev/null +++ b/src/cco-iris/ont00001917.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001801 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001884 + rdf:type owl:ObjectProperty ; + owl:propertyChainAxiom ( + + ) . + + +### https://www.commoncoreontologies.org/ont00001904 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001917 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:range ; + rdfs:label "described by"@en ; + "x described_by y iff y is an instance of Information Content Entity, and x is an instance of Entity, such that y is about the characteristics by which y can be recognized or visualized."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001982 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001918.ttl b/src/cco-iris/ont00001918.ttl new file mode 100644 index 00000000..3f35c850 --- /dev/null +++ b/src/cco-iris/ont00001918.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000066 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001845 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001918 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "occurs at"@en ; + "x occurs_at y iff x is an instance of Process and y is an instance of Site, such that x occurs in y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000029 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001919.ttl b/src/cco-iris/ont00001919.ttl new file mode 100644 index 00000000..f5efb717 --- /dev/null +++ b/src/cco-iris/ont00001919.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001878 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001919 + rdf:type owl:ObjectProperty ; + rdfs:label "is mentioned by"@en ; + "y is_mention_by x iff x is an instance Information Bearing Entity and y is an instance Entity, such that x is used as a reference to y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001920.ttl b/src/cco-iris/ont00001920.ttl new file mode 100644 index 00000000..22c0a2fa --- /dev/null +++ b/src/cco-iris/ont00001920.ttl @@ -0,0 +1,73 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001801 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001807 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001817 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001920 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:range ; + rdfs:label "prescribed by"@en ; + "x prescribed_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that y serves as a rule or guide for x if x is an Occurrent, or y serves as a model for x if x is a Continuant."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001976 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001998 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001921.ttl b/src/cco-iris/ont00001921.ttl new file mode 100644 index 00000000..b32a95f9 --- /dev/null +++ b/src/cco-iris/ont00001921.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001841 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001921 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has input"@en ; + "y has_input x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000002 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001922.ttl b/src/cco-iris/ont00001922.ttl new file mode 100644 index 00000000..b9eaa244 --- /dev/null +++ b/src/cco-iris/ont00001922.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001922 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:range ; + rdfs:label "has recipient"@en ; + "x has_recipient y iff y is an instance of Agent and x is an instance of Act Of Communication, such that y is the recipient and decoder of the InformationContentEntity intended for communication in x."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001978 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001923.ttl b/src/cco-iris/ont00001923.ttl new file mode 100644 index 00000000..462e21aa --- /dev/null +++ b/src/cco-iris/ont00001923.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001875 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001923 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval starts"@en ; + "A Temporal Interval INT1 starts some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001971 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001924.ttl b/src/cco-iris/ont00001924.ttl new file mode 100644 index 00000000..62284019 --- /dev/null +++ b/src/cco-iris/ont00001924.ttl @@ -0,0 +1,158 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001795 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001821 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001862 + rdf:type owl:ObjectProperty ; + owl:propertyDisjointWith . + + +### https://www.commoncoreontologies.org/ont00001875 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval contains"@en ; + "A Temporal Interval INT2 contains some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, and inst2 is before or identical to inst4, but it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001971 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000063 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000085 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000211 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000225 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000329 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000619 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000800 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000810 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000832 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000992 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001058 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001154 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001166 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001206 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001925.ttl b/src/cco-iris/ont00001925.ttl new file mode 100644 index 00000000..e71fd51b --- /dev/null +++ b/src/cco-iris/ont00001925.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001813 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001925 + rdf:type owl:ObjectProperty ; + rdfs:label "is used by"@en ; + "x is_used_by y iff y is an instance of an Agent and x is an instance of a Material Entity, such that both x and y participate in some instance of a Process wherein y attempts to accomplish a goal by manipulating, deploying, leveraging some attribute of y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001926.ttl b/src/cco-iris/ont00001926.ttl new file mode 100644 index 00000000..ec3b04de --- /dev/null +++ b/src/cco-iris/ont00001926.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001823 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001926 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is paternal uncle of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001988 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001927.ttl b/src/cco-iris/ont00001927.ttl new file mode 100644 index 00000000..1af40364 --- /dev/null +++ b/src/cco-iris/ont00001927.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001905 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001927 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has half brother"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001975 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001928.ttl b/src/cco-iris/ont00001928.ttl new file mode 100644 index 00000000..bd0aa16b --- /dev/null +++ b/src/cco-iris/ont00001928.ttl @@ -0,0 +1,54 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001775 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001928 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is predecessor of"@en ; + "A continuant c1 is a predecessor of some continuant c2 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1."@en ; + "More informally, c1 is a predecessor of c2 iff c1 has been followed or replaced by c2."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000004 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001929.ttl b/src/cco-iris/ont00001929.ttl new file mode 100644 index 00000000..e8a53bb6 --- /dev/null +++ b/src/cco-iris/ont00001929.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001790 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001929 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is maternal uncle of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001988 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001930.ttl b/src/cco-iris/ont00001930.ttl new file mode 100644 index 00000000..5cd38442 --- /dev/null +++ b/src/cco-iris/ont00001930.ttl @@ -0,0 +1,36 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001930 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is second cousin of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001931.ttl b/src/cco-iris/ont00001931.ttl new file mode 100644 index 00000000..6080fdde --- /dev/null +++ b/src/cco-iris/ont00001931.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001810 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001931 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "externally connects with"@en ; + "An immaterial entity im1 externally connects with some immaterial entity im2 iff im1 connects with im2 and im1 does not overlap with im2."@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001932.ttl b/src/cco-iris/ont00001932.ttl new file mode 100644 index 00000000..9fc9a57d --- /dev/null +++ b/src/cco-iris/ont00001932.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001856 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001932 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is niece of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001933.ttl b/src/cco-iris/ont00001933.ttl new file mode 100644 index 00000000..dd61df34 --- /dev/null +++ b/src/cco-iris/ont00001933.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001803 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001933 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "process starts"@en ; + "x process_starts y iff x and y are instances of processes, and x is_cause_of y, and i is an instance of a temporal instant, and r is an instant of a temporal interval, and y has starting instance i, and x occurs on r, and r interval contains i."@en ; + "A process x starts another process y when x causes y while x is still occurring."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001962 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001934.ttl b/src/cco-iris/ont00001934.ttl new file mode 100644 index 00000000..8c3be0d1 --- /dev/null +++ b/src/cco-iris/ont00001934.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001806 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001906 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001934 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has maternal first cousin"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001935.ttl b/src/cco-iris/ont00001935.ttl new file mode 100644 index 00000000..ffb8b81f --- /dev/null +++ b/src/cco-iris/ont00001935.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001849 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001935 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has father in law"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001936.ttl b/src/cco-iris/ont00001936.ttl new file mode 100644 index 00000000..09ede40d --- /dev/null +++ b/src/cco-iris/ont00001936.ttl @@ -0,0 +1,68 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000056 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001778 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001936 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is object of"@en ; + "If p is a process and c is a continuant, then c is object of p if and only if the c is part of the projected state that the agent intends to achieve by performing p."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000544 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000741 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001937.ttl b/src/cco-iris/ont00001937.ttl new file mode 100644 index 00000000..59f2c0f1 --- /dev/null +++ b/src/cco-iris/ont00001937.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001840 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001911 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001937 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has paternal grandmother"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001938.ttl b/src/cco-iris/ont00001938.ttl new file mode 100644 index 00000000..14724903 --- /dev/null +++ b/src/cco-iris/ont00001938.ttl @@ -0,0 +1,76 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001808 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001873 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001938 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:comment "Isomorphism between the carrier of x and the represented entity can be via a direct similarity relation, e.g., grooves in a vinyl record corresponding to sound waves, or linguistic convention, e.g., a court stenographer's transcription of spoken words, as well as others, such as encoding processes for images."@en ; + rdfs:label "represents"@en ; + "x represents y iff x is an instance of Information Content Entity, y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ; + "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en , + "The relationship that is being defined here is that between the content of a photographic image and its object, between the content of a video and its objects and events, between the content of an audio recording and the sounds or events generating those sounds, or between the content of a written transcript and the verbal event that it transcribes."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001069 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001939.ttl b/src/cco-iris/ont00001939.ttl new file mode 100644 index 00000000..ae1f0210 --- /dev/null +++ b/src/cco-iris/ont00001939.ttl @@ -0,0 +1,85 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001798 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001815 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001939 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] ; + rdfs:label "is affiliated with"@en ; + "x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001977 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000647 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001940.ttl b/src/cco-iris/ont00001940.ttl new file mode 100644 index 00000000..718270ff --- /dev/null +++ b/src/cco-iris/ont00001940.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001847 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001862 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001940 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval is before"@en ; + "A TemporalInterval INT1 is before some TemporalInterval INT2 iff there exists TemporalInstants inst1, inst2 such that inst1 is the ending instant of INT1 and inst2 is the starting instant of INT2 and inst1 is before inst2."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001941.ttl b/src/cco-iris/ont00001941.ttl new file mode 100644 index 00000000..00a6a872 --- /dev/null +++ b/src/cco-iris/ont00001941.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001941 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is maternal aunt of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001955 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001958 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001942.ttl b/src/cco-iris/ont00001942.ttl new file mode 100644 index 00000000..3352616d --- /dev/null +++ b/src/cco-iris/ont00001942.ttl @@ -0,0 +1,140 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001800 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001808 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001899 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001910 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001920 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:label "prescribes"@en ; + "x prescribes y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x serves as a rule or guide for y if y an Occurrent, or x serves as a model for y if y is a Continuant."@en ; + "A blueprint prescribes some artifact or facility by being a model for it." , + "A professional code of conduct prescribes some realizations of a profession (role) by giving rules for how the bearer should act in those realizations." , + "An operations plan prescribes an operation by enumerating the tasks that need to be performed in order to achieve the objectives of the operation." ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001974 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000118 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000319 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000575 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000958 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000965 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001943.ttl b/src/cco-iris/ont00001943.ttl new file mode 100644 index 00000000..630c78e4 --- /dev/null +++ b/src/cco-iris/ont00001943.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001798 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001943 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "supervises"@en ; + "A person p1 supervises a person p2 by virtue of p1 directing, managing, or overseeing p2."@en ; + "http://en.wiktionary.org/wiki/supervise" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001977 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001944.ttl b/src/cco-iris/ont00001944.ttl new file mode 100644 index 00000000..8bab7c0d --- /dev/null +++ b/src/cco-iris/ont00001944.ttl @@ -0,0 +1,99 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000176 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001796 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001810 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001827 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001944 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf , + ; + rdfs:domain ; + rdfs:range ; + rdfs:comment "in the sense used here, spatial part of is elsewhere referred to as proper spatial part of"@en ; + rdfs:label "spatial part of"@en ; + "x spatial_part_of y iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000122 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000170 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### https://www.commoncoreontologies.org/ont00000205 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000904 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001945.ttl b/src/cco-iris/ont00001945.ttl new file mode 100644 index 00000000..2d721c61 --- /dev/null +++ b/src/cco-iris/ont00001945.ttl @@ -0,0 +1,59 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001776 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001783 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001812 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001840 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001850 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001945 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is grandchild of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001946.ttl b/src/cco-iris/ont00001946.ttl new file mode 100644 index 00000000..fdc2fa1f --- /dev/null +++ b/src/cco-iris/ont00001946.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001842 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001946 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has father"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001985 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001947.ttl b/src/cco-iris/ont00001947.ttl new file mode 100644 index 00000000..0506132e --- /dev/null +++ b/src/cco-iris/ont00001947.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001809 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001947 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "quality of aggregate"@en ; + "x quality_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Quality, and x inheres_in_aggregate y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000019 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001948.ttl b/src/cco-iris/ont00001948.ttl new file mode 100644 index 00000000..e8278b46 --- /dev/null +++ b/src/cco-iris/ont00001948.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001793 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001948 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is half sister of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001975 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001949.ttl b/src/cco-iris/ont00001949.ttl new file mode 100644 index 00000000..1e32e1a3 --- /dev/null +++ b/src/cco-iris/ont00001949.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001852 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001949 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has accessory"@en ; + "x has_accessory y iff x is an instance of Process and y is an instance of Agent, such that y assists another agent in the commission of x, and y was not located at the location of x when x occurred, and y was not an agent_in x."@en ; + "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000040 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001950.ttl b/src/cco-iris/ont00001950.ttl new file mode 100644 index 00000000..795a71a1 --- /dev/null +++ b/src/cco-iris/ont00001950.ttl @@ -0,0 +1,36 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001950 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is third cousin of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001951.ttl b/src/cco-iris/ont00001951.ttl new file mode 100644 index 00000000..b711c6fc --- /dev/null +++ b/src/cco-iris/ont00001951.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001831 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001951 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has subordinate role"@en ; + "For all x,y,t: x has subordinate role y at t iff: x is an instance of Role at time t, and y is an instance of Role at time t, and there is some z such that x is realized by z and z is an instance of Process which creates, modifies, transfers, or eliminates some u such that u is a Process Regulation at time t, and u is addressed to the bearer of y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001952.ttl b/src/cco-iris/ont00001952.ttl new file mode 100644 index 00000000..a254efe1 --- /dev/null +++ b/src/cco-iris/ont00001952.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001818 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001891 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001952 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is brother-in-law of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001953.ttl b/src/cco-iris/ont00001953.ttl new file mode 100644 index 00000000..5ba10fb5 --- /dev/null +++ b/src/cco-iris/ont00001953.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001953 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "has parent"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001995 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001954.ttl b/src/cco-iris/ont00001954.ttl new file mode 100644 index 00000000..f9d6fba5 --- /dev/null +++ b/src/cco-iris/ont00001954.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001889 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001954 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has capability"@en ; + "x has_capability y iff x is an instance of Agent and y is an instance of Agent Capability, such that x bearer of y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001379 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001955.ttl b/src/cco-iris/ont00001955.ttl new file mode 100644 index 00000000..c2ebc684 --- /dev/null +++ b/src/cco-iris/ont00001955.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001789 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001941 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001955 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is aunt of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001994 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001956.ttl b/src/cco-iris/ont00001956.ttl new file mode 100644 index 00000000..51f493ae --- /dev/null +++ b/src/cco-iris/ont00001956.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001829 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001836 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001956 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "aggregate has disposition"@en ; + "x aggregate_has_disposition y iff x is an instance of Object Aggregate and y is an instance of Disposition, such that x aggregate_bearer_of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000016 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000027 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001957.ttl b/src/cco-iris/ont00001957.ttl new file mode 100644 index 00000000..3f133f3b --- /dev/null +++ b/src/cco-iris/ont00001957.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001802 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001804 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001957 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is husband of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001958.ttl b/src/cco-iris/ont00001958.ttl new file mode 100644 index 00000000..49f6fdbc --- /dev/null +++ b/src/cco-iris/ont00001958.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001789 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001941 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001958 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has maternal aunt"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001959.ttl b/src/cco-iris/ont00001959.ttl new file mode 100644 index 00000000..bb242b5b --- /dev/null +++ b/src/cco-iris/ont00001959.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001959 + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "inhibits"@en ; + "x inhibits y iff x and y are non-identical Processes, d is a Decrease of Realizable Entity, and x is_cause_of d, and r is a Realizable Entity, and d has_participant r, and r realized_in y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001970 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001960.ttl b/src/cco-iris/ont00001960.ttl new file mode 100644 index 00000000..a59d33f7 --- /dev/null +++ b/src/cco-iris/ont00001960.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001840 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001897 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001960 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has maternal grandmother"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001961.ttl b/src/cco-iris/ont00001961.ttl new file mode 100644 index 00000000..3737a7c3 --- /dev/null +++ b/src/cco-iris/ont00001961.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000084 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001863 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001961 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is measurement unit of"@en ; + "x is_measurement_unit_of y iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000120 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001962.ttl b/src/cco-iris/ont00001962.ttl new file mode 100644 index 00000000..675a154e --- /dev/null +++ b/src/cco-iris/ont00001962.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001819 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001933 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001962 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "process started by"@en ; + "x process_started_by y iff x and y are instances of processes, and x is caused_by y, and i is an instance of a temporal instant, and r is an instant of a temporal interval, and x has starting instance i, and y occurs on r, and r interval contains i."@en ; + "A process x is started by another process y when y causes x while y is still occurring."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001963.ttl b/src/cco-iris/ont00001963.ttl new file mode 100644 index 00000000..a600bfee --- /dev/null +++ b/src/cco-iris/ont00001963.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001811 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001904 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001963 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:range ; + rdfs:label "is measured by ordinal"@en ; + "y is_measured_by_ordinal x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale ordered by rank."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001010 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001964.ttl b/src/cco-iris/ont00001964.ttl new file mode 100644 index 00000000..bc085106 --- /dev/null +++ b/src/cco-iris/ont00001964.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001877 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001904 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001964 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:range ; + rdfs:label "is measured by interval"@en ; + "y is_measured_by_interval x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001364 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001965.ttl b/src/cco-iris/ont00001965.ttl new file mode 100644 index 00000000..faaccb71 --- /dev/null +++ b/src/cco-iris/ont00001965.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001904 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001965 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:range ; + rdfs:label "is measured by ratio"@en ; + "y is_measured_by_ratio x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001983 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001022 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001966.ttl b/src/cco-iris/ont00001966.ttl new file mode 100644 index 00000000..93ded086 --- /dev/null +++ b/src/cco-iris/ont00001966.ttl @@ -0,0 +1,95 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001811 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001868 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001877 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001904 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001966 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:comment "This object property, as well as all of its children are typified as functional properties. This means that for instances x, y, and z if x is a measurement of y and x is a measurement of z, then y = z."@en ; + rdfs:label "is a measurement of"@en ; + "x is_a_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ; + "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001982 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001983 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001967.ttl b/src/cco-iris/ont00001967.ttl new file mode 100644 index 00000000..afedb6be --- /dev/null +++ b/src/cco-iris/ont00001967.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001967 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is nephew of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001969 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001968.ttl b/src/cco-iris/ont00001968.ttl new file mode 100644 index 00000000..8f42a166 --- /dev/null +++ b/src/cco-iris/ont00001968.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001860 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001968 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is descendent of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001969.ttl b/src/cco-iris/ont00001969.ttl new file mode 100644 index 00000000..800901a2 --- /dev/null +++ b/src/cco-iris/ont00001969.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001967 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001969 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has nephew"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001970.ttl b/src/cco-iris/ont00001970.ttl new file mode 100644 index 00000000..911c73c8 --- /dev/null +++ b/src/cco-iris/ont00001970.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001959 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001970 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "inhibited by"@en ; + "y inhibited_by x iff x and y are non-identical Processes, d is a Decrease of Realizable Entity, and x is_cause_of d, and r is a Realizable Entity, and d has_participant r, and r realized_in y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001971.ttl b/src/cco-iris/ont00001971.ttl new file mode 100644 index 00000000..f2858273 --- /dev/null +++ b/src/cco-iris/ont00001971.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001814 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001862 + rdf:type owl:ObjectProperty ; + owl:propertyDisjointWith . + + +### https://www.commoncoreontologies.org/ont00001869 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001923 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001924 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001971 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval contained by"@en ; + "A Temporal Interval INT1 is contained by some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, inst2 is before or identical to inst4, and it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000038 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001972.ttl b/src/cco-iris/ont00001972.ttl new file mode 100644 index 00000000..458dae2d --- /dev/null +++ b/src/cco-iris/ont00001972.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001776 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001892 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001972 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has paternal grandfather"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001973.ttl b/src/cco-iris/ont00001973.ttl new file mode 100644 index 00000000..ab0c2bd0 --- /dev/null +++ b/src/cco-iris/ont00001973.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001776 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001903 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001973 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has maternal grandfather"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001974.ttl b/src/cco-iris/ont00001974.ttl new file mode 100644 index 00000000..b913636b --- /dev/null +++ b/src/cco-iris/ont00001974.ttl @@ -0,0 +1,75 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001807 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001942 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001974 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "requires"@en ; + "x requires y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that some y must occur."@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001224 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001975.ttl b/src/cco-iris/ont00001975.ttl new file mode 100644 index 00000000..34c68691 --- /dev/null +++ b/src/cco-iris/ont00001975.ttl @@ -0,0 +1,56 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001793 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001905 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001927 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001948 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001975 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdf:type owl:SymmetricProperty ; + rdfs:label "is half-sibling of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001976.ttl b/src/cco-iris/ont00001976.ttl new file mode 100644 index 00000000..d7e770bb --- /dev/null +++ b/src/cco-iris/ont00001976.ttl @@ -0,0 +1,58 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001899 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001920 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001976 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses language"@en ; + "x uses_language y iff x is an instance of an Information Bearing Entity and y is an instance of a Language such that the literal value of x is a string that is encoded according to the syntax of y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001175 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001977.ttl b/src/cco-iris/ont00001977.ttl new file mode 100644 index 00000000..eed1f183 --- /dev/null +++ b/src/cco-iris/ont00001977.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001794 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001939 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001943 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001977 + rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] ; + rdfs:label "has affiliate"@en ; + "x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001978.ttl b/src/cco-iris/ont00001978.ttl new file mode 100644 index 00000000..03b8b3d4 --- /dev/null +++ b/src/cco-iris/ont00001978.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000056 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001922 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001978 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:label "receives"@en ; + "x receives y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the recipient and decoder of the InformationContentEntity intended for communication in y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001979.ttl b/src/cco-iris/ont00001979.ttl new file mode 100644 index 00000000..dc6dcd2d --- /dev/null +++ b/src/cco-iris/ont00001979.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001781 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001979 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is step-sister of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001996 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001980.ttl b/src/cco-iris/ont00001980.ttl new file mode 100644 index 00000000..4f23ebe1 --- /dev/null +++ b/src/cco-iris/ont00001980.ttl @@ -0,0 +1,71 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001808 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001884 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001980 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:propertyChainAxiom ( + + ) ; + rdfs:label "describes condition"@en ; + "p describes_condition c iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001982 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000127 + rdf:type owl:Class ; + rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001981.ttl b/src/cco-iris/ont00001981.ttl new file mode 100644 index 00000000..cd49a922 --- /dev/null +++ b/src/cco-iris/ont00001981.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001812 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001850 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001981 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has grandson"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001982.ttl b/src/cco-iris/ont00001982.ttl new file mode 100644 index 00000000..90453e6c --- /dev/null +++ b/src/cco-iris/ont00001982.ttl @@ -0,0 +1,77 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#example + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000178 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001808 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001917 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001966 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001980 + rdf:type owl:ObjectProperty ; + owl:propertyChainAxiom ( + + ) . + + +### https://www.commoncoreontologies.org/ont00001982 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:comment "It is possible that this relation should be a functional property, that is for all x, y, z if x describes y and x describes z then y = z. For example, if a financial report x describes the quarterly results of a company y and that same financial report describes the quarterly results of a company z, then it should be inferred that companies y and z are the same. We refrained from classifying the relation as a functional property on the concern that descriptions are multifaceted and so consequently it may be that the same report would contain descriptions of multiple entities."@en ; + rdfs:label "describes"@en ; + "x describes y iff x is an instance of Information Content Entity, and y is an instance of Entity, such that x is about the characteristics by which y can be recognized or visualized."@en ; + "the content of a newspaper article describes some current event" , + "the content of a visitor's log describes some facility visit" , + "the content of an accident report describes some accident" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000853 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001983.ttl b/src/cco-iris/ont00001983.ttl new file mode 100644 index 00000000..9f430bd8 --- /dev/null +++ b/src/cco-iris/ont00001983.ttl @@ -0,0 +1,69 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001965 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001966 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001983 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:label "is a ratio measurement of"@en ; + "x is_a_ratio_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000001 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001022 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00001163 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001984.ttl b/src/cco-iris/ont00001984.ttl new file mode 100644 index 00000000..94e4ea74 --- /dev/null +++ b/src/cco-iris/ont00001984.ttl @@ -0,0 +1,78 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001866 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001984 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "has interest in"@en ; + "A relation between an entity and some process where the entity has an interest in that process."@en ; + "This term is meant to be weakly normative. The only sense in which the process is of positive normative value is that it's prescribed by the entity, or historically of evolutionary benefit to the entity's ancestors, or facilitates a process the entity has an interest in for the prior two reasons. The process an entity has an interest could in many or all ways be harmful to the entity."@en ; + "has interest in"@en ; + "There are four conditions in which an entity has an interest in some process. 1) Biological Condition: If a part (including improper part) of an organism has a function, then that organism has an interest in the realization of that function. 2) Artifactual Condition: If a part (including improper part) of an artifact has a function, then some agent or group of agents, at some time, has an interest in the realization of that function. 3) Prescription Condition: If an agent or group of agents has a plan, then it has an interest in the realization of all the processes and process-combinations prescribed by that plan. 4) Facilitation Condition: If (a) x has an interest in the realization of a disposition y, and (b) the realization of a disposition z facilitates the realization of disposition y, then (c) x has an interest in the realization of disposition z, and by 'facilitates' we mean that the occurrence of a process w, which realizes realization of z is either (1) required for y, to realize or (2) would contribute positively to the grade of, y's realization."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001985.ttl b/src/cco-iris/ont00001985.ttl new file mode 100644 index 00000000..b5971c53 --- /dev/null +++ b/src/cco-iris/ont00001985.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001946 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001985 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is father of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001995 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001986.ttl b/src/cco-iris/ont00001986.ttl new file mode 100644 index 00000000..b16eca2c --- /dev/null +++ b/src/cco-iris/ont00001986.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000057 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001816 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001986 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has output"@en ; + "y has_output x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ; + "https://en.wikipedia.org/w/index.php?title=IPO_model&oldid=1024398398"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000002 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001987.ttl b/src/cco-iris/ont00001987.ttl new file mode 100644 index 00000000..3e66a3d3 --- /dev/null +++ b/src/cco-iris/ont00001987.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001858 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001987 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "has daughter"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00001995 + rdf:type owl:ObjectProperty . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001988.ttl b/src/cco-iris/ont00001988.ttl new file mode 100644 index 00000000..a296ca10 --- /dev/null +++ b/src/cco-iris/ont00001988.ttl @@ -0,0 +1,49 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001785 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001926 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001929 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001988 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is uncle of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001989.ttl b/src/cco-iris/ont00001989.ttl new file mode 100644 index 00000000..5d2d208e --- /dev/null +++ b/src/cco-iris/ont00001989.ttl @@ -0,0 +1,64 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001827 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001855 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001989 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has nontangential part"@en ; + "x has_nontangential_part y iff x and y are instances of Immaterial Entity, and x has_spatial_part y, such that there does not exist another instance of an Immaterial Entity which externally connects with both x and y."@en ; + "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000141 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001990.ttl b/src/cco-iris/ont00001990.ttl new file mode 100644 index 00000000..d2dff588 --- /dev/null +++ b/src/cco-iris/ont00001990.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001754 + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001893 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001990 + rdf:type owl:ObjectProperty , + owl:TransitiveProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "instant is before"@en ; + "A temporal instant t1 (a instance of a zero-dimensional temporal region) is before another temporal instant t2 iff there exists some instance of a temporal interval ti1 such that t1 is the starting instant of ti1 and t2 is the ending instant of ti1."@en ; + "'instant is before' is a primitive relationship. Informally, a temporal instant t1 is before some temporal instant t2 if and only if t1 precedes t2."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000148 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001991.ttl b/src/cco-iris/ont00001991.ttl new file mode 100644 index 00000000..4cbf3a98 --- /dev/null +++ b/src/cco-iris/ont00001991.ttl @@ -0,0 +1,50 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001861 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001991 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf owl:topObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is made of"@en ; + "An object o is made of an object m when m is the material that o consists of and that material does not undergo a change of kind during the creation of o"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000030 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001992.ttl b/src/cco-iris/ont00001992.ttl new file mode 100644 index 00000000..d4a8473b --- /dev/null +++ b/src/cco-iris/ont00001992.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001846 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001992 + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has organizational context"@en ; + "x has_organizational_context y iff y is an instance of an Organization and x is an instance of a Role and z is an instance of a Person, such that z's affiliation with y is a prerequisite for z bearing x or y ascribes x to the bearer of x."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000023 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001180 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001993.ttl b/src/cco-iris/ont00001993.ttl new file mode 100644 index 00000000..c2d2dcc8 --- /dev/null +++ b/src/cco-iris/ont00001993.ttl @@ -0,0 +1,53 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000056 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001844 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001993 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:label "sends"@en ; + "x sends y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001017 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001994.ttl b/src/cco-iris/ont00001994.ttl new file mode 100644 index 00000000..58b2b093 --- /dev/null +++ b/src/cco-iris/ont00001994.ttl @@ -0,0 +1,39 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001788 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001955 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001994 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:label "is paternal aunt of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001995.ttl b/src/cco-iris/ont00001995.ttl new file mode 100644 index 00000000..f3cddd0d --- /dev/null +++ b/src/cco-iris/ont00001995.ttl @@ -0,0 +1,74 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001786 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001839 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001842 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001953 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001985 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001987 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001995 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is parent of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00001262 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001996.ttl b/src/cco-iris/ont00001996.ttl new file mode 100644 index 00000000..bbe4b74b --- /dev/null +++ b/src/cco-iris/ont00001996.ttl @@ -0,0 +1,60 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001781 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001865 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001872 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001890 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001979 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001996 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:label "is step-sibling of"@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001997.ttl b/src/cco-iris/ont00001997.ttl new file mode 100644 index 00000000..6e7b4591 --- /dev/null +++ b/src/cco-iris/ont00001997.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000084 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001900 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf . + + +### https://www.commoncoreontologies.org/ont00001912 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001997 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is reference system of"@en ; + "x is_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000253 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000398 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001998.ttl b/src/cco-iris/ont00001998.ttl new file mode 100644 index 00000000..b7b56db6 --- /dev/null +++ b/src/cco-iris/ont00001998.ttl @@ -0,0 +1,63 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#scopeNote + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### https://www.commoncoreontologies.org/ont00001910 + rdf:type owl:ObjectProperty ; + owl:inverseOf . + + +### https://www.commoncoreontologies.org/ont00001920 + rdf:type owl:ObjectProperty . + + +### https://www.commoncoreontologies.org/ont00001998 + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is permitted by"@en ; + "y is_permitted_by x at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y may occur."@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + + +################################################################# +# Classes +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000015 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001324 + rdf:type owl:Class . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/ont00001999.ttl b/src/cco-iris/ont00001999.ttl new file mode 100644 index 00000000..955c639c --- /dev/null +++ b/src/cco-iris/ont00001999.ttl @@ -0,0 +1,71 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology . + +################################################################# +# Annotation properties +################################################################# + +### http://www.w3.org/2004/02/skos/core#definition + rdf:type owl:AnnotationProperty . + + +### https://www.commoncoreontologies.org/ont00001760 + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000196 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### https://www.commoncoreontologies.org/ont00000311 + rdf:type owl:Class ; + rdfs:subClassOf . + + +### https://www.commoncoreontologies.org/ont00000323 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00000348 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] . + + +### https://www.commoncoreontologies.org/ont00000995 + rdf:type owl:Class . + + +### https://www.commoncoreontologies.org/ont00001999 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:comment """Although its basic function remains the same, a Filter can be used in 2 different ways: +(1) to allow only the desired entities to pass through (e.g. removing dirt from engine oil); or +(2) to allow everything except the desired entities to pass through (e.g. panning for gold)."""@en ; + rdfs:label "Filter Function"@en ; + "An Artifact Function that is realized in a process where entities of a specific type or which have specified properties enter it or pass through it."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### Generated by the OWL API (version 4.5.29) https://github.com/owlcs/owlapi diff --git a/src/cco-iris/readme.md b/src/cco-iris/readme.md new file mode 100644 index 00000000..038d718d --- /dev/null +++ b/src/cco-iris/readme.md @@ -0,0 +1 @@ +testing diff --git a/src/cco-merged/AllCoreOntology.ttl b/src/cco-merged/AllCoreOntology.ttl index 7d2fbd55..361d1362 100644 --- a/src/cco-merged/AllCoreOntology.ttl +++ b/src/cco-merged/AllCoreOntology.ttl @@ -10,7 +10,7 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports , , , @@ -21,6 +21,6 @@ dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; rdfs:comment "An import of all the Common Core mid-level ontologies into a single file so that content is easy to view. The All Core Ontology is not an ontology in the sense it contains no unique content. As such it should not be added to, but can be extended from."@en ; rdfs:label "All Core Ontology"@en ; - owl:versionInfo "Version 2.0"@en . + owl:versionInfo "Version 2.1"@en . ### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi diff --git a/src/cco-merged/CommonCoreOntologiesMerged.ttl b/src/cco-merged/CommonCoreOntologiesMerged.ttl index dd20306f..36b0f365 100644 --- a/src/cco-merged/CommonCoreOntologiesMerged.ttl +++ b/src/cco-merged/CommonCoreOntologiesMerged.ttl @@ -1,23 +1,19 @@ -@prefix : . -@prefix cco: . -@prefix obo: . +@prefix : . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . -@prefix skos: . -@prefix dcterms: . -@base . +@base . rdf:type owl:Ontology ; - owl:versionIRI ; - dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; - dcterms:rights "CUBRC Inc., see full license."@en ; - rdfs:comment "A stand-alone file containing the eleven mid-level Common Core Ontologies plus BFO. Provided for use-cases where one file representing a specific release of CCO and its imports is desirable."@en ; - rdfs:label "Common Core Ontologies Merged"@en ; - owl:versionInfo "Depends on http://purl.obolibrary.org/obo/bfo/2020/bfo-core.ttl, obtained 11/03/2024."@en , - "Version 2.0"@en . + owl:versionIRI ; + "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; + "CUBRC Inc., see full license."@en ; + rdfs:comment "A stand-alone file containing the eleven mid-level Common Core Ontologies plus BFO. Provided for use-cases where one file representing a specific release of CCO and its imports is desirable."@en ; + rdfs:label "Common Core Ontologies Merged"@en ; + owl:versionInfo "Depends on http://purl.obolibrary.org/obo/bfo/2020/bfo-core.ttl, obtained 2026-04-04."@en , + "Version 2.1"@en . ################################################################# # Annotation properties @@ -36,241 +32,245 @@ ### http://purl.org/dc/terms/bibliographicCitation -dcterms:bibliographicCitation rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/contributor -dcterms:contributor rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/created -dcterms:created rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/creator -dcterms:creator rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/description -dcterms:description rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/license -dcterms:license rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/rights -dcterms:rights rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/title -dcterms:title rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2000/01/rdf-schema#altLabel +rdfs:altLabel rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#altLabel -skos:altLabel rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#definition -skos:definition rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#editorialNote -skos:editorialNote rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#example -skos:example rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#prefLabel -skos:prefLabel rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#scopeNote -skos:scopeNote rdf:type owl:AnnotationProperty . + rdf:type owl:AnnotationProperty . ### https://www.commoncoreontologies.org/ont00001735 -cco:ont00001735 rdf:type owl:AnnotationProperty ; - rdfs:label "query text"@en ; - skos:definition "The text of a query that is associated with a class"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "query text"@en ; + "The text of a query that is associated with a class"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001737 -cco:ont00001737 rdf:type owl:AnnotationProperty ; - rdfs:label "doctrinal definition"@en ; - skos:definition "A Definition that is taken directly from a Doctrinal Source."@en ; - skos:scopeNote "There is only one definition for any given term in an ontology; however, a Doctrinal Definition may be provided in addition to the asserted Definition if the preservation of this information is important. When both a Definition and a Doctrinal Definition are provided for a term, the Definition takes precedence."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; - rdfs:subPropertyOf skos:definition . + rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal definition"@en ; + "A Definition that is taken directly from a Doctrinal Source."@en ; + "There is only one definition for any given term in an ontology; however, a Doctrinal Definition may be provided in addition to the asserted Definition if the preservation of this information is important. When both a Definition and a Doctrinal Definition are provided for a term, the Definition takes precedence."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001738 -cco:ont00001738 rdf:type owl:AnnotationProperty ; - rdfs:label "SI unit label"@en ; - skos:definition "An Alternative Label that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI ; - rdfs:subPropertyOf skos:altLabel . + rdf:type owl:AnnotationProperty ; + rdfs:label "SI unit label"@en ; + "An Alternative Label that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001739 -cco:ont00001739 rdf:type owl:AnnotationProperty ; - rdfs:label "ordinal measurement annotation"@en ; - skos:definition "An ordinal measurement value of an instance of a quality, realizable or process profile"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; - rdfs:subPropertyOf cco:ont00001746 . + rdf:type owl:AnnotationProperty ; + rdfs:label "ordinal measurement annotation"@en ; + "An ordinal measurement value of an instance of a quality, realizable or process profile"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001740 -cco:ont00001740 rdf:type owl:AnnotationProperty ; - rdfs:label "SI unit symbol"@en ; - skos:definition "An Acronym that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI ; - rdfs:subPropertyOf cco:ont00001753 . + rdf:type owl:AnnotationProperty ; + rdfs:label "SI unit symbol"@en ; + "An Acronym that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001741 -cco:ont00001741 rdf:type owl:AnnotationProperty ; - rdfs:label "nominal measurement annotation"@en ; - skos:definition "A nominal measurement value of an instance of a quality, realizable or process profile"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; - rdfs:subPropertyOf cco:ont00001746 . + rdf:type owl:AnnotationProperty ; + rdfs:label "nominal measurement annotation"@en ; + "A nominal measurement value of an instance of a quality, realizable or process profile"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001742 -cco:ont00001742 rdf:type owl:AnnotationProperty ; - rdfs:label "term creator"@en ; - skos:definition "The name of the Term Editor who added the term to the ontology."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; - rdfs:subPropertyOf cco:ont00001762 . + rdf:type owl:AnnotationProperty ; + rdfs:label "term creator"@en ; + "The name of the Term Editor who added the term to the ontology."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001743 -cco:ont00001743 rdf:type owl:AnnotationProperty ; - rdfs:label "content license"@en ; - skos:definition "The name and description of the license under which the ideas, concepts and other informational content expressed in the .owl file are released."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "content license"@en ; + "The name and description of the license under which the ideas, concepts and other informational content expressed in the .owl file are released."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001744 -cco:ont00001744 rdf:type owl:AnnotationProperty ; - rdfs:label "copyright"@en ; - skos:definition "An assertion of copyright"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "copyright"@en ; + "An assertion of copyright"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001745 -cco:ont00001745 rdf:type owl:AnnotationProperty ; - rdfs:label "doctrinal source"@en ; - skos:definition "A Definition Source that consists of a formalized doctrine in which the term is authoritatively defined."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; - rdfs:subPropertyOf cco:ont00001754 . + rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal source"@en ; + "A Definition Source that consists of a formalized doctrine in which the term is authoritatively defined."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001746 -cco:ont00001746 rdf:type owl:AnnotationProperty ; - rdfs:label "measurement annotation"@en ; - skos:definition "A measurement value of an instance of a quality, realizable or process profile"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "measurement annotation"@en ; + "A measurement value of an instance of a quality, realizable or process profile"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001747 -cco:ont00001747 rdf:type owl:AnnotationProperty ; - rdfs:label "ratio measurement annotation"@en ; - skos:definition "A ratio measurement value of an instance of a quality, realizable or process profile"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; - rdfs:subPropertyOf cco:ont00001746 . + rdf:type owl:AnnotationProperty ; + rdfs:label "ratio measurement annotation"@en ; + "A ratio measurement value of an instance of a quality, realizable or process profile"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001748 -cco:ont00001748 rdf:type owl:AnnotationProperty ; - rdfs:label "doctrinal label"@en ; - skos:definition "An Alternative Label that consists of the preferred term or phrase used by a Doctrinal Source to denote the entity."@en ; - skos:scopeNote "When the cco:doctrinal_label is identical to the rdfs:label, the cco:doctrinal_label annotation is superfluous. As a subclass of 'alternative label', 'doctrinal label' is intended to be used to provide additional information about the entity when its preferred doctrinal designator is ambiguous or otherwise inappropriate for use as the rdfs:label."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; - rdfs:subPropertyOf skos:altLabel . + rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal label"@en ; + "An Alternative Label that consists of the preferred term or phrase used by a Doctrinal Source to denote the entity."@en ; + "When the cco:doctrinal_label is identical to the rdfs:label, the cco:doctrinal_label annotation is superfluous. As a subclass of 'alternative label', 'doctrinal label' is intended to be used to provide additional information about the entity when its preferred doctrinal designator is ambiguous or otherwise inappropriate for use as the rdfs:label."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001749 -cco:ont00001749 rdf:type owl:AnnotationProperty ; - rdfs:label "doctrinal acronym"@en ; - skos:definition "An Acronym that is used by a Doctrinal Source to denote the entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; - rdfs:subPropertyOf cco:ont00001753 . + rdf:type owl:AnnotationProperty ; + rdfs:label "doctrinal acronym"@en ; + "An Acronym that is used by a Doctrinal Source to denote the entity."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001752 -cco:ont00001752 rdf:type owl:AnnotationProperty ; - rdfs:label "has token unit"@en ; - skos:definition "A relation between an information content entity and a widely used measurement unit of the token used to express it."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "has token unit"@en ; + "A relation between an information content entity and a widely used measurement unit of the token used to express it."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001753 -cco:ont00001753 rdf:type owl:AnnotationProperty ; - rdfs:label "acronym"@en ; - skos:definition "An Alternative Label that consists of a shortened or abbreviated form of the rdfs:label and is used to denote the entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; - rdfs:subPropertyOf skos:altLabel . + rdf:type owl:AnnotationProperty ; + rdfs:label "acronym"@en ; + "An Alternative Label that consists of a shortened or abbreviated form of the rdfs:label and is used to denote the entity."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001754 -cco:ont00001754 rdf:type owl:AnnotationProperty ; - rdfs:label "definition source"@en ; - skos:definition "A citation of where all or some of the information used to create the term's Definition was acquired from."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "definition source"@en ; + "A citation of where all or some of the information used to create the term's Definition was acquired from."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001756 -cco:ont00001756 rdf:type owl:AnnotationProperty ; - rdfs:label "interval measurement annotation"@en ; - skos:definition "A interval measurement value of an instance of a quality, realizable or process profile "@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; - rdfs:subPropertyOf cco:ont00001746 . + rdf:type owl:AnnotationProperty ; + rdfs:label "interval measurement annotation"@en ; + "A interval measurement value of an instance of a quality, realizable or process profile "@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:subPropertyOf . ### https://www.commoncoreontologies.org/ont00001757 -cco:ont00001757 rdf:type owl:AnnotationProperty ; - rdfs:label "designator annotation"@en ; - skos:definition "A name or other identifier that is used to designate an individual."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "designator annotation"@en ; + "A name or other identifier that is used to designate an individual."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001758 -cco:ont00001758 rdf:type owl:AnnotationProperty ; - rdfs:label "http query string"@en ; - skos:definition "The text of an HTTP request that can be sent to a SPARQL Protocol service."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "http query string"@en ; + "The text of an HTTP request that can be sent to a SPARQL Protocol service."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001759 -cco:ont00001759 rdf:type owl:AnnotationProperty ; - rdfs:label "code license"@en ; - skos:definition "The name and description of the license under which the .owl file is released."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "code license"@en ; + "The name and description of the license under which the .owl file is released."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001760 -cco:ont00001760 rdf:type owl:AnnotationProperty ; - rdfs:label "is curated in ontology"@en ; - skos:definition "An annotation property that links a class, property, or named individual to the URI of the ontology where it is located."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "is curated in ontology"@en ; + "An annotation property that links a class, property, or named individual to the URI of the ontology where it is located."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001761 -cco:ont00001761 rdf:type owl:AnnotationProperty ; - rdfs:label "is tokenized by"@en ; - skos:definition "A relation between an information content entity and a widely used token used to express it."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "is tokenized by"@en ; + "A relation between an information content entity and a widely used token used to express it."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001762 -cco:ont00001762 rdf:type owl:AnnotationProperty ; - rdfs:label "term editor"@en ; - skos:definition "The name of a person who contributed to the development or enhancement of the term."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:AnnotationProperty ; + rdfs:label "term editor"@en ; + "The name of a person who contributed to the development or enhancement of the term."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ################################################################# @@ -278,2765 +278,2214 @@ cco:ont00001762 rdf:type owl:AnnotationProperty ; ################################################################# ### http://purl.obolibrary.org/obo/BFO_0000054 -obo:BFO_0000054 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000055 ; - rdfs:domain obo:BFO_0000017 ; - rdfs:range obo:BFO_0000015 ; - "206-BFO" ; - rdfs:label "has realization"@en ; - skos:altLabel "realized in"@en ; - skos:definition "b has realization c =Def c realizes b"@en ; - skos:example "As for realizes"@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + "206-BFO" ; + rdfs:label "has realization"@en ; + "realized in"@en ; + "b has realization c =Def c realizes b"@en ; + "As for realizes"@en . ### http://purl.obolibrary.org/obo/BFO_0000055 -obo:BFO_0000055 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000017 ; - "059-BFO" ; - rdfs:label "realizes"@en ; - skos:definition "(Elucidation) realizes is a relation between a process b and realizable entity c such that c inheres in some d & for all t, if b has participant d then c exists & the type instantiated by b is correlated with the type instantiated by c"@en ; - skos:example "A balding process realizes a disposition to go bald; a studying process realizes a student role; a process of pumping blood realizes the pumping function of a heart"@en . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + "059-BFO" ; + rdfs:label "realizes"@en ; + "(Elucidation) realizes is a relation between a process b and realizable entity c such that c inheres in some d & for all t, if b has participant d then c exists & the type instantiated by b is correlated with the type instantiated by c"@en ; + "A balding process realizes a disposition to go bald; a studying process realizes a student role; a process of pumping blood realizes the pumping function of a heart"@en . ### http://purl.obolibrary.org/obo/BFO_0000056 -obo:BFO_0000056 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000057 ; - rdfs:domain [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000020 - obo:BFO_0000031 - [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] - ) - ] ; - rdfs:range obo:BFO_0000015 ; - "250-BFO" ; - rdfs:label "participates in"@en ; - skos:definition "(Elucidation) participates in holds between some b that is either a specifically dependent continuant or generically dependent continuant or independent continuant that is not a spatial region & some process p such that b participates in p some way"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:range ; + "250-BFO" ; + rdfs:label "participates in"@en ; + "(Elucidation) participates in holds between some b that is either a specifically dependent continuant or generically dependent continuant or independent continuant that is not a spatial region & some process p such that b participates in p some way"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000057 -obo:BFO_0000057 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000020 - obo:BFO_0000031 - [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] - ) - ] ; - "248-BFO" ; - rdfs:label "has participant"@en ; - skos:definition "p has participant c =Def c participates in p"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + "248-BFO" ; + rdfs:label "has participant"@en ; + "p has participant c =Def c participates in p"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000058 -obo:BFO_0000058 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000059 ; - rdfs:domain obo:BFO_0000031 ; - rdfs:range [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000015 - obo:BFO_0000020 - ) - ] ; - "258-BFO" ; - rdfs:label "is concretized by"@en ; - skos:definition "c is concretized by b =Def b concretizes c"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + "258-BFO" ; + rdfs:label "is concretized by"@en ; + "c is concretized by b =Def b concretizes c"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000059 -obo:BFO_0000059 rdf:type owl:ObjectProperty ; - rdfs:domain [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000015 - obo:BFO_0000020 - ) - ] ; - rdfs:range obo:BFO_0000031 ; - "256-BFO" ; - rdfs:label "concretizes"@en ; - skos:definition "b concretizes c =Def b is a process or a specifically dependent continuant & c is a generically dependent continuant & there is some time t such that c is the pattern or content which b shares at t with actual or potential copies"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:range ; + "256-BFO" ; + rdfs:label "concretizes"@en ; + "b concretizes c =Def b is a process or a specifically dependent continuant & c is a generically dependent continuant & there is some time t such that c is the pattern or content which b shares at t with actual or potential copies"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000062 -obo:BFO_0000062 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000063 ; - rdf:type owl:TransitiveProperty ; - rdfs:domain obo:BFO_0000003 ; - rdfs:range obo:BFO_0000003 ; - "213-BFO" ; - rdfs:label "preceded by"@en ; - skos:definition "b preceded by c =Def b precedes c"@en ; - skos:example "The temporal region occupied by the second half of the match is preceded by the temporal region occupied by the first half of the match"@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdf:type owl:TransitiveProperty ; + rdfs:domain ; + rdfs:range ; + "213-BFO" ; + rdfs:label "preceded by"@en ; + "b preceded by c =Def b precedes c"@en ; + "The temporal region occupied by the second half of the match is preceded by the temporal region occupied by the first half of the match"@en . ### http://purl.obolibrary.org/obo/BFO_0000063 -obo:BFO_0000063 rdf:type owl:ObjectProperty , - owl:TransitiveProperty ; - rdfs:domain obo:BFO_0000003 ; - rdfs:range obo:BFO_0000003 ; - "270-BFO" ; - rdfs:label "precedes"@en ; - skos:definition "(Elucidation) precedes is a relation between occurrents o, o' such that if t is the temporal extent of o & t' is the temporal extent of o' then either the last instant of o is before the first instant of o' or the last instant of o is the first instant of o' & neither o nor o' are temporal instants"@en ; - skos:example "The temporal region occupied by Mary's birth precedes the temporal region occupied by Mary's death."@en ; - skos:scopeNote "Each temporal region is its own temporal extent. The temporal extent of a spatiotemporal region is the temporal region it temporally projects onto. The temporal extent of a process or process boundary that occupies temporal region t is t." , - "Precedes defines a strict partial order on occurrents." . + rdf:type owl:ObjectProperty , + owl:TransitiveProperty ; + rdfs:domain ; + rdfs:range ; + "270-BFO" ; + rdfs:label "precedes"@en ; + "(Elucidation) precedes is a relation between occurrents o, o' such that if t is the temporal extent of o & t' is the temporal extent of o' then either the last instant of o is before the first instant of o' or the last instant of o is the first instant of o' & neither o nor o' are temporal instants"@en ; + "The temporal region occupied by Mary's birth precedes the temporal region occupied by Mary's death."@en ; + "Each temporal region is its own temporal extent. The temporal extent of a spatiotemporal region is the temporal region it temporally projects onto. The temporal extent of a process or process boundary that occupies temporal region t is t." , + "Precedes defines a strict partial order on occurrents." . ### http://purl.obolibrary.org/obo/BFO_0000066 -obo:BFO_0000066 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000183 ; - rdfs:domain [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000015 - obo:BFO_0000035 - ) - ] ; - rdfs:range [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000029 - obo:BFO_0000040 - ) - ] ; - "143-BFO" ; - rdfs:label "occurs in"@en ; - skos:definition "b occurs in c =Def b is a process or a process boundary & c is a material entity or site & there exists a spatiotemporal region r & b occupies spatiotemporal region r & for all time t, if b exists at t then c exists at t & there exist spatial regions s and s' where b spatially projects onto s at t & c occupies spatial region s' at t & s is a continuant part of s' at t"@en ; - skos:example "A process of digestion occurs in the interior of an organism; a process of loading artillery rounds into a tank cannon occurs in the interior of the tank"@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + "143-BFO" ; + rdfs:label "occurs in"@en ; + "b occurs in c =Def b is a process or a process boundary & c is a material entity or site & there exists a spatiotemporal region r & b occupies spatiotemporal region r & for all time t, if b exists at t then c exists at t & there exist spatial regions s and s' where b spatially projects onto s at t & c occupies spatial region s' at t & s is a continuant part of s' at t"@en ; + "A process of digestion occurs in the interior of an organism; a process of loading artillery rounds into a tank cannon occurs in the interior of the tank"@en . ### http://purl.obolibrary.org/obo/BFO_0000084 -obo:BFO_0000084 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000101 ; - rdfs:domain obo:BFO_0000031 ; - rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - "252-BFO" ; - rdfs:label "generically depends on"@en ; - skos:altLabel "g-depends on"@en ; - skos:definition "b generically depends on c =Def b is a generically dependent continuant & c is an independent continuant that is not a spatial region & at some time t there inheres in c a specifically dependent continuant which concretizes b at t"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + "252-BFO" ; + rdfs:label "generically depends on"@en ; + "g-depends on"@en ; + "b generically depends on c =Def b is a generically dependent continuant & c is an independent continuant that is not a spatial region & at some time t there inheres in c a specifically dependent continuant which concretizes b at t"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000101 -obo:BFO_0000101 rdf:type owl:ObjectProperty ; - rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:range obo:BFO_0000031 ; - "254-BFO" ; - rdfs:label "is carrier of"@en ; - skos:definition "b is carrier of c =Def there is some time t such that c generically depends on b at t"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + rdfs:domain [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range ; + "254-BFO" ; + rdfs:label "is carrier of"@en ; + "b is carrier of c =Def there is some time t such that c generically depends on b at t"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000108 -obo:BFO_0000108 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range obo:BFO_0000008 ; - "118-BFO" ; - rdfs:label "exists at"@en ; - skos:definition "(Elucidation) exists at is a relation between a particular and some temporal region at which the particular exists"@en ; - skos:example "First World War exists at 1914-1916; Mexico exists at January 1, 2000"@en . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + "118-BFO" ; + rdfs:label "exists at"@en ; + "(Elucidation) exists at is a relation between a particular and some temporal region at which the particular exists"@en ; + "First World War exists at 1914-1916; Mexico exists at January 1, 2000"@en . ### http://purl.obolibrary.org/obo/BFO_0000115 -obo:BFO_0000115 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000178 ; - owl:inverseOf obo:BFO_0000129 ; - rdfs:domain obo:BFO_0000040 ; - rdfs:range obo:BFO_0000040 ; - "230-BFO" ; - rdfs:label "has member part"@en ; - skos:definition "b has member part c =Def c member part of b"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + "230-BFO" ; + rdfs:label "has member part"@en ; + "b has member part c =Def c member part of b"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000117 -obo:BFO_0000117 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000132 ; - rdf:type owl:TransitiveProperty ; - rdfs:domain obo:BFO_0000003 ; - rdfs:range obo:BFO_0000003 ; - "202-BFO" ; - rdfs:label "has occurrent part"@en ; - skos:definition "b has occurrent part c =Def c occurrent part of b"@en ; - skos:example "Mary's life has occurrent part Mary's 5th birthday"@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdf:type owl:TransitiveProperty ; + rdfs:domain ; + rdfs:range ; + "202-BFO" ; + rdfs:label "has occurrent part"@en ; + "b has occurrent part c =Def c occurrent part of b"@en ; + "Mary's life has occurrent part Mary's 5th birthday"@en . ### http://purl.obolibrary.org/obo/BFO_0000121 -obo:BFO_0000121 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000117 ; - owl:inverseOf obo:BFO_0000139 ; - rdf:type owl:TransitiveProperty ; - rdfs:domain obo:BFO_0000003 ; - rdfs:range obo:BFO_0000003 ; - "211-BFO" ; - rdfs:label "has temporal part"@en ; - skos:definition "b has temporal part c =Def c temporal part of b"@en ; - skos:example "Your life has temporal part the first year of your life"@en . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdf:type owl:TransitiveProperty ; + rdfs:domain ; + rdfs:range ; + "211-BFO" ; + rdfs:label "has temporal part"@en ; + "b has temporal part c =Def c temporal part of b"@en ; + "Your life has temporal part the first year of your life"@en . ### http://purl.obolibrary.org/obo/BFO_0000124 -obo:BFO_0000124 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000171 ; - rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - "236-BFO" ; - rdfs:label "location of"@en ; - skos:definition "b location of c =Def c located in b"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + "236-BFO" ; + rdfs:label "location of"@en ; + "b location of c =Def c located in b"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000127 -obo:BFO_0000127 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000218 ; - rdfs:domain obo:BFO_0000040 ; - rdfs:range obo:BFO_0000016 ; - "244-BFO" ; - rdfs:label "material basis of"@en ; - skos:definition "b material basis of c =Def c has material basis b"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + "244-BFO" ; + rdfs:label "material basis of"@en ; + "b material basis of c =Def c has material basis b"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000129 -obo:BFO_0000129 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000176 ; - rdfs:domain obo:BFO_0000040 ; - rdfs:range obo:BFO_0000040 ; - "228-BFO" ; - rdfs:label "member part of"@en ; - skos:definition "b member part of c =Def b is an object & c is a material entity & there is some time t such that b continuant part of c at t & there is a mutually exhaustive and pairwise disjoint partition of c into objects x1, ..., xn (for some n ≠ 1) with b = xi (for some 1 <= i <= n)"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + "228-BFO" ; + rdfs:label "member part of"@en ; + "b member part of c =Def b is an object & c is a material entity & there is some time t such that b continuant part of c at t & there is a mutually exhaustive and pairwise disjoint partition of c into objects x1, ..., xn (for some n ≠ 1) with b = xi (for some 1 <= i <= n)"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000132 -obo:BFO_0000132 rdf:type owl:ObjectProperty , - owl:TransitiveProperty ; - rdfs:domain obo:BFO_0000003 ; - rdfs:range obo:BFO_0000003 ; - "003-BFO" ; - rdfs:label "occurrent part of"@en ; - skos:definition "(Elucidation) occurrent part of is a relation between occurrents b and c when b is part of c"@en ; - skos:example "Mary's 5th birthday is an occurrent part of Mary's life; the first set of the tennis match is an occurrent part of the tennis match"@en . + rdf:type owl:ObjectProperty , + owl:TransitiveProperty ; + rdfs:domain ; + rdfs:range ; + "003-BFO" ; + rdfs:label "occurrent part of"@en ; + "(Elucidation) occurrent part of is a relation between occurrents b and c when b is part of c"@en ; + "Mary's 5th birthday is an occurrent part of Mary's life; the first set of the tennis match is an occurrent part of the tennis match"@en . ### http://purl.obolibrary.org/obo/BFO_0000139 -obo:BFO_0000139 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000132 ; - rdf:type owl:TransitiveProperty ; - rdfs:domain obo:BFO_0000003 ; - rdfs:range obo:BFO_0000003 ; - "078-BFO" ; - rdfs:label "temporal part of"@en ; - skos:definition "b temporal part of c =Def b occurrent part of c & (b and c are temporal regions) or (b and c are spatiotemporal regions & b temporally projects onto an occurrent part of the temporal region that c temporally projects onto) or (b and c are processes or process boundaries & b occupies a temporal region that is an occurrent part of the temporal region that c occupies)"@en ; - skos:example "Your heart beating from 4pm to 5pm today is a temporal part of the process of your heart beating; the 4th year of your life is a temporal part of your life, as is the process boundary which separates the 3rd and 4th years of your life; the first quarter of a game of football is a temporal part of the whole game"@en . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdf:type owl:TransitiveProperty ; + rdfs:domain ; + rdfs:range ; + "078-BFO" ; + rdfs:label "temporal part of"@en ; + "b temporal part of c =Def b occurrent part of c & (b and c are temporal regions) or (b and c are spatiotemporal regions & b temporally projects onto an occurrent part of the temporal region that c temporally projects onto) or (b and c are processes or process boundaries & b occupies a temporal region that is an occurrent part of the temporal region that c occupies)"@en ; + "Your heart beating from 4pm to 5pm today is a temporal part of the process of your heart beating; the 4th year of your life is a temporal part of your life, as is the process boundary which separates the 3rd and 4th years of your life; the first quarter of a game of football is a temporal part of the whole game"@en . ### http://purl.obolibrary.org/obo/BFO_0000153 -obo:BFO_0000153 rdf:type owl:ObjectProperty , - owl:FunctionalProperty ; - rdfs:domain obo:BFO_0000011 ; - rdfs:range obo:BFO_0000008 ; - "080-BFO" ; - rdfs:label "temporally projects onto"@en ; - skos:definition "(Elucidation) temporally projects onto is a relation between a spatiotemporal region s and some temporal region which is the temporal extent of s"@en ; - skos:example "The world line of a particle temporally projects onto the temporal region extending from the beginning to the end of the existence of the particle"@en . + rdf:type owl:ObjectProperty , + owl:FunctionalProperty ; + rdfs:domain ; + rdfs:range ; + "080-BFO" ; + rdfs:label "temporally projects onto"@en ; + "(Elucidation) temporally projects onto is a relation between a spatiotemporal region s and some temporal region which is the temporal extent of s"@en ; + "The world line of a particle temporally projects onto the temporal region extending from the beginning to the end of the existence of the particle"@en . ### http://purl.obolibrary.org/obo/BFO_0000171 -obo:BFO_0000171 rdf:type owl:ObjectProperty ; - rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - "234-BFO" ; - rdfs:label "located in"@en ; - skos:definition "b located in c =Def b is an independent continuant & c is an independent & neither is a spatial region & there is some time t such that the spatial region which b occupies at t is continuant part of the spatial region which c occupies at t"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + rdfs:domain [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + "234-BFO" ; + rdfs:label "located in"@en ; + "b located in c =Def b is an independent continuant & c is an independent & neither is a spatial region & there is some time t such that the spatial region which b occupies at t is continuant part of the spatial region which c occupies at t"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000176 -obo:BFO_0000176 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000178 ; - rdfs:domain obo:BFO_0000002 ; - rdfs:range obo:BFO_0000002 ; - "221-BFO" ; - rdfs:label "continuant part of"@en ; - skos:definition "b continuant part of c =Def b and c are continuants & there is some time t such that b and c exist at t & b continuant part of c at t"@en ; - skos:example "Milk teeth continuant part of human; surgically removed tumour continuant part of organism"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + "221-BFO" ; + rdfs:label "continuant part of"@en ; + "b continuant part of c =Def b and c are continuants & there is some time t such that b and c exist at t & b continuant part of c at t"@en ; + "Milk teeth continuant part of human; surgically removed tumour continuant part of organism"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000178 -obo:BFO_0000178 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000002 ; - rdfs:range obo:BFO_0000002 ; - "271-BFO" ; - rdfs:label "has continuant part"@en ; - skos:definition "b has continuant part c =Def c continuant part of b"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + "271-BFO" ; + rdfs:label "has continuant part"@en ; + "b has continuant part c =Def c continuant part of b"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000183 -obo:BFO_0000183 rdf:type owl:ObjectProperty ; - rdfs:domain [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000029 - obo:BFO_0000040 - ) - ] ; - rdfs:range [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000015 - obo:BFO_0000035 - ) - ] ; - "267-BFO" ; - rdfs:label "environs"@en ; - skos:altLabel "contains process"@en ; - skos:definition "b environs c =Def c occurs in b"@en ; - skos:example "Mouth environs process of mastication; city environs traffic"@en . + rdf:type owl:ObjectProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + "267-BFO" ; + rdfs:label "environs"@en ; + "contains process"@en ; + "b environs c =Def c occurs in b"@en ; + "Mouth environs process of mastication; city environs traffic"@en . ### http://purl.obolibrary.org/obo/BFO_0000184 -obo:BFO_0000184 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000185 ; - rdf:type owl:FunctionalProperty , - owl:InverseFunctionalProperty ; - rdfs:domain obo:BFO_0000182 ; - rdfs:range obo:BFO_0000040 ; - "144-BFO" ; - rdfs:label "history of"@en ; - skos:definition "(Elucidation) history of is a relation between history b and material entity c such that b is the unique history of c"@en ; - skos:example "This life is the history of this organism"@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdf:type owl:FunctionalProperty , + owl:InverseFunctionalProperty ; + rdfs:domain ; + rdfs:range ; + "144-BFO" ; + rdfs:label "history of"@en ; + "(Elucidation) history of is a relation between history b and material entity c such that b is the unique history of c"@en ; + "This life is the history of this organism"@en . ### http://purl.obolibrary.org/obo/BFO_0000185 -obo:BFO_0000185 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000040 ; - rdfs:range obo:BFO_0000182 ; - "145-BFO" ; - rdfs:label "has history"@en ; - skos:definition "b has history c =Def c history of b"@en ; - skos:example "This organism has history this life"@en . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + "145-BFO" ; + rdfs:label "has history"@en ; + "b has history c =Def c history of b"@en ; + "This organism has history this life"@en . ### http://purl.obolibrary.org/obo/BFO_0000194 -obo:BFO_0000194 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000195 ; - rdfs:domain [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000020 - [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] - ) - ] ; - rdfs:range obo:BFO_0000020 ; - "260-BFO" ; - rdfs:label "specifically depended on by"@en ; - skos:altLabel "s-depended on by"@en ; - skos:definition "b specifically depended on by c =Def c specifically depends on b"@en ; - skos:example "Coloured object specifically depended on by colour"@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:range ; + "260-BFO" ; + rdfs:label "specifically depended on by"@en ; + "s-depended on by"@en ; + "b specifically depended on by c =Def c specifically depends on b"@en ; + "Coloured object specifically depended on by colour"@en . ### http://purl.obolibrary.org/obo/BFO_0000195 -obo:BFO_0000195 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000020 ; - rdfs:range [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000020 - [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] - ) - ] ; - "012-BFO" ; - rdfs:label "specifically depends on"@en ; - skos:altLabel "s-depends on"@en ; - skos:definition "(Elucidation) specifically depends on is a relation between a specifically dependent continuant b and specifically dependent continuant or independent continuant that is not a spatial region c such that b and c share no parts in common & b is of a nature such that at all times t it cannot exist unless c exists & b is not a boundary of c"@en ; - skos:example "A shape specifically depends on the shaped object; hue, saturation and brightness of a colour sample specifically depends on each other"@en ; - skos:scopeNote "The analogue of specifically depends on for occurrents is has participant."@en . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + "012-BFO" ; + rdfs:label "specifically depends on"@en ; + "s-depends on"@en ; + "(Elucidation) specifically depends on is a relation between a specifically dependent continuant b and specifically dependent continuant or independent continuant that is not a spatial region c such that b and c share no parts in common & b is of a nature such that at all times t it cannot exist unless c exists & b is not a boundary of c"@en ; + "A shape specifically depends on the shaped object; hue, saturation and brightness of a colour sample specifically depends on each other"@en ; + "The analogue of specifically depends on for occurrents is has participant."@en . ### http://purl.obolibrary.org/obo/BFO_0000196 -obo:BFO_0000196 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000194 ; - owl:inverseOf obo:BFO_0000197 ; - rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:range obo:BFO_0000020 ; - "053-BFO" ; - rdfs:label "bearer of"@en ; - skos:definition "b bearer of c =Def c inheres in b"@en ; - skos:example "A patch of ink is the bearer of a colour quality; an organism is the bearer of a temperature quality"@en . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range ; + "053-BFO" ; + rdfs:label "bearer of"@en ; + "b bearer of c =Def c inheres in b"@en ; + "A patch of ink is the bearer of a colour quality; an organism is the bearer of a temperature quality"@en . ### http://purl.obolibrary.org/obo/BFO_0000197 -obo:BFO_0000197 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000195 ; - rdfs:domain obo:BFO_0000020 ; - rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - "051-BFO" ; - rdfs:label "inheres in"@en ; - skos:definition "b inheres in c =Def b is a specifically dependent continuant & c is an independent continuant that is not a spatial region & b specifically depends on c"@en ; - skos:example "A shape inheres in a shaped object; a mass inheres in a material entity"@en . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + "051-BFO" ; + rdfs:label "inheres in"@en ; + "b inheres in c =Def b is a specifically dependent continuant & c is an independent continuant that is not a spatial region & b specifically depends on c"@en ; + "A shape inheres in a shaped object; a mass inheres in a material entity"@en . ### http://purl.obolibrary.org/obo/BFO_0000199 -obo:BFO_0000199 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001874 ; - rdf:type owl:FunctionalProperty ; - rdfs:domain [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000015 - obo:BFO_0000035 - ) - ] ; - rdfs:range obo:BFO_0000008 ; - "132-BFO" ; - rdfs:label "occupies temporal region"@en ; - skos:definition "p occupies temporal region t =Def p is a process or process boundary & the spatiotemporal region occupied by p temporally projects onto t"@en ; - skos:example "The Second World War occupies the temporal region September 1, 1939 - September 2, 1945"@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdf:type owl:FunctionalProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:range ; + "132-BFO" ; + rdfs:label "occupies temporal region"@en ; + "p occupies temporal region t =Def p is a process or process boundary & the spatiotemporal region occupied by p temporally projects onto t"@en ; + "The Second World War occupies the temporal region September 1, 1939 - September 2, 1945"@en . ### http://purl.obolibrary.org/obo/BFO_0000200 -obo:BFO_0000200 rdf:type owl:ObjectProperty , - owl:FunctionalProperty ; - rdfs:domain [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000015 - obo:BFO_0000035 - ) - ] ; - rdfs:range obo:BFO_0000011 ; - "082-BFO" ; - rdfs:label "occupies spatiotemporal region"@en ; - skos:definition "(Elucidation) occupies spatiotemporal region is a relation between a process or process boundary p and the spatiotemporal region s which is its spatiotemporal extent"@en ; - skos:example "A particle emitted by a nuclear reactor occupies the spatiotemporal region which is its trajectory"@en . + rdf:type owl:ObjectProperty , + owl:FunctionalProperty ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:range ; + "082-BFO" ; + rdfs:label "occupies spatiotemporal region"@en ; + "(Elucidation) occupies spatiotemporal region is a relation between a process or process boundary p and the spatiotemporal region s which is its spatiotemporal extent"@en ; + "A particle emitted by a nuclear reactor occupies the spatiotemporal region which is its trajectory"@en . ### http://purl.obolibrary.org/obo/BFO_0000210 -obo:BFO_0000210 rdf:type owl:ObjectProperty ; - rdfs:domain [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:range obo:BFO_0000006 ; - "232-BFO" ; - rdfs:label "occupies spatial region"@en ; - skos:definition "b occupies spatial region r =Def b is an independent continuant that is not a spatial region & r is a spatial region & there is some time t such that every continuant part of b occupies some continuant part of r at t and no continuant part of b occupies any spatial region that is not a continuant part of r at t"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + rdfs:domain [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range ; + "232-BFO" ; + rdfs:label "occupies spatial region"@en ; + "b occupies spatial region r =Def b is an independent continuant that is not a spatial region & r is a spatial region & there is some time t such that every continuant part of b occupies some continuant part of r at t and no continuant part of b occupies any spatial region that is not a continuant part of r at t"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000216 -obo:BFO_0000216 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000011 ; - rdfs:range obo:BFO_0000006 ; - "246-BFO" ; - rdfs:label "spatially projects onto"@en ; - skos:definition "(Elucidation) spatially projects onto is a relation between some spatiotemporal region b and spatial region c such that at some time t, c is the spatial extent of b at t"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + "246-BFO" ; + rdfs:label "spatially projects onto"@en ; + "(Elucidation) spatially projects onto is a relation between some spatiotemporal region b and spatial region c such that at some time t, c is the spatial extent of b at t"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000218 -obo:BFO_0000218 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000016 ; - rdfs:range obo:BFO_0000040 ; - "242-BFO" ; - rdfs:label "has material basis"@en ; - skos:definition "b has material basis c =Def b is a disposition & c is a material entity & there is some d bearer of b & there is some time t such that c is a continuant part of d at t & d has disposition b because c is a continuant part of d at t"@en ; - skos:scopeNote "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + "242-BFO" ; + rdfs:label "has material basis"@en ; + "b has material basis c =Def b is a disposition & c is a material entity & there is some d bearer of b & there is some time t such that c is a continuant part of d at t & d has disposition b because c is a continuant part of d at t"@en ; + "Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: "@en . ### http://purl.obolibrary.org/obo/BFO_0000221 -obo:BFO_0000221 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000222 ; - rdfs:domain obo:BFO_0000203 ; - rdfs:range obo:BFO_0000008 ; - "268-BFO" ; - rdfs:label "first instant of"@en ; - skos:definition "t first instant of t' =Def t is a temporal instant & t' is a temporal region t' & t precedes all temporal parts of t' other than t"@en ; - skos:example "An hour starting at midnight yesterday has first instant midnight yesterday"@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + "268-BFO" ; + rdfs:label "first instant of"@en ; + "t first instant of t' =Def t is a temporal instant & t' is a temporal region t' & t precedes all temporal parts of t' other than t"@en ; + "An hour starting at midnight yesterday has first instant midnight yesterday"@en . ### http://purl.obolibrary.org/obo/BFO_0000222 -obo:BFO_0000222 rdf:type owl:ObjectProperty , - owl:FunctionalProperty ; - rdfs:domain obo:BFO_0000008 ; - rdfs:range obo:BFO_0000203 ; - "261-BFO" ; - rdfs:label "has first instant"@en ; - skos:definition "t has first instant t' =Def t' first instant of t"@en ; - skos:example "The first hour of a year has first instant midnight on December 31"@en . + rdf:type owl:ObjectProperty , + owl:FunctionalProperty ; + rdfs:domain ; + rdfs:range ; + "261-BFO" ; + rdfs:label "has first instant"@en ; + "t has first instant t' =Def t' first instant of t"@en ; + "The first hour of a year has first instant midnight on December 31"@en . ### http://purl.obolibrary.org/obo/BFO_0000223 -obo:BFO_0000223 rdf:type owl:ObjectProperty ; - owl:inverseOf obo:BFO_0000224 ; - rdfs:domain obo:BFO_0000203 ; - rdfs:range obo:BFO_0000008 ; - "269-BFO" ; - rdfs:label "last instant of"@en ; - skos:definition "t last instant of t' =Def t is a temporal instant & t' is a temporal region & all temporal parts of t' other than t precede t"@en ; - skos:example "Last midnight is the last instant of yesterday"@en . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + "269-BFO" ; + rdfs:label "last instant of"@en ; + "t last instant of t' =Def t is a temporal instant & t' is a temporal region & all temporal parts of t' other than t precede t"@en ; + "Last midnight is the last instant of yesterday"@en . ### http://purl.obolibrary.org/obo/BFO_0000224 -obo:BFO_0000224 rdf:type owl:ObjectProperty , - owl:FunctionalProperty ; - rdfs:domain obo:BFO_0000008 ; - rdfs:range obo:BFO_0000203 ; - "215-BFO" ; - rdfs:label "has last instant"@en ; - skos:definition "t has last instant t' =Def t' last instant of t"@en ; - skos:example "The last hour of a year has last instant midnight December 31"@en . - - -### https://www.commoncoreontologies.org/ont00001774 -cco:ont00001774 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001902 ; - owl:inverseOf cco:ont00001883 ; - rdfs:label "has brother"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty , + owl:FunctionalProperty ; + rdfs:domain ; + rdfs:range ; + "215-BFO" ; + rdfs:label "has last instant"@en ; + "t has last instant t' =Def t' last instant of t"@en ; + "The last hour of a year has last instant midnight December 31"@en . ### https://www.commoncoreontologies.org/ont00001775 -cco:ont00001775 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001928 ; - rdfs:domain obo:BFO_0000004 ; - rdfs:range obo:BFO_0000004 ; - rdfs:label "is successor of"@en ; - skos:definition "x is_successor_of y iff x and y are both instances of Independent Continuant and y is_predecessor_of x. "@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001776 -cco:ont00001776 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001945 ; - owl:inverseOf cco:ont00001876 ; - rdfs:label "has grandfather"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is successor of"@en ; + "x is successor of y =Def y is predecessor of x"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001777 -cco:ont00001777 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000117 ; - owl:inverseOf cco:ont00001857 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "has process part"@en ; - skos:definition "x has_process_part y iff x and y are instances of Process, such that y occurs during the temporal interval of x, and y either provides an input to x or receives an output of x, or both."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has process part"@en ; + "x has process part y =Def y is part of process x"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001778 -cco:ont00001778 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000057 ; - owl:inverseOf cco:ont00001936 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000002 ; - rdfs:label "has object"@en ; - skos:definition "x has_object y ff x is an instance of Process and y is an instance of Continuant and x is performed by some instance of Agent z and y is part of the projected state that z intends to achieve by performing x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:label "has object"@en ; + "x has object y =Def y is object of x"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001779 -cco:ont00001779 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001848 ; - rdfs:domain obo:BFO_0000038 ; - rdfs:range obo:BFO_0000148 ; - rdfs:label "has inside instant"@en ; - skos:definition "x has_inside_instant y iff x is an instance of One Dimensional Temporal Region and y is an instance of Temporal Instant and y is_inside_instant_of x."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001780 -cco:ont00001780 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001842 ; - owl:inverseOf cco:ont00001786 ; - rdfs:label "has mother"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001781 -cco:ont00001781 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001996 ; - owl:inverseOf cco:ont00001979 ; - rdfs:label "has step sister"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has inside instant"@en ; + "x has_inside_instant y iff x is an instance of One Dimensional Temporal Region and y is an instance of Temporal Instant and y is_inside_instant_of x."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001782 -cco:ont00001782 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001832 ; - rdfs:domain obo:BFO_0000027 ; - rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:label "has all members located in"@en ; - skos:definition "x has all members located in y iff x is an instance of Object Aggregate and y is an instance of independent continuant but not a spatial region, and every member of x is located in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001783 -cco:ont00001783 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001945 ; - owl:inverseOf cco:ont00001820 ; - rdfs:label "is granddaughter of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001784 -cco:ont00001784 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - owl:inverseOf cco:ont00001881 ; - rdfs:label "has son in law"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001785 -cco:ont00001785 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001988 ; - rdfs:label "has uncle"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001786 -cco:ont00001786 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001995 ; - rdfs:label "is mother of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "has all members located in"@en ; + "x has all members located in y iff x is an instance of Object Aggregate and y is an instance of independent continuant but not a spatial region, and every member of x is located in y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001787 -cco:ont00001787 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000056 ; - owl:inverseOf cco:ont00001833 ; - rdfs:domain cco:ont00001017 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "agent in"@en ; - skos:definition "x agent_in y iff y is an instance of Process and x is an instance of Agent, such that x is causally active in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001788 -cco:ont00001788 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001789 ; - owl:inverseOf cco:ont00001994 ; - rdfs:label "has paternal aunt"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001789 -cco:ont00001789 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001955 ; - rdfs:label "has aunt"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001790 -cco:ont00001790 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001785 ; - owl:inverseOf cco:ont00001929 ; - rdfs:label "has maternal uncle"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "agent in"@en ; + "x agent_in y iff y is an instance of Process and x is an instance of Agent, such that x is causally active in y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001791 -cco:ont00001791 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001810 ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:label "coincides with"@en ; - skos:definition "x coincides_with y iff x and y are both instances of Immaterial Entity and x is a spatial part of y and y is a spatial part of x."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive and symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001792 -cco:ont00001792 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001902 ; - owl:inverseOf cco:ont00001851 ; - rdfs:label "has sister"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001793 -cco:ont00001793 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001975 ; - owl:inverseOf cco:ont00001948 ; - rdfs:label "has half sister"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "coincides with"@en ; + "x coincides_with y iff x and y are both instances of Immaterial Entity and x is a spatial part of y and y is a spatial part of x."@en ; + "Given a stronger temporal interpretation, this property may be transitive and symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001794 -cco:ont00001794 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001977 ; - owl:inverseOf cco:ont00001815 ; - rdfs:domain cco:ont00001180 ; - rdfs:range cco:ont00001180 ; - rdfs:label "has subsidiary"@en ; - skos:definition "x has_subsidiary y iff x and y are both instances of Organization and y is_subsidiary_of x."@en ; - cco:ont00001754 "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has subsidiary"@en ; + "x has subsidiary y =Def y is subsidiary of x"@en ; + "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001795 -cco:ont00001795 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001924 ; - owl:inverseOf cco:ont00001869 ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "has inside interval"@en ; - skos:definition "x has_inside_interval y iff x and y are both instances of Temporal Interval and y interval_during x."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has inside interval"@en ; + "x has inside interval y =Def y interval during x"@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001796 -cco:ont00001796 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001944 ; - owl:inverseOf cco:ont00001909 ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:label "tangential part of"@en ; - skos:definition "x tangential_part_of y iff x and y are both instances of Immaterial Entity and x is a spatial part of y and there exists an instance of Immaterial Entity z such that z externally connects with x and z externally connects with y."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "tangential part of"@en ; + "x tangential_part_of y iff x and y are both instances of Immaterial Entity and x is a spatial part of y and there exists an instance of Immaterial Entity z such that z externally connects with x and z externally connects with y."@en ; + "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001797 -cco:ont00001797 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001810 ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:label "partially overlaps with"@en ; - skos:definition "x partially overlaps with y iff x and y are both instances of Immaterial Entity and x overlaps with y and x is not a spatial part of y and y is not a spatial part of x."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "partially overlaps with"@en ; + "x partially overlaps with y iff x and y are both instances of Immaterial Entity and x overlaps with y and x is not a spatial part of y and y is not a spatial part of x."@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001798 -cco:ont00001798 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001939 ; - owl:inverseOf cco:ont00001943 ; - rdfs:domain cco:ont00001262 ; - rdfs:range cco:ont00001262 ; - rdfs:label "is supervised by"@en ; - skos:definition "x is_supervised_by y iff x and y are both instances of Person and y supervises x."@en ; - cco:ont00001754 "http://en.wiktionary.org/wiki/supervise)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is supervised by"@en ; + "x is_supervised_by y iff x and y are both instances of Person and y supervises x."@en ; + "http://en.wiktionary.org/wiki/supervise)" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001799 -cco:ont00001799 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001809 ; - rdfs:domain obo:BFO_0000023 ; - rdfs:range obo:BFO_0000027 ; - rdfs:label "role of aggregate"@en ; - skos:definition "x role_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Role, and x inheres_in_aggregate y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "role of aggregate"@en ; + "x role_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Role, and x inheres_in_aggregate y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001800 -cco:ont00001800 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001942 ; - owl:inverseOf cco:ont00001817 ; - rdfs:domain cco:ont00001324 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "prohibits"@en ; - skos:definition "x prohibits y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that some y must not occur."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "prohibits"@en ; + "x prohibits y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that some y must not occur."@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001801 -cco:ont00001801 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001808 ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00000958 ; - rdfs:label "is subject of"@en ; - skos:definition "x is_subject_of y iff x is an instance of Entity and y is an instance of Information Content Entity and y is_about x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001802 -cco:ont00001802 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001804 ; - owl:inverseOf cco:ont00001957 ; - rdfs:label "has husband"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is subject of"@en ; + "x is subject of y =Def y is about x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001803 -cco:ont00001803 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001819 ; - rdfs:domain obo:BFO_0000003 ; - rdfs:range obo:BFO_0000003 ; - rdfs:label "is cause of"@en ; - skos:definition "x is_cause_of y iff x and y are instances of Occurrent, and y is a consequence of x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001804 -cco:ont00001804 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001804 ; - rdfs:label "is spouse of"@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is cause of"@en ; + "x is_cause_of y iff x and y are instances of Process, and y is a consequence of x."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001805 -cco:ont00001805 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001888 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000015 ; - dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "is disrupted by"@en ; - skos:definition "Inverse of disrupts." ; - skos:prefLabel "is disrupted by"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001806 -cco:ont00001806 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001806 ; - rdf:type owl:SymmetricProperty ; - rdfs:label "is first cousin of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "is disrupted by"@en ; + "x is disrupted by y =Def y disrupts x" ; + "is disrupted by"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001807 -cco:ont00001807 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001920 ; - owl:inverseOf cco:ont00001974 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range cco:ont00001324 ; - rdfs:label "is required by"@en ; - skos:definition "y is_required_by x at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y must occur."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is required by"@en ; + "x is required by y =Def y requires x"@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001808 -cco:ont00001808 rdf:type owl:ObjectProperty ; - rdfs:domain cco:ont00000958 ; - rdfs:range obo:BFO_0000001 ; - rdfs:label "is about"@en ; - skos:definition "x is_about y is a primitive relationship between an instance of Information Content Entity x and an instance of Entity y."@en ; - cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000136" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is about"@en ; + "x is_about y is a primitive relationship between an instance of Information Content Entity x and an instance of Entity y."@en ; + "http://purl.obolibrary.org/obo/IAO_0000136" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001809 -cco:ont00001809 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001836 ; - rdfs:domain [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000020 - obo:BFO_0000031 - ) - ] ; - rdfs:range obo:BFO_0000027 ; - rdfs:label "inheres in aggregate"@en ; - skos:definition "x inheres_in_aggregate y iff x is an instance of Specifically Dependent Continuant or Generically Dependent Continuant and y is an instance of Object Aggregate and y aggregate_bearer_of x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:range ; + rdfs:label "inheres in aggregate"@en ; + "x inheres_in_aggregate y iff x is an instance of Specifically Dependent Continuant or Generically Dependent Continuant and y is an instance of Object Aggregate and y aggregate_bearer_of x."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001810 -cco:ont00001810 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:label "connected with"@en ; - skos:definition "x is_connected_with y iff x and y are both instances of Immaterial Entity and there exists an instance of Immaterial Entity z that is part of both x and y."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "connected with"@en ; + "x is_connected_with y iff x and y are both instances of Immaterial Entity and there exists an instance of Immaterial Entity z that is part of both x and y."@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001811 -cco:ont00001811 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001966 ; - owl:inverseOf cco:ont00001963 ; - rdfs:domain cco:ont00001010 ; - rdfs:range obo:BFO_0000001 ; - rdfs:label "is an ordinal measurement of"@en ; - skos:definition "x is_an_ordinal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity and y is_measured_by_ordinal x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001812 -cco:ont00001812 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001945 ; - owl:inverseOf cco:ont00001981 ; - rdfs:label "is grandson of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is an ordinal measurement of"@en ; + "x is_an_ordinal_measurement_of y iff x is an instance of Ordinal Measurement Information Content Entity and y is an instance of Entity and y is_measured_by_ordinal x."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001813 -cco:ont00001813 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001925 ; - rdfs:domain cco:ont00001017 ; - rdfs:range obo:BFO_0000040 ; - rdfs:label "uses"@en ; - skos:definition "x uses y iff x is an instance of an Agent and y is an instance of a Material Entity, such that both x and y participate in some instance of a Process wherein x attempts to accomplish a goal by manipulating, deploying, or leveraging some attribute of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses"@en ; + "x uses y iff x is an instance of an Agent and y is an instance of a Material Entity, such that both x and y participate in some instance of a Process wherein x attempts to accomplish a goal by manipulating, deploying, or leveraging some attribute of y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001814 -cco:ont00001814 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001971 ; - owl:inverseOf cco:ont00001821 ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval finishes"@en ; - skos:definition "x interval_finishes y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant v, w, and z such that v is the starting instant of x, w is the ending instant of both x and y, z is the starting instant of y, and z is before v."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval finishes"@en ; + "x interval_finishes y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant v, w, and z such that v is the starting instant of x, w is the ending instant of both x and y, z is the starting instant of y, and z is before v."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001815 -cco:ont00001815 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001939 ; - rdfs:domain cco:ont00001180 ; - rdfs:range cco:ont00001180 ; - rdfs:label "is subsidiary of"@en ; - skos:definition "x is_subsidiary_of y iff x and y are both instances of Organization and y controls x by having the capacity to determine the outcome of decisions about the financial and operating policies of x. "@en ; - cco:ont00001754 "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is subsidiary of"@en ; + "x is_subsidiary_of y iff x and y are both instances of Organization and y controls x by having the capacity to determine the outcome of decisions about the financial and operating policies of x. "@en ; + "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html)" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001816 -cco:ont00001816 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000056 ; - owl:inverseOf cco:ont00001986 ; - rdfs:domain obo:BFO_0000002 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "is output of"@en ; - skos:definition "x is_output_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:range ; + rdfs:label "is output of"@en ; + "x is output of y =Def x participates in y, x is an Independent Continuant (but not a Spatial Region), y is a Process, and the presence of x at the end of y is a necessary condition for the completion of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001817 -cco:ont00001817 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001920 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range cco:ont00001324 ; - rdfs:label "is prohibited by"@en ; - skos:definition "x is_prohibited_by y at t iff: y is an instance of Process Regulation at time t, and x is an instance of Process at time t, and y prescribes that x must not occur."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001818 -cco:ont00001818 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001818 ; - rdfs:label "is in-law of"@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is prohibited by"@en ; + "x is prohibited by y =Def y prohibits x"@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001819 -cco:ont00001819 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000003 ; - rdfs:range obo:BFO_0000003 ; - rdfs:label "caused by"@en ; - skos:definition "x caused_by y iff x and y are instances of Occurrent, and x is a consequence of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001820 -cco:ont00001820 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001850 ; - rdfs:label "has granddaughter"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "caused by"@en ; + "x caused by y =Def y is cause of x"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001821 -cco:ont00001821 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001924 ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval finished by"@en ; - skos:definition "x interval_finished_by y iff x and y are both instances of Temporal Interval and y interval_finishes x."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval finished by"@en ; + "x interval finished by y =Def y interval finishes x"@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001822 -cco:ont00001822 rdf:type owl:ObjectProperty , - owl:SymmetricProperty ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - owl:propertyDisjointWith cco:ont00001862 ; - rdfs:label "interval equals"@en ; - skos:definition "x interval_equals y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant w and z such that w is the starting instant of both x and y and z is the ending instant of both x and y."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001823 -cco:ont00001823 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001785 ; - owl:inverseOf cco:ont00001926 ; - rdfs:label "has paternal uncle"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty , + owl:SymmetricProperty ; + rdfs:domain ; + rdfs:range ; + owl:propertyDisjointWith ; + rdfs:label "interval equals"@en ; + "x interval_equals y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant w and z such that w is the starting instant of both x and y and z is the ending instant of both x and y."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001824 -cco:ont00001824 rdf:type owl:ObjectProperty ; - rdfs:domain cco:ont00000253 ; - rdfs:range cco:ont00000253 ; - rdfs:label "is excerpted from"@en ; - skos:definition "An Information Bearing Entity b1 is excerpted from another Information Bearing Entity B2 iff b1 is part of some Information Bearing Entity B1 that is carrier of some Information Content Entity C1, B2 is carrier of some Information Content Entity C2, C1 is not identical with C2, b1 is carrier of some Information Content Entity c1, b2 is an Information Bearing Entity that is part of B2 and b2 is carrier of c1 (i.e. the same Information Content Entity as borne by b1)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is excerpted from"@en ; + "An Information Bearing Entity b1 is excerpted from another Information Bearing Entity B2 iff b1 is part of some Information Bearing Entity B1 that is carrier of some Information Content Entity C1, B2 is carrier of some Information Content Entity C2, C1 is not identical with C2, b1 is carrier of some Information Content Entity c1, b2 is an Information Bearing Entity that is part of B2 and b2 is carrier of c1 (i.e. the same Information Content Entity as borne by b1)."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001825 -cco:ont00001825 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001870 ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - owl:propertyDisjointWith cco:ont00001862 ; - rdfs:label "interval overlaps"@en ; - skos:definition "x interval_overlaps y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant u, v, w, z such that u is the starting instant of x, v is the ending instant of x, w is the starting instant of y, z is the ending instant of y, u is before w, w is before v, and v is before z."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001826 -cco:ont00001826 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - owl:inverseOf cco:ont00001828 ; - rdfs:label "is sister-in-law of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + owl:propertyDisjointWith ; + rdfs:label "interval overlaps"@en ; + "x interval overlaps y =Def y interval overlapped by x"@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001827 -cco:ont00001827 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001944 ; - owl:inverseOf cco:ont00001989 ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:label "nontangential part of"@en ; - skos:definition "x nontangential_part_of y iff x and y are both instances of Immaterial Entity and x is a spatial part of y and there does not exist an instance of Immaterial Entity z such that z externally connects with x and z externally connects with y."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001828 -cco:ont00001828 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - rdfs:label "has sister in law"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "nontangential part of"@en ; + "x nontangential_part_of y iff x and y are both instances of Immaterial Entity and x is a spatial part of y and there does not exist an instance of Immaterial Entity z such that z externally connects with x and z externally connects with y."@en ; + "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001829 -cco:ont00001829 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001809 ; - owl:inverseOf cco:ont00001956 ; - rdfs:domain obo:BFO_0000016 ; - rdfs:range obo:BFO_0000027 ; - rdfs:label "disposition of aggregate"@en ; - skos:definition "x disposition_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Disposition, and x inheres_in_aggregate y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "disposition of aggregate"@en ; + "x disposition_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Disposition, and x inheres_in_aggregate y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001830 -cco:ont00001830 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000057 ; - owl:inverseOf cco:ont00001895 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range cco:ont00001017 ; - rdfs:label "has accomplice"@en ; - skos:definition "x has_accomplice y iff x is an instance of Process and y is an instance of Agent that assists in the commission of x, is located at the location of x, but is not agent_in x."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has accomplice"@en ; + "x has accomplice y =Def y accomplice in x"@en ; + "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001831 -cco:ont00001831 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001951 ; - rdfs:domain obo:BFO_0000023 ; - rdfs:range obo:BFO_0000023 ; - rdfs:label "is subordinate role to"@en ; - skos:definition "For all x,y,t: y is subordinate role to x at t iff: x is an instance of Role at time t, and y is an instance of Role at time t, and there is some z such that x is realized by z and z is an instance of Process which creates, modifies, transfers, or eliminates some u such that u is a Process Regulation at time t, and u is addressed to the bearer of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is subordinate role to"@en ; + "For all x,y,t: y is subordinate role to x at t iff: x is an instance of Role at time t, and y is an instance of Role at time t, and there is some z such that x is realized by z and z is an instance of Process which creates, modifies, transfers, or eliminates some u such that u is a Process Regulation at time t, and u is addressed to the bearer of y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001832 -cco:ont00001832 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000027 ; - rdfs:range [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:label "has some member located in"@en ; - skos:definition "x has some member located in y iff x is an instance of Object Aggregate and y is an instance of independent continuant but not a spatial region, and at least one member of x is located in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "has some member located in"@en ; + "x has some member located in y iff x is an instance of Object Aggregate and y is an instance of independent continuant but not a spatial region, and at least one member of x is located in y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001833 -cco:ont00001833 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000057 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range cco:ont00001017 ; - rdfs:label "has agent"@en ; - skos:definition "x has_agent y iff x is an instance of Process and y is an instance of Agent, such that y is causally active in x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has agent"@en ; + "x has agent y =Def y agent in x"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001834 -cco:ont00001834 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000057 ; - owl:inverseOf cco:ont00001886 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000002 ; - rdfs:label "affects"@en ; - skos:definition "x affects y iff x is an instance of Process and y is an instance of Continuant, and x influences y in some manner, most often by producing a change in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001835 -cco:ont00001835 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001842 ; - owl:inverseOf cco:ont00001839 ; - rdfs:label "is son of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:label "affects"@en ; + "x affects y =Def y is affected by x"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001836 -cco:ont00001836 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000027 ; - rdfs:range [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000020 - obo:BFO_0000031 - ) - ] ; - rdfs:label "aggregate bearer of"@en ; - skos:definition "x aggregate_bearer_of y iff x is an instance of Object Aggregate and y is an instance of Specifically Dependent Continuant or Generically Dependent Continuant and y specifically or generically depends on some instance of Object z that is part of x and all other members of x are also bearers of a unique instance of the same type as y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:label "aggregate bearer of"@en ; + "x aggregate bearer of y =Def y inheres in aggregate x"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001837 -cco:ont00001837 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000084 ; - owl:inverseOf cco:ont00001908 ; - rdfs:domain cco:ont00000829 ; - rdfs:range cco:ont00000253 ; - rdfs:label "time zone identifier used by"@en ; - skos:definition "x time_zone_identifier_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Time Zone Identifier, such that x designates the spatial region associated with the time zone mentioned in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "time zone identifier used by"@en ; + "x time_zone_identifier_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Time Zone Identifier, such that x designates the spatial region associated with the time zone mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001838 -cco:ont00001838 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:label "disconnected with"@en ; - skos:definition "x disconnected_with y iff x and y are both instances of Immaterial Entity and there does not exist some immaterial entity z that is part of both x and y."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001839 -cco:ont00001839 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001995 ; - rdfs:label "has son"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001840 -cco:ont00001840 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001945 ; - owl:inverseOf cco:ont00001882 ; - rdfs:label "has grandmother"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "disconnected with"@en ; + "x disconnected_with y iff x and y are both instances of Immaterial Entity and there does not exist some immaterial entity z that is part of both x and y."@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001841 -cco:ont00001841 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000056 ; - owl:inverseOf cco:ont00001921 ; - rdfs:domain obo:BFO_0000002 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "is input of"@en ; - skos:definition "x is_input_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001842 -cco:ont00001842 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001995 ; - rdfs:label "is child of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001843 -cco:ont00001843 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001806 ; - owl:inverseOf cco:ont00001894 ; - rdfs:label "is paternal first cousin of"@en ; - skos:definition "Person A is paternal first cousin of Person B iff Person B has father F and F has sibling P and P is parent of Person A."@en ; - skos:scopeNote "is_paternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:range ; + rdfs:label "is input of"@en ; + "x is input of y =Def x participates in y, x is an Independent Continuant (but not a Spatial Region), y is a Process, and the presence of x at the beginning of y is a necessary condition for the start of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001844 -cco:ont00001844 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000057 ; - owl:inverseOf cco:ont00001993 ; - rdfs:domain cco:ont00000402 ; - rdfs:range cco:ont00001017 ; - rdfs:label "has sender"@en ; - skos:definition "y has_sender x iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has sender"@en ; + "x has sender y =Def y sends x"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001845 -cco:ont00001845 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000183 ; - owl:inverseOf cco:ont00001918 ; - rdfs:domain obo:BFO_0000029 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "is site of"@en ; - skos:definition "x is_site_of y iff x is an instance of Site and y is an instance of Process, such that y occurs in x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is site of"@en ; + "x is site of y =Def y occurs at x"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001846 -cco:ont00001846 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001992 ; - rdfs:domain cco:ont00001180 ; - rdfs:range obo:BFO_0000023 ; - rdfs:label "is organizational context of"@en ; - skos:definition "x is_organizational_context_of y iff x is an instance of an Organization and y is an instance of a Role and z is an instance of a Person, such that z's affiliation with x is a prerequisite for z bearing y, or x ascribes y to the bearer of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is organizational context of"@en ; + "x is_organizational_context_of y iff x is an instance of an Organization and y is an instance of a Role and z is an instance of a Person, such that z's affiliation with x is a prerequisite for z bearing y, or x ascribes y to the bearer of y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001847 -cco:ont00001847 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001862 ; - owl:inverseOf cco:ont00001940 ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval is after"@en ; - skos:definition "x interval_is_after y iff x and y are both instances of Temporal Interval and y interval_is_before x."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval is after"@en ; + "x interval is after y =Def y interval is before x"@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001848 -cco:ont00001848 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000148 ; - rdfs:range obo:BFO_0000038 ; - rdfs:label "is inside instant of"@en ; - skos:definition "x is_inside_instant of y iff x is an instance of Temporal Instant and y is an instance of One-Dimensional Temporal Region and there are instances of Temporal Instant w and z that are part of y and non-identical to x such that w precedes x and z is preceded by x."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001849 -cco:ont00001849 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - owl:inverseOf cco:ont00001935 ; - rdfs:label "is father in-law of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001850 -cco:ont00001850 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001945 ; - rdfs:label "is grandparent of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001851 -cco:ont00001851 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001902 ; - rdfs:label "is sister of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is inside instant of"@en ; + "x is_inside_instant of y iff x is an instance of Temporal Instant and y is an instance of One-Dimensional Temporal Region and there are instances of Temporal Instant w and z that are part of y and non-identical to x such that w precedes x and z is preceded by x."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001852 -cco:ont00001852 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000056 ; - owl:inverseOf cco:ont00001949 ; - rdfs:domain cco:ont00001017 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "accessory in"@en ; - skos:definition "x is_accessory_in y iff x is an instance of Agent and y is an instance of Process such that x assists another instance of Agent z in the commission of y, and x was not located at the location of y when y occurred, and x is not an agent_in y."@en ; - cco:ont00001754 "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001853 -cco:ont00001853 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - owl:inverseOf cco:ont00001885 ; - rdfs:label "is mother in-law of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001854 -cco:ont00001854 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - owl:inverseOf cco:ont00001867 ; - rdfs:label "has daughter in law"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "accessory in"@en ; + "x is_accessory_in y iff x is an instance of Agent and y is an instance of Process such that x assists another instance of Agent z in the commission of y, and x was not located at the location of y when y occurred, and x is not an agent_in y."@en ; + "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001855 -cco:ont00001855 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000178 , - cco:ont00001810 ; - owl:inverseOf cco:ont00001944 ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:label "has spatial part"@en ; - skos:definition "y has_spatial_part x iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ; - cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001856 -cco:ont00001856 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001932 ; - rdfs:label "has niece"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf , + ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has spatial part"@en ; + "x has spatial part y =Def y spatial part of x"@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001857 -cco:ont00001857 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000132 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "is part of process"@en ; - skos:definition "x is_part_of_process y iff x and y are instances of Process, such that x occurs during the temporal interval of y, and x either provides an input to y or receives an output of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001858 -cco:ont00001858 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001842 ; - owl:inverseOf cco:ont00001987 ; - rdfs:label "is daughter of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] + ) ; + rdf:type owl:Class + ] + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:range [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty [ owl:inverseOf + ] ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] + ) ; + rdf:type owl:Class + ] + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "is part of process"@en ; + "x is part of process y iff x is occurrent part of y, x and y are Processes, and x occupies a temporal region that is a proper occurrent part of the temporal interval of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001859 -cco:ont00001859 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001864 ; - rdfs:domain cco:ont00001180 ; - rdfs:range cco:ont00001203 ; - rdfs:label "is delimited by"@en ; - skos:definition "x is_delimited_by y iff x is an instance of Organization and y is an instance of Delimiting Domain and y delimits x."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001860 -cco:ont00001860 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001968 ; - rdfs:label "is ancestor of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is delimited by"@en ; + "x is_delimited_by y iff x is an instance of Organization and y is an instance of Delimiting Domain and y delimits x."@en ; + "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001862 -cco:ont00001862 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - owl:propertyDisjointWith cco:ont00001870 , - cco:ont00001924 , - cco:ont00001971 ; - rdfs:label "interval disjoint"@en ; - skos:definition "x interval_disjoint y iff x and y are both instances of Temporal Interval and have no parts in common."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + owl:propertyDisjointWith , + , + ; + rdfs:label "interval disjoint"@en ; + "x interval_disjoint y iff x and y are both instances of Temporal Interval and have no parts in common."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001863 -cco:ont00001863 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000101 ; - owl:inverseOf cco:ont00001961 ; - rdfs:domain cco:ont00000253 ; - rdfs:range cco:ont00000120 ; - rdfs:label "uses measurement unit"@en ; - skos:definition "y uses_measurement_unit x iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses measurement unit"@en ; + "x uses measurement unit y =Def y is measurement unit of x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001864 -cco:ont00001864 rdf:type owl:ObjectProperty ; - rdfs:domain cco:ont00001203 ; - rdfs:range cco:ont00001180 ; - rdfs:label "delimits"@en ; - skos:definition "x delimits y iff x is an instance of Delimiting Domain and y is an instance of Organization and y can legally operate only within x."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001865 -cco:ont00001865 rdf:type owl:ObjectProperty , - owl:SymmetricProperty ; - rdfs:domain cco:ont00001262 ; - rdfs:range cco:ont00001262 ; - rdfs:label "has familial relationship to"@en ; - skos:definition "A relationship between persons by virtue of ancestry or legal union."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "delimits"@en ; + "x delimits y =Def y is delimited by x"@en ; + "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001866 -cco:ont00001866 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001984 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range cco:ont00001017 ; - dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "is interest of"@en ; - skos:definition "The inverse of has_interest_in. " ; - skos:prefLabel "is interest of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001867 -cco:ont00001867 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - rdfs:label "is daughter in-law of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "is interest of"@en ; + "x is interest of y =Def y has interest in x" ; + "is interest of"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001868 -cco:ont00001868 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001966 ; - owl:inverseOf cco:ont00001914 ; - rdfs:domain cco:ont00000293 ; - rdfs:range obo:BFO_0000001 ; - rdfs:label "is a nominal measurement of"@en ; - skos:definition "x is_a_nominal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is a nominal measurement of"@en ; + "x is_a_nominal_measurement_of y iff x is an instance of Nominal Measurement Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001869 -cco:ont00001869 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001971 ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval during"@en ; - skos:definition "x interval_during y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant u, v, w, and z such that u is the starting instant of x, v is the ending instant of x, w is the starting instant of y, z is the ending instant of y, w is before u, and v is before z."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval during"@en ; + "x interval_during y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant u, v, w, and z such that u is the starting instant of x, v is the ending instant of x, w is the starting instant of y, z is the ending instant of y, w is before u, and v is before z."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001870 -cco:ont00001870 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval overlapped by"@en ; - skos:definition "x is_overlapped_by y iff x and y are both instances of Temporal Interval and y interval_overlaps x."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001871 -cco:ont00001871 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001804 ; - owl:inverseOf cco:ont00001887 ; - rdfs:label "has wife"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001872 -cco:ont00001872 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001996 ; - owl:inverseOf cco:ont00001890 ; - rdfs:label "is step-brother of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval overlapped by"@en ; + "x is_overlapped_by y iff x and y are both instances of Temporal Interval and y interval_overlaps x."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001873 -cco:ont00001873 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001801 ; - owl:inverseOf cco:ont00001938 ; - rdfs:range cco:ont00001069 ; - rdfs:comment "See notes for inverse property." ; - rdfs:label "represented by"@en ; - skos:definition "y represented_by x iff x is an instance of Representational Information Content Entity, and y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "represented by"@en ; + "x represented by y =Def y represents x"@en ; + "See notes for inverse property." ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001874 -cco:ont00001874 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000008 ; - rdfs:range [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000015 - obo:BFO_0000035 - ) - ] ; - rdfs:label "is temporal region of"@en ; - skos:definition "t is temporal region of p iff p occupies temporal region t."@en ; - skos:editorialNote "Leaving this is in ERO for now since BFO2020 has no inverse of occupies-temporal-region yet."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] ; + rdfs:label "is temporal region of"@en ; + "x is temporal region of y =Def y occupies temporal region x"@en ; + "Leaving this is in ERO for now since BFO2020 has no inverse of occupies-temporal-region yet."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001875 -cco:ont00001875 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001924 ; - owl:inverseOf cco:ont00001923 ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval started by"@en ; - skos:definition "x interval_started_by y iff x and y are both instances of Temporal Interval and y interval_starts x."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001876 -cco:ont00001876 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001850 ; - rdfs:label "is grandfather of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval started by"@en ; + "x interval started by y =Def y interval starts x"@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001877 -cco:ont00001877 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001966 ; - owl:inverseOf cco:ont00001964 ; - rdfs:domain cco:ont00001364 ; - rdfs:range obo:BFO_0000001 ; - rdfs:label "is an interval measurement of"@en ; - skos:definition "x is_an_interval_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity and y is_measured_by_interval x."@en ; - skos:example "a measurement of air temperature on the Celsius scale." ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is an interval measurement of"@en ; + "x is_an_interval_measurement_of y iff x is an instance of Interval Measurement Information Content Entity and y is an instance of Entity and y is_measured_by_interval x."@en ; + "a measurement of air temperature on the Celsius scale." ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001878 -cco:ont00001878 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001919 ; - rdfs:domain cco:ont00000253 ; - rdfs:range obo:BFO_0000001 ; - rdfs:label "is mention of"@en ; - skos:definition "x is_mention_of y iff x is an instance Information Bearing Entity and y is an instance of Entity, such that x is used as a reference to y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is mention of"@en ; + "x is mention of y =Def y is mentioned by x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001879 -cco:ont00001879 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001801 ; - owl:inverseOf cco:ont00001916 ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00000686 ; - rdfs:label "designated by"@en ; - skos:definition "x designated_by y iff y is an instance of Designative Information Content Entity and x is an instance of Entity and y designates x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "designated by"@en ; + "x designated by y =Def y designates x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001880 -cco:ont00001880 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001809 ; - owl:inverseOf cco:ont00001898 ; - rdfs:domain cco:ont00001379 ; - rdfs:range obo:BFO_0000027 ; - rdfs:label "capability of aggregate"@en ; - skos:definition "x capability_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Agent Capability, such that x inheres in aggregate y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001881 -cco:ont00001881 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - rdfs:label "is son in-law of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001882 -cco:ont00001882 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001850 ; - rdfs:label "is grandmother of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001883 -cco:ont00001883 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001902 ; - rdfs:label "is brother of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "capability of aggregate"@en ; + "x capability_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Agent Capability, such that x inheres in aggregate y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001884 -cco:ont00001884 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001801 ; - owl:inverseOf cco:ont00001980 ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00000127 ; - owl:propertyChainAxiom ( cco:ont00001917 - obo:BFO_0000176 - ) ; - rdfs:label "condition described by"@en ; - skos:definition "x condition_described_by y iff y is an instance of Performance Specification and x is an instance of Entity and y describes_condition x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001885 -cco:ont00001885 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - rdfs:label "has mother in law"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + owl:propertyChainAxiom ( + + ) ; + rdfs:label "condition described by"@en ; + "x condition described by y =Def y describes condition x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001886 -cco:ont00001886 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000056 ; - rdfs:domain obo:BFO_0000002 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "is affected by"@en ; - skos:definition "x is_affected_by y iff x is an instance of Continuant and y is an instance of Process, and y influences x in some manner, most often by producing a change in x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001887 -cco:ont00001887 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001804 ; - rdfs:label "is wife of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:range ; + rdfs:label "is affected by"@en ; + "x is affected by y =Def x participates in y, x is an Independent Continuant (but not a Spatial Region), y is a Process, and y influences x in some manner, most often by producing a change in x."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001888 -cco:ont00001888 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000015 ; - dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "disrupts"@en ; - skos:definition "A relation where one process disrupts another process from occurring as it would have."@en ; - skos:editorialNote "To lower the grade of a process is to lower the quality of a process according to some standard, for example when realizing a capability or a function."@en ; - skos:prefLabel "disrupts"@en ; - skos:scopeNote "A process can disrupt another process from occurring as it would have by 1) preventing a disposition or role from being realized by that process, 2) lowering the grade of the process, or 3) stopping the process from continuing to occur."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "disrupts"@en ; + "A relation where one process disrupts another process from occurring as it would have."@en ; + "To lower the grade of a process is to lower the quality of a process according to some standard, for example when realizing a capability or a function."@en ; + "disrupts"@en ; + "A process can disrupt another process from occurring as it would have by 1) preventing a disposition or role from being realized by that process, 2) lowering the grade of the process, or 3) stopping the process from continuing to occur."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001889 -cco:ont00001889 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000197 ; - owl:inverseOf cco:ont00001954 ; - rdfs:domain cco:ont00001379 ; - rdfs:range cco:ont00001017 ; - rdfs:label "capability of"@en ; - skos:definition "x capability_of y iff y is an instance of Agent and x is an instance of Agent Capability, such that x inheres in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001890 -cco:ont00001890 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001996 ; - rdfs:label "has step brother"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001891 -cco:ont00001891 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - owl:inverseOf cco:ont00001952 ; - rdfs:label "has brother in law"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001892 -cco:ont00001892 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001876 ; - owl:inverseOf cco:ont00001972 ; - rdfs:label "is paternal grandfather of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "capability of"@en ; + "x capability_of y iff y is an instance of Agent and x is an instance of Agent Capability, such that x inheres in y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001893 -cco:ont00001893 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001990 ; - rdf:type owl:TransitiveProperty ; - rdfs:domain obo:BFO_0000148 ; - rdfs:range obo:BFO_0000148 ; - rdfs:label "instant is after"@en ; - skos:definition "x instant_is_after y iff x and y are both instances of Temporal Instant and there exists some instance of Temporal Interval z such that y is the starting instant of z and x is the ending instant of z."@en ; - skos:scopeNote "'instant is after' is a primitive relationship. Informally, a temporal instant x is after some temporal instant y iff y precedes x."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001894 -cco:ont00001894 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001806 ; - rdfs:label "has paternal first cousin"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdf:type owl:TransitiveProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "instant is after"@en ; + "x instant_is_after y iff x and y are both instances of Temporal Instant and there exists some instance of Temporal Interval z such that y is the starting instant of z and x is the ending instant of z."@en ; + "'instant is after' is a primitive relationship. Informally, a temporal instant x is after some temporal instant y iff y precedes x."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001895 -cco:ont00001895 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000056 ; - rdfs:domain cco:ont00001017 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "accomplice in"@en ; - skos:definition "Agent x is accomplice_in Process y iff x assists in the commission of y, is located at the location of y, but is not agent_in y."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "accomplice in"@en ; + "Agent x is accomplice_in Process y iff x assists in the commission of y, is located at the location of y, but is not agent_in y."@en ; + "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001896 -cco:ont00001896 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001862 ; - owl:inverseOf cco:ont00001915 ; - rdf:type owl:IrreflexiveProperty ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval meets"@en ; - skos:definition "x interval_meets y iff x and y are both instances of Temporal Interval and there exists some instance of Temporal Instant z such that z is the ending instant of x and z is the starting instant of y."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001897 -cco:ont00001897 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001882 ; - owl:inverseOf cco:ont00001960 ; - rdfs:label "is maternal grandmother of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdf:type owl:IrreflexiveProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval meets"@en ; + "x interval meets y =Def y interval met by x"@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001898 -cco:ont00001898 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001836 ; - rdfs:domain obo:BFO_0000027 ; - rdfs:range cco:ont00001379 ; - rdfs:label "aggregate has capability"@en ; - skos:definition "x aggregate_has_capability y iff x is an instance of Object Aggregate and y is an instance of Agent Capability, such that x is aggregate bearer of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "aggregate has capability"@en ; + "x aggregate has capability y =Def y capability of aggregate x"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001899 -cco:ont00001899 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001942 ; - owl:inverseOf cco:ont00001976 ; - rdfs:domain cco:ont00001175 ; - rdfs:range cco:ont00000253 ; - rdfs:label "language used in"@en ; - skos:definition "x language_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Language, such that the literal value of y is a string that is encoded according to the syntax of x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "language used in"@en ; + "x language_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Language, such that the literal value of y is a string that is encoded according to the syntax of x."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001900 -cco:ont00001900 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001997 ; - owl:inverseOf cco:ont00001913 ; - rdfs:domain cco:ont00000469 ; - rdfs:range cco:ont00000253 ; - rdfs:label "is geospatial coordinate reference system of"@en ; - skos:definition "x is_geospatial_coordinate_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is geospatial coordinate reference system of"@en ; + "x is_geospatial_coordinate_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001901 -cco:ont00001901 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001836 ; - rdfs:domain obo:BFO_0000027 ; - rdfs:range obo:BFO_0000023 ; - rdfs:label "aggregate has role"@en ; - skos:definition "x aggregate_has_role y iff x is an instance of Object Aggregate and y is an instance of Role, such that x aggregate_bearer_of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001902 -cco:ont00001902 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001902 ; - rdf:type owl:SymmetricProperty ; - rdfs:label "is sibling of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001903 -cco:ont00001903 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001876 ; - owl:inverseOf cco:ont00001973 ; - rdfs:label "is maternal grandfather of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "aggregate has role"@en ; + "x aggregate_has_role y iff x is an instance of Object Aggregate and y is an instance of Role, such that x aggregate_bearer_of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001904 -cco:ont00001904 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001917 ; - owl:inverseOf cco:ont00001966 ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00001163 ; - rdfs:label "is measured by"@en ; - skos:definition "y is_measured_by x iff x is an instance of Measurement Information Content Entity and y is an instance of Entity and y is_a_measurement_of x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001905 -cco:ont00001905 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001975 ; - owl:inverseOf cco:ont00001927 ; - rdfs:label "is half-brother of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001906 -cco:ont00001906 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001806 ; - owl:inverseOf cco:ont00001934 ; - rdfs:comment "is_maternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"@en ; - rdfs:label "is maternal first cousin of"@en ; - skos:definition "Person A is maternal first cousin of Person B iff Person B has mother M and M has sibling P and P is parent of Person A."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is measured by"@en ; + "x is measured by y =Def y is a measurement of x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001907 -cco:ont00001907 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001836 ; - rdfs:domain obo:BFO_0000027 ; - rdfs:range obo:BFO_0000019 ; - rdfs:label "aggregate has quality"@en ; - skos:definition "x aggregate_has_quality y iff x is an instance of Object Aggregate and y is an instance of Quality, such that x aggregate_bearer_of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "aggregate has quality"@en ; + "x aggregate_has_quality y iff x is an instance of Object Aggregate and y is an instance of Quality, such that x aggregate_bearer_of y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001908 -cco:ont00001908 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000101 ; - rdfs:domain cco:ont00000253 ; - rdfs:range cco:ont00000829 ; - rdfs:label "uses time zone identifier"@en ; - skos:definition "x uses_time_zone_identifier y iff x is an instance of Information Bearing Entity and y is an instance of Time Zone Identifier, such that y designates the spatial region associated with the time zone mentioned in x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses time zone identifier"@en ; + "x uses time zone identifier y =Def y time zone identifier used by x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001909 -cco:ont00001909 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001855 ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:label "has tangential part"@en ; - skos:definition "x has_tangential_part y iff x, y, and z are instances of Immaterial Entity, and x has_spatial_part y, such that z externally connects with both x and y."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has tangential part"@en ; + "x has tangential part y =Def y tangential part of x"@en ; + "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001910 -cco:ont00001910 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001942 ; - owl:inverseOf cco:ont00001998 ; - rdfs:domain cco:ont00001324 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "permits"@en ; - skos:definition "x permits y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y may occur."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001911 -cco:ont00001911 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001882 ; - owl:inverseOf cco:ont00001937 ; - rdfs:label "is paternal grandmother of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "permits"@en ; + "x permits y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y may occur."@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001912 -cco:ont00001912 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000101 ; - owl:inverseOf cco:ont00001997 ; - rdfs:domain cco:ont00000253 ; - rdfs:range cco:ont00000398 ; - rdfs:label "uses reference system"@en ; - skos:definition "y uses_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses reference system"@en ; + "x uses reference system y =Def y is reference system of x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001913 -cco:ont00001913 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001912 ; - rdfs:domain cco:ont00000253 ; - rdfs:range cco:ont00000469 ; - rdfs:label "uses geospatial coordinate reference system"@en ; - skos:definition "y uses_geospatial_coordinate_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses geospatial coordinate reference system"@en ; + "x uses geospatial coordinate reference system y =Def y is geospatial coordinate reference system of x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001914 -cco:ont00001914 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001904 ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00000293 ; - rdfs:label "is measured by nominal"@en ; - skos:definition "x is_measured_by_nominal y iff y is an instance of Nominal Measurement Information Content Entity and x is an instance of Entity, such that y classifies x relative to some set of shared, possibly arbitrary, characteristics."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is measured by nominal"@en ; + "x is measured by nominal y =Def y is a nominal measurement of x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001915 -cco:ont00001915 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001862 ; - rdf:type owl:IrreflexiveProperty ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval met by"@en ; - skos:definition "x interval_met_by y iff x and y are both instances of Temporal Interval and y interval_meets x."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdf:type owl:IrreflexiveProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval met by"@en ; + "x interval_met_by y iff x and y are both instances of Temporal Interval and y interval_meets x."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001916 -cco:ont00001916 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001808 ; - rdfs:domain cco:ont00000686 ; - rdfs:range obo:BFO_0000001 ; - rdfs:label "designates"@en ; - skos:definition "x designates y iff x is an instance of a Designative Information Content Entity, and y is an instance of an Entity, such that given some context, x uniquely distinguishes y from other entities."@en ; - skos:example "a URL designates the location of a Web Page on the internet" , - "a person's name designates that person" , - "a vehicle identification number designates some vehicle" ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "designates"@en ; + "x designates y iff x is an instance of a Designative Information Content Entity, and y is an instance of an Entity, such that given some context, x uniquely distinguishes y from other entities."@en ; + "a URL designates the location of a Web Page on the internet" , + "a person's name designates that person" , + "a vehicle identification number designates some vehicle" ; + "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001917 -cco:ont00001917 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001801 ; - owl:inverseOf cco:ont00001982 ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00000853 ; - rdfs:label "described by"@en ; - skos:definition "x described_by y iff y is an instance of Descriptive Information Content Entity and x is an instance of Entity and y describes x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "described by"@en ; + "x described by y =Def y describes x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001918 -cco:ont00001918 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000066 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000029 ; - rdfs:label "occurs at"@en ; - skos:definition "x occurs_at y iff x is an instance of Process and y is an instance of Site, such that x occurs in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "occurs at"@en ; + "x occurs_at y iff x is an instance of Process and y is an instance of Site, such that x occurs in y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001919 -cco:ont00001919 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00000253 ; - rdfs:label "is mentioned by"@en ; - skos:definition "x is_mentioned_by y iff y is an instance of Information Bearing Entity and x is an instance of Entity, such that y is used as a reference to x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is mentioned by"@en ; + "x is_mentioned_by y iff y is an instance of Information Bearing Entity and x is an instance of Entity, such that y is used as a reference to x."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001920 -cco:ont00001920 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001801 ; - owl:inverseOf cco:ont00001942 ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00000965 ; - rdfs:label "prescribed by"@en ; - skos:definition "x prescribed_by y iff y is an instance of Directive Information Content Entity and x is an instance of Entity and y prescribes x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "prescribed by"@en ; + "x prescribed by y =Def y prescribes x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001921 -cco:ont00001921 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000057 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000002 ; - rdfs:label "has input"@en ; - skos:definition "y has_input x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:label "has input"@en ; + "x has input y =Def y is input of x"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001922 -cco:ont00001922 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000057 ; - owl:inverseOf cco:ont00001978 ; - rdfs:domain cco:ont00000402 ; - rdfs:range cco:ont00001017 ; - rdfs:label "has recipient"@en ; - skos:definition "x has_recipient y iff y is an instance of Agent and x is an instance of Act Of Communication, such that y is the recipient and decoder of the InformationContentEntity intended for communication in x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has recipient"@en ; + "x has recipient y =Def y receives x"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001923 -cco:ont00001923 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001971 ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval starts"@en ; - skos:definition "x interval_starts y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant v, w, and z such that v is the starting instant of both x and y, w is the ending instant of x, z is the ending instant of y and w is before z."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval starts"@en ; + "x interval_starts y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant v, w, and z such that v is the starting instant of both x and y, w is the ending instant of x, z is the ending instant of y and w is before z."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001924 -cco:ont00001924 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001971 ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval contains"@en ; - skos:definition "x interval_contains y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant u, v, w, and z such that u is the starting instant of x, v is the ending instant of x, w is the starting instant of y, z is the ending instant of y, w is before or identical to u, and v is before or identical to z, and it is not the case that both w is identical to u and v is identical to z."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval contains"@en ; + "x interval contains y =Def y interval contained by x"@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001925 -cco:ont00001925 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000040 ; - rdfs:range cco:ont00001017 ; - rdfs:label "is used by"@en ; - skos:definition "x is_used_by y iff y is an instance of an Agent and x is an instance of a Material Entity, such that both x and y participate in some instance of a Process wherein y attempts to accomplish a goal by manipulating, deploying, leveraging some attribute of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001926 -cco:ont00001926 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001988 ; - rdfs:label "is paternal uncle of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001927 -cco:ont00001927 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001975 ; - rdfs:label "has half brother"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is used by"@en ; + "x is used by y =Def y uses x"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001928 -cco:ont00001928 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000004 ; - rdfs:range obo:BFO_0000004 ; - rdfs:label "is predecessor of"@en ; - skos:definition "x is_predecessor_of y iff x and y are both instances of Independent Continuant and there is some process p and x is an input to p and y is an output of p."@en ; - skos:scopeNote "More informally, x is_predecessor_of y iff y follows or replaces x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001929 -cco:ont00001929 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001988 ; - rdfs:label "is maternal uncle of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001930 -cco:ont00001930 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001930 ; - rdf:type owl:SymmetricProperty ; - rdfs:label "is second cousin of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is predecessor of"@en ; + "x is_predecessor_of y iff x and y are both instances of Independent Continuant and there is some process p and x is an input to p and y is an output of p."@en ; + "More informally, x is_predecessor_of y iff y follows or replaces x."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001931 -cco:ont00001931 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001810 ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:label "externally connects with"@en ; - skos:definition "x externally_connects_with y iff x and y are both instances of Immaterial Entity and x connects with y and x does not overlap y."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001932 -cco:ont00001932 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - rdfs:label "is niece of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "externally connects with"@en ; + "x externally_connects_with y iff x and y are both instances of Immaterial Entity and x connects with y and x does not overlap y."@en ; + "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001933 -cco:ont00001933 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001803 ; - owl:inverseOf cco:ont00001962 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "process starts"@en ; - skos:definition "x process_starts y iff x and y are instances of processes, and x is_cause_of y, and i is an instance of a temporal instant, and r is an instance of a temporal interval, and y has starting instance i, and x occurs on r, and r has inside instant i."@en ; - skos:scopeNote "A process x starts another process y when x causes y while x is still occurring."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001934 -cco:ont00001934 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001806 ; - rdfs:label "has maternal first cousin"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001935 -cco:ont00001935 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - rdfs:label "has father in law"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "process starts"@en ; + "x process_starts y iff x and y are instances of processes, and x is_cause_of y, and i is an instance of a temporal instant, and r is an instance of a temporal interval, and y has starting instance i, and x occupies temporal region r, and r has inside instant i."@en ; + "A process x starts another process y when x causes y while x is still occurring."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001936 -cco:ont00001936 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000056 ; - rdfs:domain obo:BFO_0000002 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "is object of"@en ; - skos:definition "x is_object_of y iff x is an instance of Continuant and y is an instance of Process and y is performed by some instance of Agent z and x is part of the projected state that z intends to achieve by performing y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001937 -cco:ont00001937 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001840 ; - rdfs:label "has paternal grandmother"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain [ rdf:type owl:Class ; + owl:unionOf ( + + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:range ; + rdfs:label "is object of"@en ; + "x is object of y =Def x participates in y, x is an Independent Continuant (but not a Spatial Region), y is a Process, and y is performed by Agent z and x is part of the projected state that z intends to achieve by performing y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001938 -cco:ont00001938 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001808 ; - rdfs:domain cco:ont00000958 ; - rdfs:range obo:BFO_0000001 ; - rdfs:comment "Isomorphism between the carrier of x and the represented entity can be via a direct similarity relation, e.g., grooves in a vinyl record corresponding to sound waves, or linguistic convention, e.g., a court stenographer's transcription of spoken words, as well as others, such as encoding processes for images."@en ; - rdfs:label "represents"@en ; - skos:definition "x represents y iff x is an instance of Information Content Entity, y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en , - "The relationship that is being defined here is that between the content of a photographic image and its object, between the content of a video and its objects and events, between the content of an audio recording and the sounds or events generating those sounds, or between the content of a written transcript and the verbal event that it transcribes."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "represents"@en ; + "x represents y iff x is an instance of Representational Information Content Entity, y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ; + "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en , + "Isomorphism between the carrier of x and the represented entity can be via a direct similarity relation, e.g., grooves in a vinyl record corresponding to sound waves, or linguistic convention, e.g., a court stenographer's transcription of spoken words, as well as others, such as encoding processes for images."@en , + "The relationship that is being defined here is that between the content of a photographic image and its object, between the content of a video and its objects and events, between the content of an audio recording and the sounds or events generating those sounds, or between the content of a written transcript and the verbal event that it transcribes."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001939 -cco:ont00001939 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001977 ; - rdfs:domain cco:ont00001017 ; - rdfs:range cco:ont00001017 ; - rdfs:label "is affiliated with"@en ; - skos:definition "x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is affiliated with"@en ; + "x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001940 -cco:ont00001940 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001862 ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval is before"@en ; - skos:definition "x interval_is_before y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant w, z such that w is the ending instant of x and z is the starting instant of y and w is before z."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001941 -cco:ont00001941 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001955 ; - owl:inverseOf cco:ont00001958 ; - rdfs:label "is maternal aunt of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval is before"@en ; + "x interval_is_before y iff x and y are both instances of Temporal Interval and there exist instances of Temporal Instant w, z such that w is the ending instant of x and z is the starting instant of y and w is before z."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001942 -cco:ont00001942 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001808 ; - rdfs:domain cco:ont00000965 ; - rdfs:range obo:BFO_0000001 ; - rdfs:label "prescribes"@en ; - skos:definition "x prescribes y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x serves as a rule or guide for y if y an Occurrent, or x serves as a model for y if y is a Continuant."@en ; - skos:example "A blueprint prescribes some artifact or facility by being a model for it." , - "A professional code of conduct prescribes some realizations of a profession (role) by giving rules for how the bearer should act in those realizations." , - "An operations plan prescribes an operation by enumerating the tasks that need to be performed in order to achieve the objectives of the operation." ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "prescribes"@en ; + "x prescribes y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x serves as a rule or guide for y if y an Occurrent, or x serves as a model for y if y is a Continuant."@en ; + "A blueprint prescribes some artifact or facility by being a model for it." , + "A professional code of conduct prescribes some realizations of a profession (role) by giving rules for how the bearer should act in those realizations." , + "An operations plan prescribes an operation by enumerating the tasks that need to be performed in order to achieve the objectives of the operation." ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001943 -cco:ont00001943 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001977 ; - rdfs:domain cco:ont00001262 ; - rdfs:range cco:ont00001262 ; - rdfs:label "supervises"@en ; - skos:definition "x supervises y iff x and y are both instances of Person and x directs, manages, or oversees y."@en ; - cco:ont00001754 "http://en.wiktionary.org/wiki/supervise" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "supervises"@en ; + "x supervises y =Def y is supervised by x"@en ; + "http://en.wiktionary.org/wiki/supervise" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001944 -cco:ont00001944 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000176 , - cco:ont00001810 ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:comment "in the sense used here, spatial part of is elsewhere referred to as proper spatial part of"@en ; - rdfs:label "spatial part of"@en ; - skos:definition "x spatial_part_of y iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ; - cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001945 -cco:ont00001945 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - rdfs:label "is grandchild of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001946 -cco:ont00001946 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001842 ; - owl:inverseOf cco:ont00001985 ; - rdfs:label "has father"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf , + ; + rdfs:domain ; + rdfs:range ; + rdfs:label "spatial part of"@en ; + "x spatial_part_of y iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ; + "in the sense used here, spatial part of is elsewhere referred to as proper spatial part of"@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001947 -cco:ont00001947 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001809 ; - rdfs:domain obo:BFO_0000019 ; - rdfs:range obo:BFO_0000027 ; - rdfs:label "quality of aggregate"@en ; - skos:definition "x quality_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Quality, and x inheres_in_aggregate y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001948 -cco:ont00001948 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001975 ; - rdfs:label "is half sister of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "quality of aggregate"@en ; + "x quality_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Quality, and x inheres_in_aggregate y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001949 -cco:ont00001949 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000057 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range cco:ont00001017 ; - rdfs:label "has accessory"@en ; - skos:definition "x has_accessory y iff x is an instance of Process and y is an instance of Agent, such that y assists another agent in the commission of x, and y was not located at the location of x when x occurred, and y was not an agent_in x."@en ; - cco:ont00001754 "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001950 -cco:ont00001950 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001950 ; - rdf:type owl:SymmetricProperty ; - rdfs:label "is third cousin of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has accessory"@en ; + "x has accessory y =Def y accessory in x"@en ; + "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001951 -cco:ont00001951 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000023 ; - rdfs:range obo:BFO_0000023 ; - rdfs:label "has subordinate role"@en ; - skos:definition "For all x,y,t: x has subordinate role y at t iff: x is an instance of Role at time t, and y is an instance of Role at time t, and there is some z such that x is realized by z and z is an instance of Process which creates, modifies, transfers, or eliminates some u such that u is a Process Regulation at time t, and u is addressed to the bearer of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001952 -cco:ont00001952 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001818 ; - rdfs:label "is brother-in-law of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001953 -cco:ont00001953 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001995 ; - rdfs:label "has parent"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has subordinate role"@en ; + "x has subordinate role y =Def y is subordinate role to x"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001954 -cco:ont00001954 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000196 ; - rdfs:domain cco:ont00001017 ; - rdfs:range cco:ont00001379 ; - rdfs:label "has capability"@en ; - skos:definition "x has_capability y iff x is an instance of Agent and y is an instance of Agent Capability, such that x bearer of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001955 -cco:ont00001955 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - rdfs:label "is aunt of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has capability"@en ; + "x has capability y =Def y capability of x"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001956 -cco:ont00001956 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001836 ; - rdfs:domain obo:BFO_0000027 ; - rdfs:range obo:BFO_0000016 ; - rdfs:label "aggregate has disposition"@en ; - skos:definition "x aggregate_has_disposition y iff x is an instance of Object Aggregate and y is an instance of Disposition, such that x aggregate_bearer_of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001957 -cco:ont00001957 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001804 ; - rdfs:label "is husband of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001958 -cco:ont00001958 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001789 ; - rdfs:label "has maternal aunt"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "aggregate has disposition"@en ; + "x aggregate has disposition y =Def y disposition of aggregate x"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001959 -cco:ont00001959 rdf:type owl:ObjectProperty ; - owl:inverseOf cco:ont00001970 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "inhibits"@en ; - skos:definition "x inhibits y iff x and y are non-identical Processes, d is a Decrease of Realizable Entity, and x is_cause_of d, and r is a Realizable Entity, and d has_participant r, and r realized_in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001960 -cco:ont00001960 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001840 ; - rdfs:label "has maternal grandmother"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "inhibits"@en ; + "x inhibits y =Def y is inhibited by x"@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001961 -cco:ont00001961 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000084 ; - rdfs:domain cco:ont00000120 ; - rdfs:range cco:ont00000253 ; - rdfs:label "is measurement unit of"@en ; - skos:definition "x is_measurement_unit_of y iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is measurement unit of"@en ; + "x is_measurement_unit_of y iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001962 -cco:ont00001962 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001819 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "process started by"@en ; - skos:definition "x process_started_by y iff x and y are instances of processes, and x is caused_by y, and i is an instance of a temporal instant, and r is an instance of a temporal interval, and x has starting instance i, and y occurs on r, and r has inside instant i."@en ; - skos:scopeNote "A process x is started by another process y when y causes x while y is still occurring."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "process started by"@en ; + "x process started by y =Def y process starts x"@en ; + "A process x is started by another process y when y causes x while y is still occurring."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001963 -cco:ont00001963 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001904 ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00001010 ; - rdfs:label "is measured by ordinal"@en ; - skos:definition "x is_measured_by_ordinal y iff y is an instance of Ordinal Measurement Information Content Entity and x is an instance of Entity, such that y describes some attribute of x relative to a scale ordered by rank."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is measured by ordinal"@en ; + "x is measured by ordinal y =Def y is a ordinal measurement of x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001964 -cco:ont00001964 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001904 ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00001364 ; - rdfs:label "is measured by interval"@en ; - skos:definition "y is_measured_by_interval x iff x is an instance of Interval Measurement Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is measured by interval"@en ; + "x is measured by interval y =Def y is a interval measurement of x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001965 -cco:ont00001965 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001904 ; - owl:inverseOf cco:ont00001983 ; - rdfs:domain obo:BFO_0000001 ; - rdfs:range cco:ont00001022 ; - rdfs:label "is measured by ratio"@en ; - skos:definition "y is_measured_by_ratio x iff x is an instance of Ratio Measurement Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + owl:inverseOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is measured by ratio"@en ; + "x is measured by ratio y =Def y is a ratio measurement of x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001966 -cco:ont00001966 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001982 ; - rdfs:domain cco:ont00001163 ; - rdfs:range obo:BFO_0000001 ; - rdfs:comment "This object property, as well as all of its children are typified as functional properties. This means that for instances x, y, and z if x is a measurement of y and x is a measurement of z, then y = z."@en ; - rdfs:label "is a measurement of"@en ; - skos:definition "x is_a_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001967 -cco:ont00001967 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001969 ; - rdfs:label "is nephew of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001968 -cco:ont00001968 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - rdfs:label "is descendent of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001969 -cco:ont00001969 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - rdfs:label "has nephew"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is a measurement of"@en ; + "x is_a_measurement_of y iff x is an instance of Measurement Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ; + "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en , + "This object property, as well as all of its children are typified as functional properties. This means that for instances x, y, and z if x is a measurement of y and x is a measurement of z, then y = z."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001970 -cco:ont00001970 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "inhibited by"@en ; - skos:definition "y inhibited_by x iff x and y are non-identical Processes, d is a Decrease of Realizable Entity, and x is_cause_of d, and r is a Realizable Entity, and d has_participant r, and r realized_in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "inhibited by"@en ; + "y inhibited_by x iff x and y are non-identical Processes, d is a Decrease of Realizable Entity, and x is_cause_of d, and r is a Realizable Entity, and d has_participant r, and r realized_in y."@en ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001971 -cco:ont00001971 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000202 ; - rdfs:range obo:BFO_0000202 ; - rdfs:label "interval contained by"@en ; - skos:definition "x interval_contained_by y iff x and y are both instances of Temporal Interval and y interval_contains x."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001972 -cco:ont00001972 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001776 ; - rdfs:label "has paternal grandfather"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001973 -cco:ont00001973 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001776 ; - rdfs:label "has maternal grandfather"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "interval contained by"@en ; + "x interval_contained_by y iff x and y are both instances of Temporal Interval and y interval_contains x."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001974 -cco:ont00001974 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001942 ; - rdfs:domain cco:ont00001324 ; - rdfs:range obo:BFO_0000015 ; - rdfs:label "requires"@en ; - skos:definition "x requires y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that some y must occur."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001975 -cco:ont00001975 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001975 ; - rdf:type owl:SymmetricProperty ; - rdfs:label "is half-sibling of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "requires"@en ; + "x requires y at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that some y must occur."@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001976 -cco:ont00001976 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001920 ; - rdfs:domain cco:ont00000253 ; - rdfs:range cco:ont00001175 ; - rdfs:label "uses language"@en ; - skos:definition "x uses_language y iff x is an instance of an Information Bearing Entity and y is an instance of a Language such that the literal value of x is a string that is encoded according to the syntax of y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "uses language"@en ; + "x uses language y =Def y language used in x"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001977 -cco:ont00001977 rdf:type owl:ObjectProperty ; - rdfs:domain cco:ont00001017 ; - rdfs:range cco:ont00001017 ; - rdfs:label "has affiliate"@en ; - skos:definition "x has affiliate y iff y is affiliated with x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has affiliate"@en ; + "x has affiliate y =Def y is affiliated with x"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001978 -cco:ont00001978 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000056 ; - rdfs:domain cco:ont00001017 ; - rdfs:range cco:ont00000402 ; - rdfs:label "receives"@en ; - skos:definition "x receives y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the recipient and decoder of the InformationContentEntity intended for communication in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001979 -cco:ont00001979 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001996 ; - rdfs:label "is step-sister of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "receives"@en ; + "x receives y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the recipient and decoder of the InformationContentEntity intended for communication in y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001980 -cco:ont00001980 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001808 ; - rdfs:domain cco:ont00000127 ; - rdfs:range obo:BFO_0000001 ; - owl:propertyChainAxiom ( obo:BFO_0000178 - cco:ont00001982 - ) ; - rdfs:label "describes condition"@en ; - skos:definition "p describes_condition c iff p is an instance of a Performance Specification and c is an instance of Entity and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001981 -cco:ont00001981 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001850 ; - rdfs:label "has grandson"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + owl:propertyChainAxiom ( + + ) ; + rdfs:label "describes condition"@en ; + "p describes_condition c iff p is an instance of a Performance Specification and c is an instance of Entity and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001982 -cco:ont00001982 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001808 ; - rdfs:domain cco:ont00000853 ; - rdfs:range obo:BFO_0000001 ; - rdfs:comment "It is possible that this relation should be a functional property, that is for all x, y, z if x describes y and x describes z then y = z. For example, if a financial report x describes the quarterly results of a company y and that same financial report describes the quarterly results of a company z, then it should be inferred that companies y and z are the same. We refrained from classifying the relation as a functional property on the concern that descriptions are multifaceted and so consequently it may be that the same report would contain descriptions of multiple entities."@en ; - rdfs:label "describes"@en ; - skos:definition "x describes y iff x is an instance of Descriptive Information Content Entity, and y is an instance of Entity, such that x is_about the characteristics that identify y."@en ; - skos:example "the content of a newspaper article describes some current event" , - "the content of a visitor's log describes some facility visit" , - "the content of an accident report describes some accident" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "describes"@en ; + "x describes y iff x is an instance of Descriptive Information Content Entity, and y is an instance of Entity, such that x is_about the characteristics that identify y."@en ; + "the content of a newspaper article describes some current event" , + "the content of a visitor's log describes some facility visit" , + "the content of an accident report describes some accident" ; + "It is possible that this relation should be a functional property, that is for all x, y, z if x describes y and x describes z then y = z. For example, if a financial report x describes the quarterly results of a company y and that same financial report describes the quarterly results of a company z, then it should be inferred that companies y and z are the same. We refrained from classifying the relation as a functional property on the concern that descriptions are multifaceted and so consequently it may be that the same report would contain descriptions of multiple entities."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001983 -cco:ont00001983 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001966 ; - rdfs:domain cco:ont00001022 ; - rdfs:range obo:BFO_0000001 ; - rdfs:label "is a ratio measurement of"@en ; - skos:definition "x is_a_ratio_measurement_of y iff x is an instance of Ratio Measurement Information Content Entity and y is an instance of Entity and x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is a ratio measurement of"@en ; + "x is_a_ratio_measurement_of y iff x is an instance of Ratio Measurement Information Content Entity and y is an instance of Entity and x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001984 -cco:ont00001984 rdf:type owl:ObjectProperty ; - rdfs:domain cco:ont00001017 ; - rdfs:range obo:BFO_0000015 ; - dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "has interest in"@en ; - skos:definition "A relation between an Agent and some Process where the Agent has an interest in that Process."@en ; - skos:editorialNote "This term is meant to be weakly normative. The only sense in which the process is of positive normative value is that it's prescribed by the Agent, or historically of evolutionary benefit to the Agent's ancestors, or facilitates a process the Agent has an interest in for the prior two reasons. The process an Agent has an interest could in many or all ways be harmful to the Agent."@en ; - skos:prefLabel "has interest in"@en ; - skos:scopeNote "There are four conditions in which an agent has an interest in some process. 1) Biological Condition: If a part (including improper part) of an organism has a function, then that organism has an interest in the realization of that function. 2) Artifactual Condition: If a part (including improper part) of an artifact has a function, then some agent or group of agents, at some time, has an interest in the realization of that function. 3) Prescription Condition: If an agent or group of agents has a plan, then it has an interest in the realization of all the processes and process-combinations prescribed by that plan. 4) Facilitation Condition: If (a) agent x has an interest in the realization of a disposition y, and (b) the realization of a disposition z facilitates the realization of disposition y, then (c) x has an interest in the realization of disposition z, and by 'facilitates' we mean that the occurrence of a process w, which realizes realization of z is either (1) required for y, to realize or (2) would contribute positively to the grade of, y's realization."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001985 -cco:ont00001985 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001995 ; - rdfs:label "is father of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "has interest in"@en ; + "A relation between an Agent and some Process where the Agent has an interest in that Process."@en ; + "This term is meant to be weakly normative. The only sense in which the process is of positive normative value is that it's prescribed by the Agent, or historically of evolutionary benefit to the Agent's ancestors, or facilitates a process the Agent has an interest in for the prior two reasons. The process an Agent has an interest could in many or all ways be harmful to the Agent."@en ; + "has interest in"@en ; + "There are four conditions in which an agent has an interest in some process. 1) Biological Condition: If a part (including improper part) of an organism has a function, then that organism has an interest in the realization of that function. 2) Artifactual Condition: If a part (including improper part) of an artifact has a function, then some agent or group of agents, at some time, has an interest in the realization of that function. 3) Prescription Condition: If an agent or group of agents has a plan, then it has an interest in the realization of all the processes and process-combinations prescribed by that plan. 4) Facilitation Condition: If (a) agent x has an interest in the realization of a disposition y, and (b) the realization of a disposition z facilitates the realization of disposition y, then (c) x has an interest in the realization of disposition z, and by 'facilitates' we mean that the occurrence of a process w, which realizes realization of z is either (1) required for y, to realize or (2) would contribute positively to the grade of, y's realization."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001986 -cco:ont00001986 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000057 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range obo:BFO_0000002 ; - rdfs:label "has output"@en ; - skos:definition "y has_output x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=IPO_model&oldid=1024398398"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001987 -cco:ont00001987 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001995 ; - rdfs:label "has daughter"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001988 -cco:ont00001988 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - rdfs:label "is uncle of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range [ rdf:type owl:Class ; + owl:unionOf ( + + [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ) + ] ; + rdfs:label "has output"@en ; + "x has output y =Def y is output of x"@en ; + "https://en.wikipedia.org/w/index.php?title=IPO_model&oldid=1024398398"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ExtendedRelationOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001989 -cco:ont00001989 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001855 ; - rdfs:domain obo:BFO_0000141 ; - rdfs:range obo:BFO_0000141 ; - rdfs:label "has nontangential part"@en ; - skos:definition "x has_nontangential_part y iff x and y are instances of Immaterial Entity, and x has_spatial_part y, such that there does not exist another instance of an Immaterial Entity which externally connects with both x and y."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001754 "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has nontangential part"@en ; + "x has nontangential part y =Def y nontangential part of x"@en ; + "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "Randell, D. A., Cui, Z. and Cohn, A. G.: 1992, \"A spatial logic based on regions and connection,\" Proc. 3rd Int. Conf. on Knowledge Representation and Reasoning, Morgan Kaufmann, San Mateo, pp. 165-176. Available at: https://www.dpi.inpe.br/gilberto/references/cohn_rcc.pdf"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001990 -cco:ont00001990 rdf:type owl:ObjectProperty , - owl:TransitiveProperty ; - rdfs:domain obo:BFO_0000148 ; - rdfs:range obo:BFO_0000148 ; - rdfs:label "instant is before"@en ; - skos:definition "x instant_is_before y iff x and y are both instances of Zero Dimensional Temporal Region and there exists some instance of Temporal Interval z such that x is the starting instant of z and y is the ending instant of z."@en ; - skos:scopeNote "'instant is before' is a primitive relationship. Informally, a temporal instant x is before some temporal instant y iff x precedes y."@en ; - cco:ont00001754 "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty , + owl:TransitiveProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "instant is before"@en ; + "x instant_is_before y iff x and y are both instances of Zero Dimensional Temporal Region and there exists some instance of Temporal Interval z such that x is the starting instant of z and y is the ending instant of z."@en ; + "'instant is before' is a primitive relationship. Informally, a temporal instant x is before some temporal instant y iff x precedes y."@en ; + "J. F. Allen and J. A. G. M. Koomen. Planning using a temporal world model. In Proceedings of the 8th International Joint Conference on Artificial Intelligence (IJCAI-1983) pages 741–747. Available at: https://www.ijcai.org/Proceedings/83-2/Papers/036.pdf"@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001992 -cco:ont00001992 rdf:type owl:ObjectProperty ; - rdfs:domain obo:BFO_0000023 ; - rdfs:range cco:ont00001180 ; - rdfs:label "has organizational context"@en ; - skos:definition "x has_organizational_context y iff y is an instance of an Organization and x is an instance of a Role and z is an instance of a Person, such that z's affiliation with y is a prerequisite for z bearing x or y ascribes x to the bearer of x."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:domain ; + rdfs:range ; + rdfs:label "has organizational context"@en ; + "x has organizational context y =Def y is organizational context of x"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001993 -cco:ont00001993 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000056 ; - rdfs:domain cco:ont00001017 ; - rdfs:range cco:ont00000402 ; - rdfs:label "sends"@en ; - skos:definition "x sends y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001994 -cco:ont00001994 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001955 ; - rdfs:label "is paternal aunt of"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001995 -cco:ont00001995 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - rdfs:domain cco:ont00001262 ; - rdfs:range cco:ont00001262 ; - rdfs:label "is parent of"@en ; - skos:definition "x is_parent_of y is a familial relationship between an instance of Person x and a different instance of Person y." ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001996 -cco:ont00001996 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001865 ; - owl:inverseOf cco:ont00001996 ; - rdfs:label "is step-sibling of"@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "sends"@en ; + "x sends y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001997 -cco:ont00001997 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf obo:BFO_0000084 ; - rdfs:domain cco:ont00000398 ; - rdfs:range cco:ont00000253 ; - rdfs:label "is reference system of"@en ; - skos:definition "x is_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is reference system of"@en ; + "x is_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001998 -cco:ont00001998 rdf:type owl:ObjectProperty ; - rdfs:subPropertyOf cco:ont00001920 ; - rdfs:domain obo:BFO_0000015 ; - rdfs:range cco:ont00001324 ; - rdfs:label "is permitted by"@en ; - skos:definition "y is_permitted_by x at t iff: x is an instance of Process Regulation at time t, and y is an instance of Process at time t, and x prescribes that y may occur."@en ; - skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf ; + rdfs:domain ; + rdfs:range ; + rdfs:label "is permitted by"@en ; + "x is permitted by y =Def y permits x"@en ; + "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ################################################################# @@ -3045,105 +2494,105 @@ cco:ont00001998 rdf:type owl:ObjectProperty ; ### http://www.opengis.net/ont/geosparql#asWKT rdf:type owl:DatatypeProperty ; - rdfs:comment "ISO 19162:2015"@en ; rdfs:label "as WKT"@en ; - skos:definition "A Data Property that has as its range a string formated according to the Well-known text standardization for geometric objects."@en ; - skos:example "Polygon ((10 10, 10 20, 20 20, 20 15, 10 10))" ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + "A Data Property that has as its range a string formated according to the Well-known text standardization for geometric objects."@en ; + "Polygon ((10 10, 10 20, 20 20, 20 15, 10 10))" ; + "ISO 19162:2015"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001763 -cco:ont00001763 rdf:type owl:DatatypeProperty ; - rdfs:comment "Altitude values typically use kilometers as the Unit of Measurement."@en ; - rdfs:label "has altitude value"@en ; - skos:scopeNote "This data property can be used along with has_latitude_value and has_longitude_value to connect three-dimensional spatial data to a single Information Bearing Entity to specify the location of an entity in a Geospatial Region."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:label "has altitude value"@en ; + "Altitude values typically use kilometers as the Unit of Measurement."@en , + "This data property can be used along with has_latitude_value and has_longitude_value to connect three-dimensional spatial data to a single Information Bearing Entity to specify the location of an entity in a Geospatial Region."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001764 -cco:ont00001764 rdf:type owl:DatatypeProperty ; - rdfs:range xsd:decimal ; - rdfs:label "has longitude value"@en ; - skos:definition "A Data Property that has as its range the longitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:range xsd:decimal ; + rdfs:label "has longitude value"@en ; + "A Data Property that has as its range the longitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001765 -cco:ont00001765 rdf:type owl:DatatypeProperty ; - rdfs:domain cco:ont00000253 ; - rdfs:label "has text value"@en ; - skos:definition "A data property that has as its range a string value."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "has text value"@en ; + "A data property that has as its range a string value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001766 -cco:ont00001766 rdf:type owl:DatatypeProperty ; - rdfs:range xsd:decimal ; - rdfs:label "has latitude value"@en ; - skos:definition "A Data Property that has as its range the latitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:range xsd:decimal ; + rdfs:label "has latitude value"@en ; + "A Data Property that has as its range the latitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001767 -cco:ont00001767 rdf:type owl:DatatypeProperty ; - rdfs:domain cco:ont00000253 ; - rdfs:range xsd:dateTime ; - rdfs:label "has datetime value"@en ; - skos:definition "A data property that has as its value a datetime value."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:dateTime ; + rdfs:label "has datetime value"@en ; + "A data property that has as its value a datetime value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001768 -cco:ont00001768 rdf:type owl:DatatypeProperty ; - rdfs:domain cco:ont00000253 ; - rdfs:range xsd:anyURI ; - rdfs:label "has URI value"@en ; - skos:definition "A data property that has as its range a URI value."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:anyURI ; + rdfs:label "has URI value"@en ; + "A data property that has as its range a URI value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001769 -cco:ont00001769 rdf:type owl:DatatypeProperty ; - rdfs:domain cco:ont00000253 ; - rdfs:range xsd:decimal ; - rdfs:label "has decimal value"@en ; - skos:definition "A data property that has as its range a decimal value."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:decimal ; + rdfs:label "has decimal value"@en ; + "A data property that has as its range a decimal value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001770 -cco:ont00001770 rdf:type owl:DatatypeProperty ; - rdfs:domain cco:ont00000253 ; - rdfs:range xsd:double ; - rdfs:label "has double value"@en ; - skos:definition "A data property that has as its range a double value."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:double ; + rdfs:label "has double value"@en ; + "A data property that has as its range a double value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001771 -cco:ont00001771 rdf:type owl:DatatypeProperty ; - rdfs:domain cco:ont00000253 ; - rdfs:label "has date value"@en ; - skos:definition "A data property that has as its range a date value."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:label "has date value"@en ; + "A data property that has as its range a date value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001772 -cco:ont00001772 rdf:type owl:DatatypeProperty ; - rdfs:domain cco:ont00000253 ; - rdfs:range xsd:boolean ; - rdfs:label "has boolean value"@en ; - skos:definition "A data property that has as its range a boolean value."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:boolean ; + rdfs:label "has boolean value"@en ; + "A data property that has as its range a boolean value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001773 -cco:ont00001773 rdf:type owl:DatatypeProperty ; - rdfs:domain cco:ont00000253 ; - rdfs:range xsd:integer ; - rdfs:label "has integer value"@en ; - skos:definition "A data property that has as its range an integer value."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:DatatypeProperty ; + rdfs:domain ; + rdfs:range xsd:integer ; + rdfs:label "has integer value"@en ; + "A data property that has as its range an integer value."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ################################################################# @@ -3151,14407 +2600,14039 @@ cco:ont00001773 rdf:type owl:DatatypeProperty ; ################################################################# ### http://purl.obolibrary.org/obo/BFO_0000001 -obo:BFO_0000001 rdf:type owl:Class ; - "001-BFO" ; - rdfs:label "entity"@en ; - skos:definition "(Elucidation) An entity is anything that exists or has existed or will exist"@en ; - skos:example "Julius Caesar; the Second World War; your body mass index; Verdi's Requiem"@en . + rdf:type owl:Class ; + "001-BFO" ; + rdfs:label "entity"@en ; + "(Elucidation) An entity is anything that exists or has existed or will exist"@en ; + "Julius Caesar; the Second World War; your body mass index; Verdi's Requiem"@en . ### http://purl.obolibrary.org/obo/BFO_0000002 -obo:BFO_0000002 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000001 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:allValuesFrom obo:BFO_0000002 - ] ; - owl:disjointWith obo:BFO_0000003 ; - "008-BFO" ; - rdfs:label "continuant"@en ; - skos:definition "(Elucidation) A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity"@en ; - skos:example "A human being; a tennis ball; a cave; a region of space; someone's temperature"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + owl:disjointWith ; + "008-BFO" ; + rdfs:label "continuant"@en ; + "(Elucidation) A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity"@en ; + "A human being; a tennis ball; a cave; a region of space; someone's temperature"@en . ### http://purl.obolibrary.org/obo/BFO_0000003 -obo:BFO_0000003 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000001 ; - "077-BFO" ; - rdfs:label "occurrent"@en ; - skos:definition "(Elucidation) An occurrent is an entity that unfolds itself in time or it is the start or end of such an entity or it is a temporal or spatiotemporal region"@en ; - skos:example "As for process, history, process boundary, spatiotemporal region, zero-dimensional temporal region, one-dimensional temporal region, temporal interval, temporal instant."@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "077-BFO" ; + rdfs:label "occurrent"@en ; + "(Elucidation) An occurrent is an entity that unfolds itself in time or it is the start or end of such an entity or it is a temporal or spatiotemporal region"@en ; + "As for process, history, process boundary, spatiotemporal region, zero-dimensional temporal region, one-dimensional temporal region, temporal interval, temporal instant."@en . ### http://purl.obolibrary.org/obo/BFO_0000004 -obo:BFO_0000004 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000002 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:allValuesFrom obo:BFO_0000004 - ] ; - "017-BFO" ; - rdfs:label "independent continuant"@en ; - skos:definition "b is an independent continuant =Def b is a continuant & there is no c such that b specifically depends on c or b generically depends on c"@en ; - skos:example "An atom; a molecule; an organism; a heart; a chair; the bottom right portion of a human torso; a leg; the interior of your mouth; a spatial region; an orchestra"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "017-BFO" ; + rdfs:label "independent continuant"@en ; + "b is an independent continuant =Def b is a continuant & there is no c such that b specifically depends on c or b generically depends on c"@en ; + "An atom; a molecule; an organism; a heart; a chair; the bottom right portion of a human torso; a leg; the interior of your mouth; a spatial region; an orchestra"@en . ### http://purl.obolibrary.org/obo/BFO_0000006 -obo:BFO_0000006 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000141 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:allValuesFrom obo:BFO_0000006 - ] ; - "035-BFO" ; - rdfs:label "spatial region"@en ; - skos:definition "(Elucidation) A spatial region is a continuant entity that is a continuant part of the spatial projection of a portion of spacetime at a given time"@en ; - skos:example "As for zero-dimensional spatial region, one-dimensional spatial region, two-dimensional spatial region, three-dimensional spatial region"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "035-BFO" ; + rdfs:label "spatial region"@en ; + "(Elucidation) A spatial region is a continuant entity that is a continuant part of the spatial projection of a portion of spacetime at a given time"@en ; + "As for zero-dimensional spatial region, one-dimensional spatial region, two-dimensional spatial region, three-dimensional spatial region"@en . ### http://purl.obolibrary.org/obo/BFO_0000008 -obo:BFO_0000008 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000003 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000132 ; - owl:allValuesFrom obo:BFO_0000008 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000139 ; - owl:allValuesFrom obo:BFO_0000008 - ] ; - "100-BFO" ; - rdfs:label "temporal region"@en ; - skos:definition "(Elucidation) A temporal region is an occurrent over which processes can unfold"@en ; - skos:example "As for zero-dimensional temporal region and one-dimensional temporal region"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "100-BFO" ; + rdfs:label "temporal region"@en ; + "(Elucidation) A temporal region is an occurrent over which processes can unfold"@en ; + "As for zero-dimensional temporal region and one-dimensional temporal region"@en . ### http://purl.obolibrary.org/obo/BFO_0000009 -obo:BFO_0000009 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000006 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000009 - obo:BFO_0000018 - obo:BFO_0000026 - ) - ] - ] ; - "039-BFO" ; - rdfs:label "two-dimensional spatial region"@en ; - skos:definition "(Elucidation) A two-dimensional spatial region is a spatial region that is a whole consisting of a surface together with zero or more surfaces which may have spatial regions of lower dimension as parts"@en ; - skos:example "The surface of a sphere-shaped part of space; an infinitely thin plane in space"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] + ] ; + "039-BFO" ; + rdfs:label "two-dimensional spatial region"@en ; + "(Elucidation) A two-dimensional spatial region is a spatial region that is a whole consisting of a surface together with zero or more surfaces which may have spatial regions of lower dimension as parts"@en ; + "The surface of a sphere-shaped part of space; an infinitely thin plane in space"@en . ### http://purl.obolibrary.org/obo/BFO_0000011 -obo:BFO_0000011 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000003 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000132 ; - owl:allValuesFrom obo:BFO_0000011 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000139 ; - owl:allValuesFrom obo:BFO_0000011 - ] ; - "095-BFO" ; - rdfs:label "spatiotemporal region"@en ; - skos:definition "(Elucidation) A spatiotemporal region is an occurrent that is an occurrent part of spacetime"@en ; - skos:example "The spatiotemporal region occupied by the development of a cancer tumour; the spatiotemporal region occupied by an orbiting satellite"@en ; - skos:scopeNote "'Spacetime' here refers to the maximal instance of the universal spatiotemporal region."@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "095-BFO" ; + rdfs:label "spatiotemporal region"@en ; + "(Elucidation) A spatiotemporal region is an occurrent that is an occurrent part of spacetime"@en ; + "The spatiotemporal region occupied by the development of a cancer tumour; the spatiotemporal region occupied by an orbiting satellite"@en ; + "'Spacetime' here refers to the maximal instance of the universal spatiotemporal region."@en . ### http://purl.obolibrary.org/obo/BFO_0000015 -obo:BFO_0000015 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000003 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000117 ; - owl:allValuesFrom [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000015 - obo:BFO_0000035 - ) - ] - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000132 ; - owl:allValuesFrom obo:BFO_0000015 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000139 ; - owl:allValuesFrom obo:BFO_0000015 - ] ; - "083-BFO" ; - rdfs:label "process"@en ; - skos:altLabel "event"@en ; - skos:definition "(Elucidation) p is a process means p is an occurrent that has some temporal proper part and for some time t, p has some material entity as participant"@en ; - skos:example "An act of selling; the life of an organism; a process of sleeping; a process of cell-division; a beating of the heart; a process of meiosis; the taxiing of an aircraft; the programming of a computer"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "083-BFO" ; + rdfs:label "process"@en ; + "event"@en ; + "(Elucidation) p is a process means p is an occurrent that has some temporal proper part and for some time t, p has some material entity as participant"@en ; + "An act of selling; the life of an organism; a process of sleeping; a process of cell-division; a beating of the heart; a process of meiosis; the taxiing of an aircraft; the programming of a computer"@en . ### http://purl.obolibrary.org/obo/BFO_0000016 -obo:BFO_0000016 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000017 ; - owl:disjointWith obo:BFO_0000023 ; - "062-BFO" ; - rdfs:label "disposition"@en ; - skos:altLabel "internally-grounded realizable entity"@en ; - skos:definition "(Elucidation) A disposition b is a realizable entity such that if b ceases to exist then its bearer is physically changed & b's realization occurs when and because this bearer is in some special physical circumstances & this realization occurs in virtue of the bearer's physical make-up"@en ; - skos:example "An atom of element X has the disposition to decay to an atom of element Y; the cell wall is disposed to transport cellular material through endocytosis and exocytosis; certain people have a predisposition to colon cancer; children are innately disposed to categorize objects in certain ways"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + "062-BFO" ; + rdfs:label "disposition"@en ; + "internally-grounded realizable entity"@en ; + "(Elucidation) A disposition b is a realizable entity such that if b ceases to exist then its bearer is physically changed & b's realization occurs when and because this bearer is in some special physical circumstances & this realization occurs in virtue of the bearer's physical make-up"@en ; + "An atom of element X has the disposition to decay to an atom of element Y; the cell wall is disposed to transport cellular material through endocytosis and exocytosis; certain people have a predisposition to colon cancer; children are innately disposed to categorize objects in certain ways"@en . ### http://purl.obolibrary.org/obo/BFO_0000017 -obo:BFO_0000017 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000020 ; - owl:disjointWith obo:BFO_0000019 ; - "058-BFO" ; - rdfs:label "realizable entity"@en ; - skos:definition "(Elucidation) A realizable entity is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region & which is of a type some instances of which are realized in processes of a correlated type"@en ; - skos:example "The role of being a doctor; the role of this boundary to delineate where Utah and Colorado meet; the function of your reproductive organs; the disposition of your blood to coagulate; the disposition of this piece of metal to conduct electricity"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + "058-BFO" ; + rdfs:label "realizable entity"@en ; + "(Elucidation) A realizable entity is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region & which is of a type some instances of which are realized in processes of a correlated type"@en ; + "The role of being a doctor; the role of this boundary to delineate where Utah and Colorado meet; the function of your reproductive organs; the disposition of your blood to coagulate; the disposition of this piece of metal to conduct electricity"@en . ### http://purl.obolibrary.org/obo/BFO_0000018 -obo:BFO_0000018 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000006 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom obo:BFO_0000018 - ] ; - "037-BFO" ; - rdfs:label "zero-dimensional spatial region"@en ; - skos:definition "(Elucidation) A zero-dimensional spatial region is one or a collection of more than one spatially disjoint points in space"@en ; - skos:example "The spatial region occupied at some time instant by the North Pole"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "037-BFO" ; + rdfs:label "zero-dimensional spatial region"@en ; + "(Elucidation) A zero-dimensional spatial region is one or a collection of more than one spatially disjoint points in space"@en ; + "The spatial region occupied at some time instant by the North Pole"@en . ### http://purl.obolibrary.org/obo/BFO_0000019 -obo:BFO_0000019 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000020 ; - "055-BFO" ; - rdfs:label "quality"@en ; - skos:definition "(Elucidation) A quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized"@en ; - skos:example "The colour of a tomato; the ambient temperature of this portion of air; the length of the circumference of your waist; the shape of your nose; the shape of your nostril; the mass of this piece of gold"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "055-BFO" ; + rdfs:label "quality"@en ; + "(Elucidation) A quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized"@en ; + "The colour of a tomato; the ambient temperature of this portion of air; the length of the circumference of your waist; the shape of your nose; the shape of your nostril; the mass of this piece of gold"@en . ### http://purl.obolibrary.org/obo/BFO_0000020 -obo:BFO_0000020 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000002 ; - "050-BFO" ; - rdfs:label "specifically dependent continuant"@en ; - skos:definition "b is a specifically dependent continuant =Def b is a continuant & there is some independent continuant c which is not a spatial region & which is such that b specifically depends on c"@en ; - skos:example "(with multiple bearers) John's love for Mary; the ownership relation between John and this statue; the relation of authority between John and his subordinates"@en , - "(with one bearer) The mass of this tomato; the pink colour of a medium rare piece of grilled filet mignon at its centre; the smell of this portion of mozzarella; the disposition of this fish to decay; the role of being a doctor; the function of this heart to pump blood; the shape of this hole"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "050-BFO" ; + rdfs:label "specifically dependent continuant"@en ; + "b is a specifically dependent continuant =Def b is a continuant & there is some independent continuant c which is not a spatial region & which is such that b specifically depends on c"@en ; + "(with multiple bearers) John's love for Mary; the ownership relation between John and this statue; the relation of authority between John and his subordinates"@en , + "(with one bearer) The mass of this tomato; the pink colour of a medium rare piece of grilled filet mignon at its centre; the smell of this portion of mozzarella; the disposition of this fish to decay; the role of being a doctor; the function of this heart to pump blood; the shape of this hole"@en . ### http://purl.obolibrary.org/obo/BFO_0000023 -obo:BFO_0000023 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000017 ; - "061-BFO" ; - rdfs:label "role"@en ; - skos:altLabel "externally-grounded realizable entity"@en ; - skos:definition "(Elucidation) A role b is a realizable entity such that b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be & b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed"@en ; - skos:example "The priest role; the student role; the role of subject in a clinical trial; the role of a stone in marking a property boundary; the role of a boundary to demarcate two neighbouring administrative territories; the role of a building in serving as a military target"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "061-BFO" ; + rdfs:label "role"@en ; + "externally-grounded realizable entity"@en ; + "(Elucidation) A role b is a realizable entity such that b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be & b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed"@en ; + "The priest role; the student role; the role of subject in a clinical trial; the role of a stone in marking a property boundary; the role of a boundary to demarcate two neighbouring administrative territories; the role of a building in serving as a military target"@en . ### http://purl.obolibrary.org/obo/BFO_0000024 -obo:BFO_0000024 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000040 ; - "027-BFO" ; - rdfs:label "fiat object part"@en ; - skos:definition "(Elucidation) A fiat object part b is a material entity & such that if b exists then it is continuant part of some object c & demarcated from the remainder of c by one or more fiat surfaces"@en ; - skos:example "The upper and lower lobes of the left lung; the dorsal and ventral surfaces of the body; the Western hemisphere of the Earth; the FMA:regional parts of an intact human body"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "027-BFO" ; + rdfs:label "fiat object part"@en ; + "(Elucidation) A fiat object part b is a material entity & such that if b exists then it is continuant part of some object c & demarcated from the remainder of c by one or more fiat surfaces"@en ; + "The upper and lower lobes of the left lung; the dorsal and ventral surfaces of the body; the Western hemisphere of the Earth; the FMA:regional parts of an intact human body"@en . ### http://purl.obolibrary.org/obo/BFO_0000026 -obo:BFO_0000026 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000006 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000018 - obo:BFO_0000026 - ) - ] - ] ; - "038-BFO" ; - rdfs:label "one-dimensional spatial region"@en ; - skos:definition "(Elucidation) A one-dimensional spatial region is a whole consisting of a line together with zero or more lines which may have points as parts"@en ; - skos:example "An edge of a cube-shaped portion of space; a line connecting two points; two parallel lines extended in space"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] ; + "038-BFO" ; + rdfs:label "one-dimensional spatial region"@en ; + "(Elucidation) A one-dimensional spatial region is a whole consisting of a line together with zero or more lines which may have points as parts"@en ; + "An edge of a cube-shaped portion of space; a line connecting two points; two parallel lines extended in space"@en . ### http://purl.obolibrary.org/obo/BFO_0000027 -obo:BFO_0000027 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000040 ; - "025-BFO" ; - rdfs:label "object aggregate"@en ; - skos:definition "(Elucidation) An object aggregate is a material entity consisting exactly of a plurality (≥1) of objects as member parts which together form a unit"@en ; - skos:example "The aggregate of the musicians in a symphony orchestra and their instruments; the aggregate of bearings in a constant velocity axle joint; the nitrogen atoms in the atmosphere; a collection of cells in a blood biobank"@en ; - skos:scopeNote "'Exactly' means that there are no parts of the object aggregate other than its member parts." , - "The unit can, at certain times, consist of exactly one object, for example, when a wolf litter loses all but one of its pups, but it must at some time have a plurality of member parts." . + rdf:type owl:Class ; + rdfs:subClassOf ; + "025-BFO" ; + rdfs:label "object aggregate"@en ; + "(Elucidation) An object aggregate is a material entity consisting exactly of a plurality (≥1) of objects as member parts which together form a unit"@en ; + "The aggregate of the musicians in a symphony orchestra and their instruments; the aggregate of bearings in a constant velocity axle joint; the nitrogen atoms in the atmosphere; a collection of cells in a blood biobank"@en ; + "'Exactly' means that there are no parts of the object aggregate other than its member parts." , + "The unit can, at certain times, consist of exactly one object, for example, when a wolf litter loses all but one of its pups, but it must at some time have a plurality of member parts." . ### http://purl.obolibrary.org/obo/BFO_0000028 -obo:BFO_0000028 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000006 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom obo:BFO_0000006 - ] ; - "040-BFO" ; - rdfs:label "three-dimensional spatial region"@en ; - skos:definition "(Elucidation) A three-dimensional spatial region is a whole consisting of a spatial volume together with zero or more spatial volumes which may have spatial regions of lower dimension as parts"@en ; - skos:example "A cube-shaped region of space; a sphere-shaped region of space; the region of space occupied by all and only the planets in the solar system at some point in time"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "040-BFO" ; + rdfs:label "three-dimensional spatial region"@en ; + "(Elucidation) A three-dimensional spatial region is a whole consisting of a spatial volume together with zero or more spatial volumes which may have spatial regions of lower dimension as parts"@en ; + "A cube-shaped region of space; a sphere-shaped region of space; the region of space occupied by all and only the planets in the solar system at some point in time"@en . ### http://purl.obolibrary.org/obo/BFO_0000029 -obo:BFO_0000029 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000141 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:allValuesFrom [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000029 - obo:BFO_0000040 - ) - ] - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000029 - obo:BFO_0000140 - ) - ] - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000210 ; - owl:allValuesFrom obo:BFO_0000028 - ] ; - "034-BFO" ; - rdfs:label "site"@en ; - skos:definition "(Elucidation) A site is a three-dimensional immaterial entity whose boundaries either (partially or wholly) coincide with the boundaries of one or more material entities or have locations determined in relation to some material entity"@en ; - skos:example "A hole in a portion of cheese; a rabbit hole; the Grand Canyon; the Piazza San Marco; the kangaroo-joey-containing hole of a kangaroo pouch; your left nostril (a fiat part - the opening - of your left nasal cavity); the lumen of your gut; the hold of a ship; the interior of the trunk of your car; hole in an engineered floor joist"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "034-BFO" ; + rdfs:label "site"@en ; + "(Elucidation) A site is a three-dimensional immaterial entity whose boundaries either (partially or wholly) coincide with the boundaries of one or more material entities or have locations determined in relation to some material entity"@en ; + "A hole in a portion of cheese; a rabbit hole; the Grand Canyon; the Piazza San Marco; the kangaroo-joey-containing hole of a kangaroo pouch; your left nostril (a fiat part - the opening - of your left nasal cavity); the lumen of your gut; the hold of a ship; the interior of the trunk of your car; hole in an engineered floor joist"@en . ### http://purl.obolibrary.org/obo/BFO_0000030 -obo:BFO_0000030 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000040 ; - "024-BFO" ; - rdfs:label "object"@en ; - skos:definition "(Elucidation) An object is a material entity which manifests causal unity & is of a type instances of which are maximal relative to the sort of causal unity manifested"@en ; - skos:example "An organism; a fish tank; a planet; a laptop; a valve; a block of marble; an ice cube"@en ; - skos:scopeNote "A description of three primary sorts of causal unity is provided in Basic Formal Ontology 2.0. Specification and User Guide"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "024-BFO" ; + rdfs:label "object"@en ; + "(Elucidation) An object is a material entity which manifests causal unity & is of a type instances of which are maximal relative to the sort of causal unity manifested"@en ; + "An organism; a fish tank; a planet; a laptop; a valve; a block of marble; an ice cube"@en ; + "A description of three primary sorts of causal unity is provided in Basic Formal Ontology 2.0. Specification and User Guide"@en . ### http://purl.obolibrary.org/obo/BFO_0000031 -obo:BFO_0000031 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000002 ; - "074-BFO" ; - rdfs:label "generically dependent continuant"@en ; - skos:altLabel "g-dependent continuant"@en ; - skos:definition "(Elucidation) A generically dependent continuant is an entity that exists in virtue of the fact that there is at least one of what may be multiple copies which is the content or the pattern that multiple copies would share"@en ; - skos:example "The pdf file on your laptop; the pdf file that is a copy thereof on my laptop; the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule; the content that is shared by a string of dots and dashes written on a page and the transmitted Morse code signal; the content of a sentence; an engineering blueprint"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "074-BFO" ; + rdfs:label "generically dependent continuant"@en ; + "g-dependent continuant"@en ; + "(Elucidation) A generically dependent continuant is an entity that exists in virtue of the fact that there is at least one of what may be multiple copies which is the content or the pattern that multiple copies would share"@en ; + "The pdf file on your laptop; the pdf file that is a copy thereof on my laptop; the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule; the content that is shared by a string of dots and dashes written on a page and the transmitted Morse code signal; the content of a sentence; an engineering blueprint"@en . ### http://purl.obolibrary.org/obo/BFO_0000034 -obo:BFO_0000034 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000016 ; - "064-BFO" ; - rdfs:label "function"@en ; - skos:definition "(Elucidation) A function is a disposition that exists in virtue of its bearer's physical make-up & this physical make-up is something the bearer possesses because it came into being either through evolution (in the case of natural biological entities) or through intentional design (in the case of artefacts) in order to realize processes of a certain sort"@en ; - skos:example "The function of a hammer to drive in nails; the function of a heart pacemaker to regulate the beating of a heart through electricity"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "064-BFO" ; + rdfs:label "function"@en ; + "(Elucidation) A function is a disposition that exists in virtue of its bearer's physical make-up & this physical make-up is something the bearer possesses because it came into being either through evolution (in the case of natural biological entities) or through intentional design (in the case of artefacts) in order to realize processes of a certain sort"@en ; + "The function of a hammer to drive in nails; the function of a heart pacemaker to regulate the beating of a heart through electricity"@en . ### http://purl.obolibrary.org/obo/BFO_0000035 -obo:BFO_0000035 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000003 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000117 ; - owl:allValuesFrom obo:BFO_0000035 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000121 ; - owl:allValuesFrom obo:BFO_0000035 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000132 ; - owl:allValuesFrom [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000015 - obo:BFO_0000035 - ) - ] - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000139 ; - owl:allValuesFrom [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000015 - obo:BFO_0000035 - ) - ] - ] ; - "084-BFO" ; - rdfs:label "process boundary"@en ; - skos:definition "p is a process boundary =Def p is a temporal part of a process & p has no proper temporal parts"@en ; - skos:example "The boundary between the 2nd and 3rd year of your life"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] ; + "084-BFO" ; + rdfs:label "process boundary"@en ; + "p is a process boundary =Def p is a temporal part of a process & p has no proper temporal parts"@en ; + "The boundary between the 2nd and 3rd year of your life"@en . ### http://purl.obolibrary.org/obo/BFO_0000038 -obo:BFO_0000038 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000008 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000121 ; - owl:allValuesFrom [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000038 - obo:BFO_0000148 - ) - ] - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000139 ; - owl:allValuesFrom obo:BFO_0000038 - ] ; - owl:disjointWith obo:BFO_0000148 ; - "103-BFO" ; - rdfs:label "one-dimensional temporal region"@en ; - skos:definition "(Elucidation) A one-dimensional temporal region is a temporal region that is a whole that has a temporal interval and zero or more temporal intervals and temporal instants as parts"@en ; - skos:example "The temporal region during which a process occurs"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + owl:disjointWith ; + "103-BFO" ; + rdfs:label "one-dimensional temporal region"@en ; + "(Elucidation) A one-dimensional temporal region is a temporal region that is a whole that has a temporal interval and zero or more temporal intervals and temporal instants as parts"@en ; + "The temporal region during which a process occurs"@en . ### http://purl.obolibrary.org/obo/BFO_0000040 -obo:BFO_0000040 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000004 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:allValuesFrom obo:BFO_0000040 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000029 - obo:BFO_0000040 - obo:BFO_0000140 - ) - ] - ] ; - owl:disjointWith obo:BFO_0000141 ; - "019-BFO" ; - rdfs:label "material entity"@en ; - skos:definition "(Elucidation) A material entity is an independent continuant has some portion of matter as continuant part"@en ; - skos:example "A human being; the undetached arm of a human being; an aggregate of human beings"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + + ) + ] + ] ; + owl:disjointWith ; + "019-BFO" ; + rdfs:label "material entity"@en ; + "(Elucidation) A material entity is an independent continuant has some portion of matter as continuant part"@en ; + "A human being; the undetached arm of a human being; an aggregate of human beings"@en . ### http://purl.obolibrary.org/obo/BFO_0000140 -obo:BFO_0000140 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000141 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000124 ; - owl:allValuesFrom obo:BFO_0000140 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom obo:BFO_0000140 - ] ; - "029-BFO" ; - rdfs:label "continuant fiat boundary"@en ; - skos:definition "(Elucidation) A continuant fiat boundary b is an immaterial entity that is of zero, one or two dimensions & such that there is no time t when b has a spatial region as continuant part & whose location is determined in relation to some material entity"@en ; - skos:example "As for fiat point, fiat line, fiat surface"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "029-BFO" ; + rdfs:label "continuant fiat boundary"@en ; + "(Elucidation) A continuant fiat boundary b is an immaterial entity that is of zero, one or two dimensions & such that there is no time t when b has a spatial region as continuant part & whose location is determined in relation to some material entity"@en ; + "As for fiat point, fiat line, fiat surface"@en . ### http://purl.obolibrary.org/obo/BFO_0000141 -obo:BFO_0000141 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000004 ; - "028-BFO" ; - rdfs:label "immaterial entity"@en ; - skos:definition "b is an immaterial entity =Def b is an independent continuant which is such that there is no time t when it has a material entity as continuant part"@en ; - skos:example "As for fiat point, fiat line, fiat surface, site"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "028-BFO" ; + rdfs:label "immaterial entity"@en ; + "b is an immaterial entity =Def b is an independent continuant which is such that there is no time t when it has a material entity as continuant part"@en ; + "As for fiat point, fiat line, fiat surface, site"@en . ### http://purl.obolibrary.org/obo/BFO_0000142 -obo:BFO_0000142 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000140 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom [ rdf:type owl:Class ; - owl:unionOf ( obo:BFO_0000142 - obo:BFO_0000147 - ) - ] - ] ; - "032-BFO" ; - rdfs:label "fiat line"@en ; - skos:definition "(Elucidation) A fiat line is a one-dimensional continuant fiat boundary that is continuous"@en ; - skos:example "The Equator; all geopolitical boundaries; all lines of latitude and longitude; the median sulcus of your tongue; the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] ; + "032-BFO" ; + rdfs:label "fiat line"@en ; + "(Elucidation) A fiat line is a one-dimensional continuant fiat boundary that is continuous"@en ; + "The Equator; all geopolitical boundaries; all lines of latitude and longitude; the median sulcus of your tongue; the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin"@en . ### http://purl.obolibrary.org/obo/BFO_0000144 -obo:BFO_0000144 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000003 ; - rdfs:label "Process Profile"@en ; - skos:definition "An occurrent that is an occurrent part of some process by virtue of the rate, or pattern, or amplitude of change in an attribute of one or more participants of said process."@en ; - skos:example "On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels; One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.; The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."@en ; - skos:scopeNote "b process_profile_of c holds when b proper_occurrent_part_of c& there is some proper_occurrent_part d of c which has no parts in common with b & is mutually dependent on b& is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Process Profile"@en ; + "An occurrent that is an occurrent part of some process by virtue of the rate, or pattern, or amplitude of change in an attribute of one or more participants of said process."@en ; + "On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels; One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.; The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."@en ; + "b process_profile_of c holds when b proper_occurrent_part_of c& there is some proper_occurrent_part d of c which has no parts in common with b & is mutually dependent on b& is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])"@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### http://purl.obolibrary.org/obo/BFO_0000145 -obo:BFO_0000145 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - "057-BFO" ; - rdfs:label "relational quality"@en ; - skos:definition "b is a relational quality =Def b is a quality & there exists c and d such that c and d are not identical & b specifically depends on c & b specifically depends on d"@en ; - skos:example "A marriage bond; an instance of love; an obligation between one person and another"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "057-BFO" ; + rdfs:label "relational quality"@en ; + "b is a relational quality =Def b is a quality & there exists c and d such that c and d are not identical & b specifically depends on c & b specifically depends on d"@en ; + "A marriage bond; an instance of love; an obligation between one person and another"@en . ### http://purl.obolibrary.org/obo/BFO_0000146 -obo:BFO_0000146 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000140 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom obo:BFO_0000140 - ] ; - "033-BFO" ; - rdfs:label "fiat surface"@en ; - skos:definition "(Elucidation) A fiat surface is a two-dimensional continuant fiat boundary that is self-connected"@en ; - skos:example "The surface of the Earth; the plane separating the smoking from the non-smoking zone in a restaurant"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "033-BFO" ; + rdfs:label "fiat surface"@en ; + "(Elucidation) A fiat surface is a two-dimensional continuant fiat boundary that is self-connected"@en ; + "The surface of the Earth; the plane separating the smoking from the non-smoking zone in a restaurant"@en . ### http://purl.obolibrary.org/obo/BFO_0000147 -obo:BFO_0000147 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000140 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom obo:BFO_0000147 - ] ; - "031-BFO" ; - rdfs:label "fiat point"@en ; - skos:definition "(Elucidation) A fiat point is a zero-dimensional continuant fiat boundary that consists of a single point"@en ; - skos:example "The geographic North Pole; the quadripoint where the boundaries of Colorado, Utah, New Mexico and Arizona meet; the point of origin of some spatial coordinate system"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "031-BFO" ; + rdfs:label "fiat point"@en ; + "(Elucidation) A fiat point is a zero-dimensional continuant fiat boundary that consists of a single point"@en ; + "The geographic North Pole; the quadripoint where the boundaries of Colorado, Utah, New Mexico and Arizona meet; the point of origin of some spatial coordinate system"@en . ### http://purl.obolibrary.org/obo/BFO_0000148 -obo:BFO_0000148 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000008 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000121 ; - owl:allValuesFrom obo:BFO_0000148 - ] ; - "102-BFO" ; - rdfs:label "zero-dimensional temporal region"@en ; - skos:definition "(Elucidation) A zero-dimensional temporal region is a temporal region that is a whole consisting of one or more separated temporal instants as parts"@en ; - skos:example "A temporal region that is occupied by a process boundary; the moment at which a finger is detached in an industrial accident"@en . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + "102-BFO" ; + rdfs:label "zero-dimensional temporal region"@en ; + "(Elucidation) A zero-dimensional temporal region is a temporal region that is a whole consisting of one or more separated temporal instants as parts"@en ; + "A temporal region that is occupied by a process boundary; the moment at which a finger is detached in an industrial accident"@en . ### http://purl.obolibrary.org/obo/BFO_0000182 -obo:BFO_0000182 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000015 ; - "138-BFO" ; - rdfs:label "history"@en ; - skos:definition "(Elucidation) A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by the material part of a material entity"@en ; - skos:example "The life of an organism from the beginning to the end of its existence"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "138-BFO" ; + rdfs:label "history"@en ; + "(Elucidation) A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by the material part of a material entity"@en ; + "The life of an organism from the beginning to the end of its existence"@en . ### http://purl.obolibrary.org/obo/BFO_0000202 -obo:BFO_0000202 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000038 ; - "155-BFO" ; - rdfs:label "temporal interval"@en ; - skos:definition "(Elucidation) A temporal interval is a one-dimensional temporal region that is continuous, thus without gaps or breaks"@en ; - skos:example "The year 2018."@en ; - skos:scopeNote "A one-dimensional temporal region can include as parts not only temporal intervals but also temporal instants separated from other parts by gaps."@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "155-BFO" ; + rdfs:label "temporal interval"@en ; + "(Elucidation) A temporal interval is a one-dimensional temporal region that is continuous, thus without gaps or breaks"@en ; + "The year 2018."@en ; + "A one-dimensional temporal region can include as parts not only temporal intervals but also temporal instants separated from other parts by gaps."@en . ### http://purl.obolibrary.org/obo/BFO_0000203 -obo:BFO_0000203 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000148 ; - "209-BFO" ; - rdfs:label "temporal instant"@en ; - skos:definition "(Elucidation) A temporal instant is a zero-dimensional temporal region that has no proper temporal part"@en ; - skos:example "The millennium"@en . + rdf:type owl:Class ; + rdfs:subClassOf ; + "209-BFO" ; + rdfs:label "temporal instant"@en ; + "(Elucidation) A temporal instant is a zero-dimensional temporal region that has no proper temporal part"@en ; + "The millennium"@en . ### https://www.commoncoreontologies.org/ont00000001 -cco:ont00000001 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000804 ; - rdfs:label "Deflecting Prism"@en ; - skos:definition "A Prism designed to deflect a beam of light entering the Prism by a fixed angle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Deflecting Prism"@en ; + "A Prism designed to deflect a beam of light entering the Prism by a fixed angle."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000002 -cco:ont00000002 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Cooling Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process in which the thermal energy of a system decreases."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cooling Artifact Function"@en ; + "An Artifact Function that is realized in a process in which the thermal energy of a system decreases."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000003 -cco:ont00000003 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000686 ; - owl:disjointWith cco:ont00000649 ; - rdfs:label "Designative Name"@en ; - skos:altLabel "Name"@en ; - skos:definition "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified cultural or social namespace and which is typically a word or phrase in a natural language that has an accepted cultural or social significance."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Designative Name"@en ; + "Name"@en ; + "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified cultural or social namespace and which is typically a word or phrase in a natural language that has an accepted cultural or social significance."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000004 -cco:ont00000004 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000015 ; - rdfs:label "Change"@en ; - skos:definition "A Process in which some independent continuant endures and 1) one or more of the dependent entities it bears increase or decrease in intensity, 2) the entity begins to bear some dependent entity or 3) the entity ceases to bear some dependent entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Change"@en ; + "A Process in which some independent continuant endures and 1) one or more of the dependent entities it bears increase or decrease in intensity, 2) the entity begins to bear some dependent entity or 3) the entity ceases to bear some dependent entity."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000005 -cco:ont00000005 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000015 ; - rdfs:label "Act"@en ; - skos:definition "A Process in which at least one Agent plays a causative role."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act"@en ; + "A Process in which at least one Agent plays a causative role."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000006 -cco:ont00000006 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000530 ; - rdfs:label "Upper Midrange Frequency"@en ; - skos:definition "A Sonic Frequency that is between 2 and 4 kHz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Upper Midrange Frequency"@en ; + "A Sonic Frequency that is between 2 and 4 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000007 -cco:ont00000007 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000015 ; - rdfs:label "Natural Process"@en ; - skos:definition "A Process existing in or produced by nature; rather than by the intent of human beings."@en ; - cco:ont00001754 "http://www.thefreedictionary.com/natural+process" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Natural Process"@en ; + "A Process existing in or produced by nature; rather than by the intent of human beings."@en ; + "http://www.thefreedictionary.com/natural+process" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000008 -cco:ont00000008 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001047 ; - rdfs:label "Sound Frequency"@en ; - skos:definition "A Frequency that is the rate of Oscillations per second of a Sound Wave."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Sound Frequency"@en ; + "A Frequency that is the rate of Oscillations per second of a Sound Wave."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000009 -cco:ont00000009 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Mass Density"@en ; - skos:altLabel "Density"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of that bearer's mass per unit volume."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mass Density"@en ; + "Density"@en ; + "A Quality that inheres in a bearer in virtue of that bearer's mass per unit volume."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000010 -cco:ont00000010 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001180 ; - rdfs:label "Incorporated Organization"@en ; - skos:altLabel "Corporation"@en ; - skos:definition "An Organization formed by an Act of Incorporation that consists of an association of individuals, created by law or under authority of law, having a continuous existence independent of the existences of its members and owners, and having powers and liabilities distinct from those of its members and owners."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/corporation" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Incorporated Organization"@en ; + "Corporation"@en ; + "An Organization formed by an Act of Incorporation that consists of an association of individuals, created by law or under authority of law, having a continuous existence independent of the existences of its members and owners, and having powers and liabilities distinct from those of its members and owners."@en ; + "http://www.dictionary.com/browse/corporation" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000011 -cco:ont00000011 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000135 ; - rdfs:label "Nominal Stasis"@en ; - skos:altLabel "Nominal"@en ; - skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has a level of intensity or functionality that falls within the designed, expected, or acceptable range such that the Independent Continuant is of normal value, usefulness, or functionality."@en ; - cco:ont00001754 "https://en.oxforddictionaries.com/definition/nominal (Definition 6)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nominal Stasis"@en ; + "Nominal"@en ; + "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has a level of intensity or functionality that falls within the designed, expected, or acceptable range such that the Independent Continuant is of normal value, usefulness, or functionality."@en ; + "https://en.oxforddictionaries.com/definition/nominal (Definition 6)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000012 -cco:ont00000012 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000781 ; - rdfs:label "Propulsion Control System"@en ; - skos:definition "A Control System that consists of control devices, displays, indicators, or modules designed to control a Propulsion System."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propulsion Control System"@en ; + "A Control System that consists of control devices, displays, indicators, or modules designed to control a Propulsion System."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000013 -cco:ont00000013 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000554 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000057 ; - owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom obo:BFO_0000031 - ] - ) ; - rdf:type owl:Class - ] - ] ; - rdfs:label "Gain of Generically Dependent Continuant"@en ; - skos:definition "A Gain of Dependent Continuant wherein some Independent Continuant becomes the carrier of some Generically Dependent Continuant."@en ; - skos:example "A Person forms a Plan, A Person is initiated into a Religion, A photgraphic image is produced." ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000014 -cco:ont00000014 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000241 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002016 - ] ; - rdfs:label "Material Copy of a Aztec Code"@en ; - skos:altLabel "Aztec Code"@en ; - skos:definition "A Material Copy of a Two-Dimensional Barcode that is used by the transportation industry to scan tickets."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Generically Dependent Continuant"@en ; + "A Gain of Dependent Continuant wherein some Independent Continuant becomes the carrier of some Generically Dependent Continuant."@en ; + "A Person forms a Plan, A Person is initiated into a Religion, A photgraphic image is produced." ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000015 -cco:ont00000015 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001104 ; - rdfs:label "Shotgun"@en ; - skos:definition "A Long Gun that fires packets of shot, a single slug, a sabot, or a specialty round (such as tear gas, bolo shell, or a breaching round) over shorter ranges than that of Rifles and with less accuracy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Shotgun&oldid=1062571691"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shotgun"@en ; + "A Long Gun that fires packets of shot, a single slug, a sabot, or a specialty round (such as tear gas, bolo shell, or a breaching round) over shorter ranges than that of Rifles and with less accuracy."@en ; + "https://en.wikipedia.org/w/index.php?title=Shotgun&oldid=1062571691"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000016 -cco:ont00000016 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001286 ; - rdfs:label "Triangular Waveform"@en ; - skos:definition "A Waveform that is characterized by a triangular shape due to the continuous linear zig-zag transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Triangular Waveform"@en ; + "A Waveform that is characterized by a triangular shape due to the continuous linear zig-zag transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000017 -cco:ont00000017 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000026 ; - rdfs:label "Minor Axis"@en ; - skos:definition "A One-Dimensional Spatial Region that is the longest line segment perpendicular to the Major Axis that connects two points on the edge of an Ellipse."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Semi-major_and_semi-minor_axes&oldid=1047911304"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Minor Axis"@en ; + "A One-Dimensional Spatial Region that is the longest line segment perpendicular to the Major Axis that connects two points on the edge of an Ellipse."@en ; + "https://en.wikipedia.org/w/index.php?title=Semi-major_and_semi-minor_axes&oldid=1047911304"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000018 -cco:ont00000018 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001346 ; - rdfs:label "Title Document"@en ; - skos:definition "A Legal Instrument that is designed as evidence of ownership."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Title_(property)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Title Document"@en ; + "A Legal Instrument that is designed as evidence of ownership."@en ; + "https://en.wikipedia.org/wiki/Title_(property)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000019 -cco:ont00000019 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000961 ; - rdfs:label "Power Inverting Artifact Function"@en ; - skos:definition "A Current Conversion Artifact Function that is realized by processes in which some Material Artifact is used to convert direct current (DC) to alternating current (AC)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Inverting Artifact Function"@en ; + "A Current Conversion Artifact Function that is realized by processes in which some Material Artifact is used to convert direct current (DC) to alternating current (AC)."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000020 -cco:ont00000020 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Container"@en ; - skos:definition "A Material Artifact that is designed to contain (wholly or partially) some material entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Container"@en ; + "A Material Artifact that is designed to contain (wholly or partially) some material entity."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000021 -cco:ont00000021 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Sensor Platform"@en ; - skos:definition "A Material Artifact that is designed to support, and in some cases transport, a Sensor during its deployment and functioning."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Sensor Platform"@en ; + "A Material Entity that bears a Sensor Platform Artifact Function or Sensor Platform Role."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000022 -cco:ont00000022 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000422 ; - rdfs:label "Radio Communication Reception Artifact Function"@en ; - skos:definition "A Communication Reception Artifact Function that is realized during events in which a Material Artifact receives information transmitted from another Material Artifact, where the transmission of information occurs using radio waves."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Communication Reception Artifact Function"@en ; + "A Communication Reception Artifact Function that is realized during events in which a Material Artifact receives information transmitted from another Material Artifact, where the transmission of information occurs using radio waves."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000023 -cco:ont00000023 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Sensor Deployment Artifact Function"@en ; - skos:definition "An Artifact Function that inheres in Material Artifacts that are designed to support or convey one or more Sensors while the Sensors are realizing their own Artifact Functions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sensor Deployment Artifact Function"@en ; + "An Artifact Function that inheres in Material Artifacts that are designed to support or convey one or more Sensors while the Sensors are realizing their own Artifact Functions."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000024 -cco:ont00000024 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000133 ; - rdfs:label "Act of Advising"@en ; - skos:definition "An Act of Directive Communication performed by providing advice or counsel to another agent."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/advising" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Advising"@en ; + "An Act of Directive Communication performed by providing advice or counsel to another agent."@en ; + "http://www.dictionary.com/browse/advising" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000025 -cco:ont00000025 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001278 ; - rdfs:label "Electronic Stock"@en ; - skos:definition "Stock that consists of Bytes."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electronic Stock"@en ; + "Stock that consists of Bytes."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000026 -cco:ont00000026 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Hair Color"@en ; - skos:definition "A Quality inhering in a portion of Hair by virtue of its color."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hair Color"@en ; + "A Quality inhering in a portion of Hair by virtue of its color."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000027 -cco:ont00000027 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000517 ; - rdfs:label "Mailing"@en ; - skos:altLabel "Act of Mailing"@en ; - skos:definition "An Act of Communication by Media in which information and tangible objects, usually written documents, are delivered to destinations around the world."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mailing"@en ; + "Act of Mailing"@en ; + "An Act of Communication by Media in which information and tangible objects, usually written documents, are delivered to destinations around the world."@en ; + "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000028 -cco:ont00000028 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000804 ; - rdfs:label "Dispersive Prism"@en ; - skos:definition "A Prism designed to break up a beam of light entering the Prism into its constituent spectral colors by leveraging the refractive index of light based on its Frequency."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Dispersive Prism"@en ; + "A Prism designed to break up a beam of light entering the Prism into its constituent spectral colors by leveraging the refractive index of light based on its Frequency."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000029 -cco:ont00000029 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000745 ; - rdfs:label "Median Point Estimate Information Content Entity"@en ; - skos:altLabel "Median"@en ; - skos:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to either the middle value or the average of the two values which separate the set into two equally populated upper and lower sets."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Median Point Estimate Information Content Entity"@en ; + "Median"@en ; + "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to either the middle value or the average of the two values which separate the set into two equally populated upper and lower sets."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000030 -cco:ont00000030 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000288 ; - rdfs:label "Nuclear Reactor"@en ; - skos:definition "A Power Source that is designed to initiate and control a self-sustained nuclear chain reaction to produce power in the form of heat, which can be transferred to a working fluid for further conversion to mechanical or electrical energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nuclear_reactor&oldid=1063370273"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Reactor"@en ; + "A Power Source that is designed to initiate and control a self-sustained nuclear chain reaction to produce power in the form of heat, which can be transferred to a working fluid for further conversion to mechanical or electrical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Nuclear_reactor&oldid=1063370273"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000031 -cco:ont00000031 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001081 ; - rdfs:label "Atmospheric Feature"@en ; - skos:definition "A Geographic Feature that is part of the atmosphere (including the atmosphere itself as a non-proper part) having a relatively stable lifecycle and which has a location that can be distinguished from the surrounding portion of the atmosphere."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Atmospheric Feature"@en ; + "A Geographic Feature that is part of the atmosphere (including the atmosphere itself as a non-proper part) having a relatively stable lifecycle and which has a location that can be distinguished from the surrounding portion of the atmosphere."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000032 -cco:ont00000032 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000052 ; - rdfs:label "Church"@en ; - skos:definition "A Religious Facility that is designed for Christian worship and prayer."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Church_(building)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Church"@en ; + "A Religious Facility that is designed for Christian worship and prayer."@en ; + "https://en.wikipedia.org/wiki/Church_(building)" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000033 -cco:ont00000033 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000854 ; - rdfs:label "Decrease of Role"@en ; - skos:definition "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Role that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Role"@en ; + "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Role that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000034 -cco:ont00000034 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000448 ; - rdfs:label "Conveyance Artifact Function"@en ; - skos:definition "A Motion Artifact Function that is realized in a process in which the bearer of the function conveys entities from one location to another."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Conveyance Artifact Function"@en ; + "A Motion Artifact Function that is realized in a process in which the bearer of the function conveys entities from one location to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000035 -cco:ont00000035 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000490 ; - rdfs:label "Soft X-ray Frequency"@en ; - skos:definition "An X-Ray Frequency that is between 30 petahertz and 3 exahertz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Soft X-ray Frequency"@en ; + "An X-Ray Frequency that is between 30 petahertz and 3 exahertz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000036 -cco:ont00000036 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Waste Management Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes of collecting, transporting, processing, recycling, monitoring, or disposing of waste materials."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Waste Management Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of collecting, transporting, processing, recycling, monitoring, or disposing of waste materials."@en ; + "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000037 -cco:ont00000037 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Observation"@en ; - skos:definition "A Planned Act of acquiring information from a source via the use of one or more senses."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Observation&oldid=1062502087"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Observation"@en ; + "A Planned Act of acquiring information from a source via the use of one or more senses."@en ; + "https://en.wikipedia.org/w/index.php?title=Observation&oldid=1062502087"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000038 -cco:ont00000038 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "System Role"@en ; - skos:definition "A Role that inheres in an entity in virtue of its parts or elements being arranged in such a way that they together exhibit behavior or meaning that they do not exhibit individually."@en ; - cco:ont00001754 "https://www.incose.org/about-systems-engineering/system-and-se-definition/general-system-definition"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "System Role"@en ; + "A Role that inheres in an entity in virtue of its parts or elements being arranged in such a way that they together exhibit behavior or meaning that they do not exhibit individually."@en ; + "https://www.incose.org/about-systems-engineering/system-and-se-definition/general-system-definition"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000039 -cco:ont00000039 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000838 ; - rdfs:label "Portion of Solid Fuel"@en ; - skos:definition "A Portion of Fuel that is stored in a solid state."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Solid Fuel"@en ; + "A Portion of Fuel that is stored in a solid state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000040 -cco:ont00000040 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001102 ; - rdfs:label "Grocery Store"@en ; - skos:definition "A Commercial Facility that is designed to sell food."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Grocery_store&oldid=1060022873"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Grocery Store"@en ; + "A Commercial Facility that is designed to sell food."@en ; + "https://en.wikipedia.org/w/index.php?title=Grocery_store&oldid=1060022873"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000041 -cco:ont00000041 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000410 ; - rdfs:label "Hostel"@en ; - skos:definition "A Residential Facility that is designed to temporarily lodge guests in a sociable environment for relatively low costs."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hostel&oldid=1057812930"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hostel"@en ; + "A Residential Facility that is designed to temporarily lodge guests in a sociable environment for relatively low costs."@en ; + "https://en.wikipedia.org/w/index.php?title=Hostel&oldid=1057812930"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000042 -cco:ont00000042 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Semicircular"@en ; - skos:definition "A Shape quality inhering in a bearer in virtue of the bearer having the shape of half a circle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Semicircular"@en ; + "A Shape quality inhering in a bearer in virtue of the bearer having the shape of half a circle."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000043 -cco:ont00000043 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000593 ; - rdfs:label "Portion of Solid Propellant"@en ; - skos:definition "A Portion of Propellant that is stored in a solid state."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Solid Propellant"@en ; + "A Portion of Propellant that is stored in a solid state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000044 -cco:ont00000044 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000197 ; - owl:someValuesFrom cco:ont00000404 - ] ; - rdfs:label "Eye Color"@en ; - skos:definition "A Quality inhering in an Eye by virtue of the color of the Eye's Iris."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Eye Color"@en ; + "A Quality inhering in an Eye by virtue of the color of the Eye's Iris."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000045 -cco:ont00000045 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000881 ; - rdfs:label "Petroleum Depot"@en ; - skos:definition "A Storage Facility that is designed to store petroleum, oil, or lubricants."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Petroleum Depot"@en ; + "A Storage Facility that is designed to store petroleum, oil, or lubricants."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000046 -cco:ont00000046 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000126 ; - rdfs:label "Province"@en ; - skos:definition "A First-Order Administrative Region that is part of a Country and delimits the authority of a magistrate who holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the Province."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Province&oldid=1062496131"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Province"@en ; + "A First-Order Administrative Region that is part of a Country and delimits the authority of a magistrate who holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the Province."@en ; + "https://en.wikipedia.org/w/index.php?title=Province&oldid=1062496131"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000047 -cco:ont00000047 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000598 ; - rdfs:comment "Flow Control Valves are often more complex than a simple Valve and typically include an Actuator that is capable of automatically adjusting the state of the valve in response to signals from a connected Sensor or Controller."@en ; - rdfs:label "Flow Control Valve"@en ; - skos:definition "A Valve that is designed to regulate the flow or Pressure of a fluid."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flow_control_valve&oldid=1013438085"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Flow Control Valve"@en ; + "A Valve that is designed to regulate the flow or Pressure of a fluid."@en ; + "Flow Control Valves are often more complex than a simple Valve and typically include an Actuator that is capable of automatically adjusting the state of the valve in response to signals from a connected Sensor or Controller."@en ; + "https://en.wikipedia.org/w/index.php?title=Flow_control_valve&oldid=1013438085"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000048 -cco:ont00000048 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000499 ; - rdfs:label "Random Wire Antenna"@en ; - skos:definition "A Wire Antenna that consists of a long wire suspended above the ground with a length that does not bear a relation to the wavelength of the radio waves used and which is typically used as a receiving antenna on the long, medium, and short wave bands."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Random_wire_antenna&oldid=1058546356"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Random Wire Antenna"@en ; + "A Wire Antenna that consists of a long wire suspended above the ground with a length that does not bear a relation to the wavelength of the radio waves used and which is typically used as a receiving antenna on the long, medium, and short wave bands."@en ; + "https://en.wikipedia.org/w/index.php?title=Random_wire_antenna&oldid=1058546356"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000049 -cco:ont00000049 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000475 ; - rdfs:label "Banknote"@en ; - skos:definition "A Portion of Cash that consists of a portable slips of paper or fabric designed to bear some specified Financial Value."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Banknote"@en ; + "A Portion of Cash that consists of a portable slips of paper or fabric designed to bear some specified Financial Value."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000050 -cco:ont00000050 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000903 ; - rdfs:label "Very High Frequency Communication Instrument"@en ; - skos:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some Very High Frequency."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Very High Frequency Communication Instrument"@en ; + "A Radio Communication Instrument that is designed to participate in some process that has process part some Very High Frequency."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000051 -cco:ont00000051 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000908 ; - rdfs:comment "An Act of Construction typically involves the production of only one or a limited number of goods, such as in the construction of an airport or a community of condominiums."@en ; - rdfs:label "Act of Construction"@en ; - skos:definition "An Act of Artifact Processing wherein Material Artifacts are built on site as prescribed by some contract."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Construction"@en ; + "An Act of Material Artifact Processing wherein Material Artifacts are built on site as prescribed by some contract."@en ; + "An Act of Construction typically involves the production of only one or a limited number of goods, such as in the construction of an airport or a community of condominiums."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000052 -cco:ont00000052 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Religious Facility"@en ; - skos:definition "A Facility that is designed for worship and prayer."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Religious Facility"@en ; + "A Facility that is designed for worship and prayer."@en ; + "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000053 -cco:ont00000053 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000618 ; - rdfs:label "Ground Motor Vehicle"@en ; - skos:definition "A Ground Vehicle that is designed to receive its motive power from an Engine and is not designed to travel on rails."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Motor_vehicle&oldid=1063627395"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ground Motor Vehicle"@en ; + "A Ground Vehicle that is designed to receive its motive power from an Engine and is not designed to travel on rails."@en ; + "https://en.wikipedia.org/w/index.php?title=Motor_vehicle&oldid=1063627395"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000054 -cco:ont00000054 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000431 ; - rdfs:label "Stirling Engine"@en ; - skos:definition "An External Combusion Engine that is designed to compress and expand some working fluid at different temperatures, such that there is a net conversion of heat energy to mechanical work."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Stirling_engine&oldid=1061164490"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stirling Engine"@en ; + "An External Combusion Engine that is designed to compress and expand some working fluid at different temperatures, such that there is a net conversion of heat energy to mechanical work."@en ; + "https://en.wikipedia.org/w/index.php?title=Stirling_engine&oldid=1061164490"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000055 -cco:ont00000055 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Healthcare Facility"@en ; - skos:definition "A Facility that is designed for the diagnosis, treatment, and prevention of disease."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Medicine&oldid=1062226814"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Healthcare Facility"@en ; + "A Facility that is designed for the diagnosis, treatment, and prevention of disease."@en ; + "https://en.wikipedia.org/w/index.php?title=Medicine&oldid=1062226814"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000056 -cco:ont00000056 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000210 ; - rdfs:label "Reaction Engine"@en ; - skos:altLabel "Reaction Motor"@en ; - skos:definition "An Engine that provides propulsion by expelling Reaction Mass."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reaction_engine&oldid=1046981784"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reaction Engine"@en ; + "Reaction Motor"@en ; + "An Engine that provides propulsion by expelling Reaction Mass."@en ; + "https://en.wikipedia.org/w/index.php?title=Reaction_engine&oldid=1046981784"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000057 -cco:ont00000057 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000907 ; - rdfs:label "Mobile Telephone"@en ; - skos:definition "A Telephone that is connected to a Telephone Network by radio waves."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mobile_phone&oldid=1061800841"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mobile Telephone"@en ; + "A Telephone that is connected to a Telephone Network by radio waves."@en ; + "https://en.wikipedia.org/w/index.php?title=Mobile_phone&oldid=1061800841"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000058 -cco:ont00000058 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000084 ; - rdfs:label "Scalp Hair"@en ; - skos:definition "A Bodily Component that consists of a portion of hair that grows on the scalp of a human or other animal."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Scalp Hair"@en ; + "A Bodily Component that consists of a portion of hair that grows on the scalp of a human or other animal."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000059 -cco:ont00000059 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000825 ; - rdfs:label "Telephone Line"@en ; - skos:altLabel "Telephone Circuit"@en ; - skos:definition "A Telecommunication Network Line that consists of a physical wire or other signaling medium that is designed to be part of a Telephone Network."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telephone Line"@en ; + "Telephone Circuit"@en ; + "A Telecommunication Network Line that consists of a physical wire or other signaling medium that is designed to be part of a Telephone Network."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000060 -cco:ont00000060 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000639 ; - rdfs:label "Open Pit Mine"@en ; - skos:definition "A Mine that is designed to support the extraction of materials from the ground directly without using tunnels."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Open-pit_mining&oldid=1059271938"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Open Pit Mine"@en ; + "A Mine that is designed to support the extraction of materials from the ground directly without using tunnels."@en ; + "https://en.wikipedia.org/w/index.php?title=Open-pit_mining&oldid=1059271938"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000061 -cco:ont00000061 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Flow"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the rate at which portions of a substance pass per unit of time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Flow"@en ; + "A Measurement Unit that is used as a standard for measurement of the rate at which portions of a substance pass per unit of time."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000062 -cco:ont00000062 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001100 ; - rdfs:label "Frequency Measurement Artifact Function"@en ; - skos:definition "A Measurement Artifact Function that is realized during events in which a Material Artifact is used to measure the Frequency of a specified object or class of objects."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Frequency Measurement Artifact Function"@en ; + "A Measurement Artifact Function that is realized during events in which a Material Artifact is used to measure the Frequency of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000063 -cco:ont00000063 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000038 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001924 ; - owl:someValuesFrom cco:ont00001058 - ] ; - rdfs:comment "This is a defined class."@en ; - rdfs:label "Multi-Hour Temporal Interval"@en ; - skos:definition "A one-dimensional temporal region that is measured in Hours and spans at least one Hour."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Multi-Hour Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Hours and spans at least one Hour."@en ; + "This is a defined class."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000064 -cco:ont00000064 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001298 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002040 - ] ; - rdfs:label "Material Copy of a Book"@en ; - skos:altLabel "Book"@en ; - skos:definition "A Material Copy of a Document that is designed to carry some specific Information Content Entity by means of ink, paper, parchment, or other materials fastened together to hinge at one side."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Book&oldid=1063132471"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Book"@en ; + "Book"@en ; + "A Material Copy of a Document that is designed to carry some specific Information Content Entity by means of ink, paper, parchment, or other materials fastened together to hinge at one side."@en ; + "https://en.wikipedia.org/w/index.php?title=Book&oldid=1063132471"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000065 -cco:ont00000065 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000357 ; - rdfs:label "Act of Location Change"@en ; - skos:definition "An Act of Motion in which the location of some Object is changed by some Agent."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Location Change"@en ; + "An Act of Motion in which the location of some Object is changed by some Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000066 -cco:ont00000066 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Military Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes related to the armed services."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Artifact Function"@en ; + "A Service Artifact Function that is realized in processes related to the armed services."@en ; + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000067 -cco:ont00000067 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001328 ; - rdfs:comment "In traditional astronomical usage, civil time is mean solar time as calculated from midnight as the beginning of the Civil Day."@en , - "Note that Civil Time Reference System is more accurately represented as a Temporal Reference System that participates in an act of usage that is sanctioned by an appropriate civil authority. As such, it should be represented as a defined class."@en ; - rdfs:label "Civil Time Reference System"@en ; - skos:definition "A Temporal Reference System that is a statutory time scale as designated by civilian authorities to determine local time(s)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Civil Time Reference System"@en ; + "A Temporal Reference System that is a statutory time scale as designated by civilian authorities to determine local time(s)."@en ; + "In traditional astronomical usage, civil time is mean solar time as calculated from midnight as the beginning of the Civil Day."@en , + "Note that Civil Time Reference System is more accurately represented as a Temporal Reference System that participates in an act of usage that is sanctioned by an appropriate civil authority. As such, it should be represented as a defined class."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000068 -cco:ont00000068 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000028 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001855 ; - owl:someValuesFrom cco:ont00001348 - ] ; - rdfs:label "Three-Dimensional Path"@en ; - skos:definition "A Three-Dimensional Spatial Region that encompasses the spatial region through which some Object travels."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Three-Dimensional Path"@en ; + "A Three-Dimensional Spatial Region that encompasses the spatial region through which some Object travels."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000069 -cco:ont00000069 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001298 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002041 - ] ; - rdfs:label "Material Copy of a Transcript"@en ; - skos:altLabel "Transcript"@en ; - skos:definition "A Material Copy of a Document that is designed to carry some specific Information Content Entity that was originally recorded in a different medium."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transcript&oldid=1038510063"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Transcript"@en ; + "Transcript"@en ; + "A Material Copy of a Document that is designed to carry some specific Information Content Entity that was originally recorded in a different medium."@en ; + "https://en.wikipedia.org/w/index.php?title=Transcript&oldid=1038510063"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000070 -cco:ont00000070 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000018 ; - rdfs:label "Ground Track Point"@en ; - skos:definition "A Zero-Dimensional Spatial Region that is an idealized point located on the surface of an Astronomical Body directly below an Object Track Point."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ground Track Point"@en ; + "A Zero-Dimensional Spatial Region that is an idealized point located on the surface of an Astronomical Body directly below an Object Track Point."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000071 -cco:ont00000071 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000460 ; - rdfs:label "Town"@en ; - skos:definition "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a Village but smaller than that of a City; is designated as a town based on a particular administrative, legal, or historical status; and which delimits a local Government that typically exercises less power than that of a City Government."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/town" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Town"@en ; + "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a Village but smaller than that of a City; is designated as a town based on a particular administrative, legal, or historical status; and which delimits a local Government that typically exercises less power than that of a City Government."@en ; + "http://www.dictionary.com/browse/town" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000072 -cco:ont00000072 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000224 ; - rdfs:label "Low Density Residential Area"@en ; - skos:definition "A Populated Place where houses are on lots of more than one acre."@en ; - cco:ont00001754 "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Low Density Residential Area"@en ; + "A Populated Place where houses are on lots of more than one acre."@en ; + "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000073 -cco:ont00000073 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000399 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom obo:BFO_0000038 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000399 ; - rdfs:label "Temporal Interval Identifier"@en ; - skos:altLabel "One-Dimensional Temporal Region Identifier"@en ; - skos:definition "A Temporal Region Identifier that designates some Temporal Interval."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Temporal Interval Identifier"@en ; + "One-Dimensional Temporal Region Identifier"@en ; + "A Temporal Region Identifier that designates some Temporal Interval."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000074 -cco:ont00000074 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Acceleration"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the rate at which objects change their velocities per unit of time."@en ; - skos:example "feet per second per second, kilometers per second per second" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Acceleration"@en ; + "A Measurement Unit that is used as a standard for measurement of the rate at which objects change their velocities per unit of time."@en ; + "feet per second per second, kilometers per second per second" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000075 -cco:ont00000075 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000304 ; - rdfs:label "Optical Microscope"@en ; - skos:altLabel "Light Microscope"@en ; - skos:definition "A Microscope that is designed to use visible light and a system of Optical Lenses to produce a significantly enlarged image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Optical_microscope&oldid=1063131242"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Microscope"@en ; + "Light Microscope"@en ; + "A Microscope that is designed to use visible light and a system of Optical Lenses to produce a significantly enlarged image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Optical_microscope&oldid=1063131242"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000076 -cco:ont00000076 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000727 ; - rdfs:label "Wired Communication Artifact Function"@en ; - skos:definition "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of a (usually cylindrical) flexible strand or rod of metal."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wired Communication Artifact Function"@en ; + "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of a (usually cylindrical) flexible strand or rod of metal."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000077 -cco:ont00000077 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000649 ; - owl:disjointWith cco:ont00000923 ; - rdfs:label "Code Identifier"@en ; - skos:altLabel "Code ID"@en , - "ID Code"@en , - "Identifier Code"@en ; - skos:definition "A Non-Name Identifier that consists of a string of characters that was created and assigned according to an encoding system such that metadata can be derived from the identifier."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Code Identifier"@en ; + "Code ID"@en , + "ID Code"@en , + "Identifier Code"@en ; + "A Non-Name Identifier that consists of a string of characters that was created and assigned according to an encoding system such that metadata can be derived from the identifier."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000078 -cco:ont00000078 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000345 ; - rdfs:comment "Although the boundary between Act of Estimation and guessing is vague, estimation can be partially distinguished from guessing in that every Act of Estimation has as input some relevant information; whereas an act of guessing can occur sans information (or at least sans pertinent information). For example, if Mr. Green were asked how many blades of grass are in his lawn, he could simply choose a number (i.e. he could guess) or he could estimate the number by counting how many baldes of grass are in 1 square foot of his lawn, measuring the square footage of his lawn, and then multiplying these values to arrive at a number. Hence, many estimates may be loosely considered to be educated guesses."@en , - "Note that, while every Act of Measuring arguably involves some degree of estimation (for example, a measuring instrument rounding to the nearest ten-thousandth or an Agent reading an analog display), it would be a mistake to classify all Acts of Measuring as Acts of Estimation. This holds even for cases (e.g. census taking) in which sofisticated estimations are often more accurate than other means of measuring (e.g. enumeration)."@en ; - rdfs:label "Act of Estimation"@en ; - skos:altLabel "Act of Approximation"@en ; - skos:definition "An Act of Measuring that involves the comparison of a measurement of a similar Entity or of a portion of the Entity being estimated to produce an approximated measurement of the target Entity."@en ; - skos:example "measuring how much time a train will add to your commute by measuring how long it takes for 10 train cars to pass a given point and then combining this information with an estimate of how many train cars are in a typical train based on your past experience" , - "measuring the amount of time required to do a task based on how long it took to do a similar task in the past" , - "measuring the height of a building by counting the number of floors and multiplying it by the height of an average floor in an average building" , - "measuring the property value of a house based on its square footage and the average cost per square foot of other houses in the area" ; - skos:scopeNote "In all cases, the Agent in an Act of Estimation either lacks complete information, lacks access to the relevant information, or chooses not to use the complete information (perhaps to save money or time) about the thing being estimated; instead, the Agent uses some or all of the relevant information that the Agent does have as a basis for arriving at the estimate."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Estimation"@en ; + "Act of Approximation"@en ; + "An Act of Measuring that involves the comparison of a measurement of a similar Entity or of a portion of the Entity being estimated to produce an approximated measurement of the target Entity."@en ; + "measuring how much time a train will add to your commute by measuring how long it takes for 10 train cars to pass a given point and then combining this information with an estimate of how many train cars are in a typical train based on your past experience" , + "measuring the amount of time required to do a task based on how long it took to do a similar task in the past" , + "measuring the height of a building by counting the number of floors and multiplying it by the height of an average floor in an average building" , + "measuring the property value of a house based on its square footage and the average cost per square foot of other houses in the area" ; + "Although the boundary between Act of Estimation and guessing is vague, estimation can be partially distinguished from guessing in that every Act of Estimation has as input some relevant information; whereas an act of guessing can occur sans information (or at least sans pertinent information). For example, if Mr. Green were asked how many blades of grass are in his lawn, he could simply choose a number (i.e. he could guess) or he could estimate the number by counting how many baldes of grass are in 1 square foot of his lawn, measuring the square footage of his lawn, and then multiplying these values to arrive at a number. Hence, many estimates may be loosely considered to be educated guesses."@en , + "In all cases, the Agent in an Act of Estimation either lacks complete information, lacks access to the relevant information, or chooses not to use the complete information (perhaps to save money or time) about the thing being estimated; instead, the Agent uses some or all of the relevant information that the Agent does have as a basis for arriving at the estimate."@en , + "Note that, while every Act of Measuring arguably involves some degree of estimation (for example, a measuring instrument rounding to the nearest ten-thousandth or an Agent reading an analog display), it would be a mistake to classify all Acts of Measuring as Acts of Estimation. This holds even for cases (e.g. census taking) in which sofisticated estimations are often more accurate than other means of measuring (e.g. enumeration)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000079 -cco:ont00000079 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001327 ; - rdfs:label "Act of Social Movement"@en ; - skos:definition "A Social Act composed of a series of performances, displays and campaigns directed at implementing, resisting or undoing a change in society."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Social_movement&oldid=1062720561"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Social Movement"@en ; + "A Social Act composed of a series of performances, displays and campaigns directed at implementing, resisting or undoing a change in society."@en ; + "https://en.wikipedia.org/w/index.php?title=Social_movement&oldid=1062720561"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000080 -cco:ont00000080 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000827 ; - rdfs:label "Standard Time of Day Identifier"@en ; - skos:definition "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using the Hours, Minutes, and Seconds of the Day that preceded the Temporal Instant."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Standard Time of Day Identifier"@en ; + "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using the Hours, Minutes, and Seconds of the Day that preceded the Temporal Instant."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000081 -cco:ont00000081 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000445 ; - rdfs:label "Cutting Weapon"@en ; - skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of separating some portion of its target into two or more portions through the application of acutely directed force."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cutting&oldid=1058846915"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cutting Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of separating some portion of its target into two or more portions through the application of acutely directed force."@en ; + "https://en.wikipedia.org/w/index.php?title=Cutting&oldid=1058846915"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000082 -cco:ont00000082 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Green"@en ; - skos:definition "A Color that is between Yellow and Cyan with a wavelength in the visible spectrum, typically between 520 to 560 nanometers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Green"@en ; + "A Color that is between Yellow and Cyan with a wavelength in the visible spectrum, typically between 520 to 560 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000083 -cco:ont00000083 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000035 ; - rdfs:label "Process Ending"@en ; - skos:definition "A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the ending instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Process Ending"@en ; + "A Process Boundary that occupies a Zero-Dimensional Temporal Region that is the ending instant of the One-Dimensional Temporal Region that the Process, of which the Process Boundary is a part, occupies."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000084 -cco:ont00000084 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - rdfs:label "Bodily Component"@en ; - skos:definition "A Fiat Object Part located within or on the surface of an Agent."@en ; - skos:example "Bodily Components include anatomical structures, body flora, pathogens, toxins, and their combinations." ; - cco:ont00001754 "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3017014/" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bodily Component"@en ; + "A Fiat Object Part located within or on the surface of an Agent."@en ; + "Bodily Components include anatomical structures, body flora, pathogens, toxins, and their combinations." ; + "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3017014/" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000085 -cco:ont00000085 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001869 ; - owl:someValuesFrom cco:ont00001058 - ] ; - rdfs:label "Minute"@en ; - skos:definition "A Temporal Interval that is equal to sixty consecutive Seconds."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=minute" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Minute"@en ; + "A Temporal Interval that is equal to sixty consecutive Seconds."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=minute" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000086 -cco:ont00000086 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000723 ; - rdfs:label "Autopilot System"@en ; - skos:altLabel "Autopilot"@en ; - skos:definition "A Vehicle Control System that is designed to enable some Agent to control the trajectory of a Vehicle without constant 'hands-on' control."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Autopilot&oldid=1063382206"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Autopilot System"@en ; + "Autopilot"@en ; + "A Vehicle Control System that is designed to enable some Agent to control the trajectory of a Vehicle without constant 'hands-on' control."@en ; + "https://en.wikipedia.org/w/index.php?title=Autopilot&oldid=1063382206"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000087 -cco:ont00000087 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000894 ; - rdfs:comment "An Ordinal Date Identifier may or may not also contain a number indicating a specific Year. If both numbers are included, the ISO 8601 ordinal date format stipulates that the two numbers be formatted as YYYY-DDD or YYYYDDD where [YYYY] indicates a year and [DDD] is the day of that year, from 001 through 365 (or 366 in leap years)."@en ; - rdfs:label "Ordinal Date Identifier"@en ; - skos:altLabel "Ordinal Date"@en ; - skos:definition "A Decimal Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since the beginning of the Year."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ordinal_date&oldid=1061989434"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ordinal Date Identifier"@en ; + "Ordinal Date"@en ; + "A Decimal Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since the beginning of the Year."@en ; + "An Ordinal Date Identifier may or may not also contain a number indicating a specific Year. If both numbers are included, the ISO 8601 ordinal date format stipulates that the two numbers be formatted as YYYY-DDD or YYYYDDD where [YYYY] indicates a year and [DDD] is the day of that year, from 001 through 365 (or 366 in leap years)."@en ; + "https://en.wikipedia.org/w/index.php?title=Ordinal_date&oldid=1061989434"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000088 -cco:ont00000088 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001051 ; - rdfs:label "Firearm"@en ; - skos:definition "A Projectile Launcher that is designed to launch Bullets or Cartridges."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Firearm&oldid=1061216363"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Firearm"@en ; + "A Projectile Launcher that is designed to launch Bullets or Cartridges."@en ; + "https://en.wikipedia.org/w/index.php?title=Firearm&oldid=1061216363"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000089 -cco:ont00000089 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001379 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001889 ; - owl:someValuesFrom cco:ont00001262 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001379 ; - rdfs:label "Skill"@en ; - skos:definition "An Agent Capability that inheres in a Person to the extent of that Person's capacity to realize it in Intentional Acts of a certain type."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Skill"@en ; + "An Agent Capability that inheres in a Person to the extent of that Person's capacity to realize it in Intentional Acts of a certain type."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000090 -cco:ont00000090 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000547 ; - rdfs:label "Infrared Telescope"@en ; - skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing infrared light to form an enhanced image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Infrared_telescope&oldid=1062918090"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrared Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing infrared light to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Infrared_telescope&oldid=1062918090"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000091 -cco:ont00000091 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000457 ; - rdfs:label "Portion of Coolant"@en ; - skos:definition "A Portion of Material that is designed to be used in a thermal control system to reduce or maintain the temperature of an object to or at a specified level."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Coolant"@en ; + "A Portion of Material that is designed to be used in a thermal control system to reduce or maintain the temperature of an object to or at a specified level."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000092 -cco:ont00000092 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000736 ; - rdfs:label "Bidirectional Transducer"@en ; - skos:definition "A Transducer that is designed to receive a signal in the form of physical phenomena and convert it into an electrical signal, and vice versa."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bidirectional Transducer"@en ; + "A Transducer that is designed to receive a signal in the form of physical phenomena and convert it into an electrical signal, and vice versa."@en ; + "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000093 -cco:ont00000093 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001278 ; - rdfs:label "Preferred Stock"@en ; - skos:definition "Stock that entitles its holder to receive a certain level of dividend payments before any dividends can be issued to other holders."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Preferred Stock"@en ; + "Stock that entitles its holder to receive a certain level of dividend payments before any dividends can be issued to other holders."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000094 -cco:ont00000094 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000946 ; - rdfs:label "Seat of National Government"@en ; - skos:definition "A Government Building that is designed for the administration of a sovereign nation."@en ; - skos:example "Parliament of Canada" , - "United States Capitol" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Seat of National Government"@en ; + "A Government Building that is designed for the administration of a sovereign nation."@en ; + "Parliament of Canada" , + "United States Capitol" ; + "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000095 -cco:ont00000095 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Control Surface"@en ; - skos:definition "A Material Artifact that is designed to deflect air, water, or another medium around its surface in order to change the Attitude of a Vehicle by rotating the Vehicle on one or more of its Axes of Rotation."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flight_control_surfaces&oldid=1019271264"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Control Surface"@en ; + "A Material Artifact that is designed to deflect air, water, or another medium around its surface in order to change the Attitude of a Vehicle by rotating the Vehicle on one or more of its Axes of Rotation."@en ; + "https://en.wikipedia.org/w/index.php?title=Flight_control_surfaces&oldid=1019271264"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000096 -cco:ont00000096 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Propulsion System"@en ; - skos:definition "A Material Artifact that is designed to facilitate the movement of material entities from one location to another and which consists of a source of mechanical power and a means of converting this power into propulsive force to generate the movement."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propulsion System"@en ; + "A Material Artifact that is designed to facilitate the movement of material entities from one location to another and which consists of a source of mechanical power and a means of converting this power into propulsive force to generate the movement."@en ; + "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000097 -cco:ont00000097 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001207 ; - rdfs:label "Complex Optical Lens"@en ; - skos:altLabel "Lens System"@en ; - skos:definition "An Optical Lens consisting of more than one Simple Optical Lenses."@en ; - cco:ont00001754 "Hecht, Eugene (1987). Optics (2nd ed.). Addison Wesley. ISBN 978-0-201-11609-0. Chapters 5 & 6."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Complex Optical Lens"@en ; + "Lens System"@en ; + "An Optical Lens consisting of more than one Simple Optical Lenses."@en ; + "Hecht, Eugene (1987). Optics (2nd ed.). Addison Wesley. ISBN 978-0-201-11609-0. Chapters 5 & 6."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000098 -cco:ont00000098 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Electrical Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact is used to perform a process involving electrical power."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact is used to perform a process involving electrical power."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000099 -cco:ont00000099 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000007 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000062 ; - owl:someValuesFrom cco:ont00000765 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000752 - ] ; - rdfs:label "Wave Process"@en ; - skos:definition "A Natural Process that involves Oscillation accompanied by a transfer of energy that travels through a portion of matter or spatial region."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wave&oldid=1062648180"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Wave Process"@en ; + "A Natural Process that involves Oscillation accompanied by a transfer of energy that travels through a portion of matter or spatial region."@en ; + "https://en.wikipedia.org/w/index.php?title=Wave&oldid=1062648180"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000100 -cco:ont00000100 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001132 ; - rdfs:label "Stasis of Partially Mission Capable"@en ; - skos:definition "A Stasis of Mission Capability during which the participating Continuant is capable of performing some but not all of its primary functions for the specified Mission."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Partially Mission Capable"@en ; + "A Stasis of Mission Capability during which the participating Continuant is capable of performing some but not all of its primary functions for the specified Mission."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000101 -cco:ont00000101 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000255 ; - rdfs:label "Portion of Liquid Oxygen"@en ; - skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid oxygen."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Oxygen"@en ; + "A Portion of Cryogenic Material that is composed (almost) entirely of liquid oxygen."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000102 -cco:ont00000102 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:comment "Skin Type is classified according to a reference system such as the Fitzpatrick scale: https://en.wikipedia.org/wiki/Fitzpatrick_scale"@en ; - rdfs:label "Skin Type"@en ; - skos:definition "A Quality inhering in a portion of skin by virtue of its color and natural tendency to respond to ultraviolet light."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Skin Type"@en ; + "A Quality inhering in a portion of skin by virtue of its color and natural tendency to respond to ultraviolet light."@en ; + "Skin Type is classified according to a reference system such as the Fitzpatrick scale: https://en.wikipedia.org/wiki/Fitzpatrick_scale"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000103 -cco:ont00000103 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Vehicle Compartment"@en ; - skos:altLabel "Compartment"@en ; - skos:definition "A Material Artifact that is designed to partition a Vehicle into subdivisions for various purposes."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vehicle Compartment"@en ; + "Compartment"@en ; + "A Material Artifact that is designed to partition a Vehicle into subdivisions for various purposes."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000104 -cco:ont00000104 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000639 ; - rdfs:label "Underwater Mine"@en ; - skos:definition "A Mine that is designed to support the extraction of materials from the ocean floor."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Naval_mine&oldid=1062538523"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Underwater Mine"@en ; + "A Mine that is designed to support the extraction of materials from the ocean floor."@en ; + "https://en.wikipedia.org/w/index.php?title=Naval_mine&oldid=1062538523"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000105 -cco:ont00000105 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001369 ; - rdfs:label "Square"@en ; - skos:definition "A Rectangular shape which has four equal length sides and four 90 degree angles."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Square"@en ; + "A Rectangular shape which has four equal length sides and four 90 degree angles."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000106 -cco:ont00000106 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001213 ; - rdfs:comment "An End of Life Stasis (EoL) is distinguished from a Stasis of Partially Mission Capable or Stasis of Non-Mission Capable in that EoL is more inclusive such that the participating Material Artifact may be either Partially or Non-Mission Capable. Additionally, EoL applies only to Artifacts and is typically determined in relation to its original mission and designed primary functions. In contrast, an Artifact's level of Mission Capability depends on the requirements of the mission under consideration such that a given Artifact may simultaneously be Fully Mission Capable for mission1, Partially Mission Capable for mission2, and Non-Mission Capable for mission3."@en ; - rdfs:label "End of Life Stasis"@en ; - skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when the participating Material Artifact is no longer capable of realizing all of its designed primary Artifact Functions."@en ; - cco:ont00001753 "EOL" , - "EoL" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "End of Life Stasis"@en ; + "A Stasis of Artifact Operationality that holds during a Temporal Interval when the participating Material Artifact is no longer capable of realizing all of its designed primary Artifact Functions."@en ; + "An End of Life Stasis (EoL) is distinguished from a Stasis of Partially Mission Capable or Stasis of Non-Mission Capable in that EoL is more inclusive such that the participating Material Artifact may be either Partially or Non-Mission Capable. Additionally, EoL applies only to Artifacts and is typically determined in relation to its original mission and designed primary functions. In contrast, an Artifact's level of Mission Capability depends on the requirements of the mission under consideration such that a given Artifact may simultaneously be Fully Mission Capable for mission1, Partially Mission Capable for mission2, and Non-Mission Capable for mission3."@en ; + "EOL" , + "EoL" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000107 -cco:ont00000107 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001048 ; - rdfs:label "Increase of Generically Dependent Continuant"@en ; - skos:definition "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Generically Dependent Continuant that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Generically Dependent Continuant"@en ; + "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Generically Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000108 -cco:ont00000108 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000226 ; - rdfs:label "Rail Facility"@en ; - skos:definition "A Transportation Facility that is designed for transferring people or cargo to and from Trains."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Train_station&oldid=1063922802"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rail Facility"@en ; + "A Transportation Facility that is designed for transferring people or cargo to and from Trains."@en ; + "https://en.wikipedia.org/w/index.php?title=Train_station&oldid=1063922802"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000109 -cco:ont00000109 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Military Force"@en ; - skos:definition "A Planned Act of employing a Military Force to achieve some desired result."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Military Force"@en ; + "A Planned Act of employing a Military Force to achieve some desired result."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000110 -cco:ont00000110 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000015 ; - rdfs:label "Mechanical Process"@en ; - skos:definition "A Process that is the realization of some Disposition of a Material Artifact"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mechanical Process"@en ; + "A Process that is the realization of some Disposition of a Material Artifact"@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000111 -cco:ont00000111 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000256 ; - rdfs:label "Air Inlet"@en ; - skos:altLabel "Air Intake"@en ; - skos:definition "A Fluid Control Artifact that consists of an opening that is designed to capture and direct the flow of air into the system it is part of."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Air Inlet"@en ; + "Air Intake"@en ; + "A Fluid Control Artifact that consists of an opening that is designed to capture and direct the flow of air into the system it is part of."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000112 -cco:ont00000112 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001384 ; - rdfs:label "Translucent"@en ; - skos:definition "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit some but not all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs some but not all electromagnetic radiation of that frequency."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Translucent"@en ; + "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit some but not all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs some but not all electromagnetic radiation of that frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000113 -cco:ont00000113 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Ventilation Control Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes in which some Material Artifact is used to control the quality of air in some space."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ventilation Control Artifact Function"@en ; + "An Artifact Function that is realized in processes in which some Material Artifact is used to control the quality of air in some space."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000114 -cco:ont00000114 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000203 ; - rdfs:label "Unix Temporal Instant"@en ; - skos:definition "A Temporal Instant as specified by the number of Seconds that have elapsed since the specified Epoch Time as described by an implementation of Unix Time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Unix Temporal Instant"@en ; + "A Temporal Instant as specified by the number of Seconds that have elapsed since the specified Epoch Time as described by an implementation of Unix Time."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000115 -cco:ont00000115 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000246 ; - rdfs:label "Stasis of Disposition"@en ; - skos:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Disposition that remains unchanged during a Temporal Interval."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Disposition"@en ; + "A Stasis of Realizable Entity in which some Independent Continuant bears some Disposition that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000116 -cco:ont00000116 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000256 ; - rdfs:label "Pump"@en ; - skos:definition "A Fluid Control Artifact that is designed to impart motion to a portion of fluid to transport it within a system through the use of mechanical action."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pump"@en ; + "A Fluid Control Artifact that is designed to impart motion to a portion of fluid to transport it within a system through the use of mechanical action."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000117 -cco:ont00000117 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Information Processing Artifact"@en ; - skos:definition "A Material Artifact that is designed to use algorithms to transform some Information Content Entity into another Information Content Entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Information Processing Artifact"@en ; + "A Material Artifact that is designed to use algorithms to transform some Information Content Entity into another Information Content Entity."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000118 -cco:ont00000118 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000965 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00001045 - ] - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001942 ; - owl:someValuesFrom cco:ont00000323 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000965 ; - rdfs:label "Artifact Function Specification"@en ; - skos:definition "A Directive Information Content Entity that prescribes some Material Artifact Function and which is part of some Material Artifact Model."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Artifact Function Specification"@en ; + "A Prescriptive Information Content Entity that prescribes some Material Artifact Function and which is part of some Material Artifact Model."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000119 -cco:ont00000119 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000145 ; - rdfs:label "Spatial Orientation"@en ; - skos:altLabel "Attitude"@en ; - skos:definition "A Relational Quality that is the angle of Rotation of an Object relative to one or more Plane of Reference or Axis of Rotation."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Orientation_(geometry)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spatial Orientation"@en ; + "Attitude"@en ; + "A Relational Quality that is the angle of Rotation of an Object relative to one or more Plane of Reference or Axis of Rotation."@en ; + "https://en.wikipedia.org/wiki/Orientation_(geometry)" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000120 -cco:ont00000120 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000853 ; - rdfs:label "Measurement Unit"@en ; - skos:definition "A Descriptive Information Content Entity that describes a definite magnitude of a physical quantity, defined and adopted by convention and/or by law, that is used as a standard for measurement of the same physical quantity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Unit_of_measurement&oldid=1061038125"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit"@en ; + "A Descriptive Information Content Entity that describes a definite magnitude of a physical quantity, defined and adopted by convention and/or by law, that is used as a standard for measurement of the same physical quantity."@en ; + "https://en.wikipedia.org/w/index.php?title=Unit_of_measurement&oldid=1061038125"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000121 -cco:ont00000121 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000588 ; - rdfs:label "Act of Conducting Mass Media Interview"@en ; - skos:definition "An Act of Mass Media Communication involving a conversation between a reporter and a person of public interest, used as a basis of a broadcast or publication."@en ; - cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Conducting Mass Media Interview"@en ; + "An Act of Mass Media Communication involving a conversation between a reporter and a person of public interest, used as a basis of a broadcast or publication."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000122 -cco:ont00000122 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000170 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001944 ; - owl:someValuesFrom cco:ont00000904 - ] ; - rdfs:label "Vehicle Track Point"@en ; - skos:definition "An Object Track Point that is where a Vehicle is or was located during some motion."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Vehicle Track Point"@en ; + "An Object Track Point that is where a Vehicle is or was located during some motion."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000123 -cco:ont00000123 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000402 ; - rdfs:comment "Examples: apologizing, condoling, congratulating, greeting, thanking, accepting (acknowledging an acknowledgment)"@en ; - rdfs:label "Act of Expressive Communication"@en ; - skos:definition "An Act of Communication in which an Agent expresses their attitudes or emotions towards some entity."@en ; - cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Expressive Communication"@en ; + "An Act of Communication in which an Agent expresses their attitudes or emotions towards some entity."@en ; + "Examples: apologizing, condoling, congratulating, greeting, thanking, accepting (acknowledging an acknowledgment)"@en ; + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000124 -cco:ont00000124 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001328 ; - rdfs:label "Solar Time Reference System"@en ; - skos:definition "A Temporal Reference System that is based on the position of the Sun in the sky."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Solar Time Reference System"@en ; + "A Temporal Reference System that is based on the position of the Sun in the sky."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000125 -cco:ont00000125 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000373 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00000358 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000373 ; - rdfs:label "Bounding Box Point"@en ; - skos:definition "A Geospatial Position that is a proper part of some Geospatial Region Bounding Box."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Bounding Box Point"@en ; + "A Geospatial Position that is a proper part of some Geospatial Region Bounding Box."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000126 -cco:ont00000126 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001152 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00000139 - ] ; - rdfs:label "First-Order Administrative Region"@en ; - skos:definition "A Government Domain that is a primary administrative division of a Country."@en ; - skos:example "a state in the United States" ; - cco:ont00001754 "http://www.geonames.org/export/codes.html" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "First-Order Administrative Region"@en ; + "A Government Domain that is a primary administrative division of a Country."@en ; + "a state in the United States" ; + "http://www.geonames.org/export/codes.html" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000127 -cco:ont00000127 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000965 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001980 ; - owl:someValuesFrom obo:BFO_0000001 - ] ; - rdfs:label "Performance Specification"@en ; - skos:definition "A Directive Information Content Entity that prescribes some aspect of the behavior of a participant in a Process given one or more operating conditions."@en ; - skos:example "Maximum Speed at high altitude; Rate of Ascent at 10 degrees celsius with nominal payload." ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Performance Specification"@en ; + "A Prescriptive Information Content Entity that prescribes some aspect of the behavior of a participant in a Process given one or more operating conditions."@en ; + "Maximum Speed at high altitude; Rate of Ascent at 10 degrees celsius with nominal payload." ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000128 -cco:ont00000128 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000255 ; - rdfs:label "Portion of Liquid Hydrogen"@en ; - skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid hydrogen."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Hydrogen"@en ; + "A Portion of Cryogenic Material that is composed (almost) entirely of liquid hydrogen."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000129 -cco:ont00000129 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000084 ; - rdfs:label "Tattoo"@en ; - skos:definition "A Bodily Component that consists of a typically permanent mark or design on a portion of skin that is created by a process of pricking and ingraining an indelible pigment or by raising scars."@en ; - cco:ont00001754 "http://www.thefreedictionary.com/tattoo" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Tattoo"@en ; + "A Bodily Component that consists of a typically permanent mark or design on a portion of skin that is created by a process of pricking and ingraining an indelible pigment or by raising scars."@en ; + "http://www.thefreedictionary.com/tattoo" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000130 -cco:ont00000130 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Power Transformer"@en ; - skos:definition "A Material Artifact that is designed to transfer electrical energy between two or more circuits through electromagnetic induction."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transformer&oldid=1062163369"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Transformer"@en ; + "A Material Artifact that is designed to transfer electrical energy between two or more circuits through electromagnetic induction."@en ; + "https://en.wikipedia.org/w/index.php?title=Transformer&oldid=1062163369"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000131 -cco:ont00000131 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001214 ; - rdfs:label "Increase of Quality"@en ; - skos:definition "An Increase of Specifically Dependent Continuant in which some Indpendent Continuant has an increase of some Quality that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Quality"@en ; + "An Increase of Specifically Dependent Continuant in which some Indpendent Continuant has an increase of some Quality that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000132 -cco:ont00000132 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000117 ; - rdfs:label "Recording Device"@en ; - skos:definition "An Information Processing Artifact that is designed to capture some information and store it in some recording format on some storage medium."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Record&oldid=1062776450"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Recording Device"@en ; + "An Information Processing Artifact that is designed to capture some information and store it in some recording format on some storage medium."@en ; + "https://en.wikipedia.org/w/index.php?title=Record&oldid=1062776450"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000133 -cco:ont00000133 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000402 ; - rdfs:comment "Examples: advising, admonishing, asking, begging, dismissing, excusing, forbidding, instructing, ordering, permitting, requesting, requiring, suggesting, urging, warning"@en ; - rdfs:label "Act of Directive Communication"@en ; - skos:definition "An Act of Communication that is intended to cause the hearer to take a particular action."@en ; - cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Directive Communication"@en ; + "An Act of Communication that is intended to cause the hearer to take a particular action."@en ; + "Examples: advising, admonishing, asking, begging, dismissing, excusing, forbidding, instructing, ordering, permitting, requesting, requiring, suggesting, urging, warning"@en ; + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000134 -cco:ont00000134 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001152 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00000405 - ] ; - rdfs:label "Third-Order Administrative Region"@en ; - skos:definition "A Government Domain that is a subdivision of a Second-Order Administrative Region."@en ; - cco:ont00001754 "http://www.geonames.org/export/codes.html" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Third-Order Administrative Region"@en ; + "A Government Domain that is a subdivision of a Second-Order Administrative Region."@en ; + "http://www.geonames.org/export/codes.html" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000135 -cco:ont00000135 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000819 ; - rdfs:label "Stasis of Specifically Dependent Continuant"@en ; - skos:definition "A Stasis in which some Independent Continuant bears some Specifically Dependent Continuant that remains unchanged during a Temporal Interval."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Specifically Dependent Continuant"@en ; + "A Stasis in which some Independent Continuant bears some Specifically Dependent Continuant that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000136 -cco:ont00000136 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:comment "Optical Instruments are typically constructed for the purpose of being used to aid in vision or the analysis of light."@en ; - rdfs:label "Optical Instrument"@en ; - skos:definition "A Material Artifact that is designed to process light waves."@en ; - skos:scopeNote "Light waves can be processed in a variety of ways including via reflection, refraction, diffraction, deflection, focusing, collimation, dispersion, and interference."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Optical_instrument&oldid=1061981216"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Instrument"@en ; + "A Material Artifact that is designed to process light waves."@en ; + "Light waves can be processed in a variety of ways including via reflection, refraction, diffraction, deflection, focusing, collimation, dispersion, and interference."@en , + "Optical Instruments are typically constructed for the purpose of being used to aid in vision or the analysis of light."@en ; + "https://en.wikipedia.org/w/index.php?title=Optical_instrument&oldid=1061981216"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000137 -cco:ont00000137 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000836 ; - rdfs:label "Act of Financial Deposit"@en ; - skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Depositor) to another Agent to create a liability to be repaid to the Depositor through an Act of Financial Withdrawal."@en ; - cco:ont00001754 "http://en.wikipedia.org/wiki/Deposit_(bank)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Financial Deposit"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Depositor) to another Agent to create a liability to be repaid to the Depositor through an Act of Financial Withdrawal."@en ; + "http://en.wikipedia.org/wiki/Deposit_(bank)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000138 -cco:ont00000138 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000503 ; - rdfs:label "Maximum Power"@en ; - skos:definition "A Power that is characterized by the maximum rate of Work, or Energy consumed, done in a given time period."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Maximum Power"@en ; + "A Power that is characterized by the maximum rate of Work, or Energy consumed, done in a given time period."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000139 -cco:ont00000139 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001152 ; - dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "Domain of a Country"@en ; - skos:definition "A Government Domain that is associated with certain distinct political, ethnic, or cultural characteristics, and which delimits a Government that has legitimate authority over a Populace."@en ; - skos:editorialNote "'Country' is an unclear term. Does it refer to the people, the government, the site, or the material in the site? Furthermore, what is properly referred to as a 'Country' is highly dependent on the classification practices of the international community. For example: The United Kingdom is a sovereign country that has Wales, a non-sovereign Country, as a member. Vatican City is a sovereign country that is landlocked by a city: Rome, Italy. Puerto Rico is not a country (it's a territory) but has a government, a distinct culture, and so on. Thus, here we do not define 'Country' but instead define 'Domain of a Country'."@en ; - skos:prefLabel "Domain of a Country"@en ; - cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Domain of a Country"@en ; + "A Government Domain that is associated with certain distinct political, ethnic, or cultural characteristics, and which delimits a Government that has legitimate authority over a Populace."@en ; + "'Country' is an unclear term. Does it refer to the people, the government, the site, or the material in the site? Furthermore, what is properly referred to as a 'Country' is highly dependent on the classification practices of the international community. For example: The United Kingdom is a sovereign country that has Wales, a non-sovereign Country, as a member. Vatican City is a sovereign country that is landlocked by a city: Rome, Italy. Puerto Rico is not a country (it's a territory) but has a government, a distinct culture, and so on. Thus, here we do not define 'Country' but instead define 'Domain of a Country'."@en ; + "Domain of a Country"@en ; + "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000140 -cco:ont00000140 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:comment "The type of particle quantified is typically either atoms or molecules, but may also be protons, neutrons, electrons, quarks, or other particles. The type of particle being measured should always be specified along with the measurement and its unit."@en ; - rdfs:label "Measurement Unit of Amount of Substance"@en ; - skos:altLabel "Measurement Unit of Chemical Amount"@en , - "Measurement Unit of Enplethy"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the number of a specified type of particle in a portion of matter."@en ; - skos:example "mole, pound-mole" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology" . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Amount of Substance"@en ; + "Measurement Unit of Chemical Amount"@en , + "Measurement Unit of Enplethy"@en ; + "A Measurement Unit that is used as a standard for measurement of the number of a specified type of particle in a portion of matter."@en ; + "mole, pound-mole" ; + "The type of particle quantified is typically either atoms or molecules, but may also be protons, neutrons, electrons, quarks, or other particles. The type of particle being measured should always be specified along with the measurement and its unit."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology" . ### https://www.commoncoreontologies.org/ont00000141 -cco:ont00000141 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000914 ; - rdfs:label "Populace"@en ; - skos:definition "A Group of Persons forming the total population of some Government Domain."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Population&oldid=1059148871"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Populace"@en ; + "A Group of Persons forming the total population of some Government Domain."@en ; + "https://en.wikipedia.org/w/index.php?title=Population&oldid=1059148871"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000142 -cco:ont00000142 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Government"@en ; - skos:definition "A Planned Act that is initiated or supported by some Geopolitical Entity and enforced by some Government Agent."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Government"@en ; + "A Planned Act that is initiated or supported by some Geopolitical Entity and enforced by some Government Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000143 -cco:ont00000143 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000103 ; - rdfs:label "Cargo Cabin"@en ; - skos:definition "A Vehicle Compartment that is used to store goods or materials during transportation."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cargo Cabin"@en ; + "A Vehicle Compartment that is used to store goods or materials during transportation."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000144 -cco:ont00000144 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000433 ; - rdfs:label "Act of Meeting"@en ; - skos:definition "An Act of Association wherein two or more Persons assemble for some common purpose."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=meet (Sense Key: meet%2:41:00, get together%2:41:00)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Meeting"@en ; + "An Act of Association wherein two or more Persons assemble for some common purpose."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=meet (Sense Key: meet%2:41:00, get together%2:41:00)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000145 -cco:ont00000145 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000445 ; - rdfs:label "Incendiary Weapon"@en ; - skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of starting a fire."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Incendiary_device&oldid=1055642422"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Incendiary Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of starting a fire."@en ; + "https://en.wikipedia.org/w/index.php?title=Incendiary_device&oldid=1055642422"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000146 -cco:ont00000146 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001175 ; - owl:disjointWith cco:ont00000496 ; - rdfs:label "Artificial Language"@en ; - skos:definition "A Language that is developed through conscious planning and premeditation, rather than one that was developed through use and repetition."@en ; - skos:example "Esperanto" , - "Python Programming Language" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Constructed_language&oldid=1062733589"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Artificial Language"@en ; + "A Language that is developed through conscious planning and premeditation, rather than one that was developed through use and repetition."@en ; + "Esperanto" , + "Python Programming Language" ; + "https://en.wikipedia.org/w/index.php?title=Constructed_language&oldid=1062733589"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000147 -cco:ont00000147 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000325 ; - rdfs:label "Flight Transponder"@en ; - skos:definition "A Radio Transponder that is designed to produce a specified response (typically for identification, location, or status update purposes) when it receives a radio-frequency interrogation."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transponder_(aeronautics)&oldid=1052688836"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Flight Transponder"@en ; + "A Radio Transponder that is designed to produce a specified response (typically for identification, location, or status update purposes) when it receives a radio-frequency interrogation."@en ; + "https://en.wikipedia.org/w/index.php?title=Transponder_(aeronautics)&oldid=1052688836"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000148 -cco:ont00000148 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000368 ; - rdfs:label "Clockwise Rotational Motion"@en ; - skos:altLabel "CW Rotational Motion"@en , - "Clockwise Rotation"@en ; - skos:definition "A Rotational Motion in which the direction of rotation is toward the right as seen relative to the designated side of the plane of rotation."@en ; - skos:example "the axial rotation of the Earth as seen from above the South Pole" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Clockwise Rotational Motion"@en ; + "CW Rotational Motion"@en , + "Clockwise Rotation"@en ; + "A Rotational Motion in which the direction of rotation is toward the right as seen relative to the designated side of the plane of rotation."@en ; + "the axial rotation of the Earth as seen from above the South Pole" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000149 -cco:ont00000149 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000517 ; - rdfs:label "Instant Messaging"@en ; - skos:altLabel "Act of IMing"@en , - "Act of Instant Messaging"@en ; - skos:definition "An Act of Communication by Media in which real-time direct text-based communication occurs between two or more people using personal computers or other devices, along with shared Instant Messaging Client Software conveyed over a network, such as the Internet."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Instant_messaging&oldid=1062873579"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Instant Messaging"@en ; + "Act of IMing"@en , + "Act of Instant Messaging"@en ; + "An Act of Communication by Media in which real-time direct text-based communication occurs between two or more people using personal computers or other devices, along with shared Instant Messaging Client Software conveyed over a network, such as the Internet."@en ; + "https://en.wikipedia.org/w/index.php?title=Instant_messaging&oldid=1062873579"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000150 -cco:ont00000150 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000754 ; - rdfs:label "Radio Frequency"@en ; - skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 3 kHz and 300 GHz."@en ; - cco:ont00001753 "RF" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_wave&oldid=1062110903"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 3 kHz and 300 GHz."@en ; + "RF" ; + "https://en.wikipedia.org/w/index.php?title=Radio_wave&oldid=1062110903"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000151 -cco:ont00000151 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000379 ; - rdfs:label "Act of Reporting"@en ; - skos:definition "An Act of Representative Communication performed by giving a detailed account or statement."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/report" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Reporting"@en ; + "An Act of Representative Communication performed by giving a detailed account or statement."@en ; + "http://www.merriam-webster.com/dictionary/report" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000152 -cco:ont00000152 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000998 ; - rdfs:label "Telephone Network"@en ; - skos:definition "A Telecommunication Network that is designed to allow telephone calls to be made between two or more parties connected to the network."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telephone Network"@en ; + "A Telecommunication Network that is designed to allow telephone calls to be made between two or more parties connected to the network."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000153 -cco:ont00000153 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000781 ; - rdfs:label "Generator Control Unit"@en ; - skos:definition "A Control System that is designed to regulate the voltage of some Electrical Power Source."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Generator Control Unit"@en ; + "A Control System that is designed to regulate the voltage of some Electrical Power Source."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000154 -cco:ont00000154 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000745 ; - rdfs:comment "While there is always at least one Mode for every set of data, it is possible for any given set of data to have multiple Modes. The Mode is typically most useful when the members of the set are all Nominal Measurement Information Content Entities."@en ; - rdfs:label "Mode Point Estimate Information Content Entity"@en ; - skos:altLabel "Mode"@en , - "Statistical Mode"@en ; - skos:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the value or values that occur most often in the set."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mode Point Estimate Information Content Entity"@en ; + "Mode"@en , + "Statistical Mode"@en ; + "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the value or values that occur most often in the set."@en ; + "While there is always at least one Mode for every set of data, it is possible for any given set of data to have multiple Modes. The Mode is typically most useful when the members of the set are all Nominal Measurement Information Content Entities."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000155 -cco:ont00000155 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001337 ; - rdfs:label "Near Infrared Light Frequency"@en ; - skos:definition "An Infrared Light Frequency that is between 214 and 400 terahertz."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Near Infrared Light Frequency"@en ; + "An Infrared Light Frequency that is between 214 and 400 terahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000156 -cco:ont00000156 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000088 ; - rdfs:label "Hand Gun"@en ; - skos:definition "A Firearm that is designed to have a relatively short barrel and to be held in one or two hands and to be fired without being braced against the shoulder."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Handgun&oldid=1060570395"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hand Gun"@en ; + "A Firearm that is designed to have a relatively short barrel and to be held in one or two hands and to be fired without being braced against the shoulder."@en ; + "https://en.wikipedia.org/w/index.php?title=Handgun&oldid=1060570395"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000157 -cco:ont00000157 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000084 ; - rdfs:label "Facial Hair"@en ; - skos:definition "A Bodily Component that consists of a portion of hair that grows on the face of a human (typically male) or other animal."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Facial Hair"@en ; + "A Bodily Component that consists of a portion of hair that grows on the face of a human (typically male) or other animal."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000158 -cco:ont00000158 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001105 ; - rdfs:label "Lithium-ion Electric Battery"@en ; - skos:definition "A Secondary Cell Electric Battery that produces electricity when lithium ions move from anode to cathode."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lithium-ion_battery&oldid=1064099588"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lithium-ion Electric Battery"@en ; + "A Secondary Cell Electric Battery that produces electricity when lithium ions move from anode to cathode."@en ; + "https://en.wikipedia.org/w/index.php?title=Lithium-ion_battery&oldid=1064099588"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000159 -cco:ont00000159 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 ; - rdfs:label "Material Copy of a Timekeeping Instrument"@en ; - skos:altLabel "Timekeeping Instrument"@en ; - skos:definition "An Information Bearing Artifact that is designed to carry some specific Information Content Entity that is about some temporal region."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Timekeeper&oldid=1061681902"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Material Copy of a Timekeeping Instrument"@en ; + "Timekeeping Instrument"@en ; + "An Information Bearing Artifact that is designed to carry some specific Information Content Entity that is about some temporal region."@en ; + "https://en.wikipedia.org/w/index.php?title=Timekeeper&oldid=1061681902"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000160 -cco:ont00000160 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000581 ; - rdfs:label "Manual Tool"@en ; - skos:altLabel "Hand Tool"@en ; - skos:definition "A Tool that is designed to be powered by manual labor rather than by an engine."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hand_tool&oldid=1060741381"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Manual Tool"@en ; + "Hand Tool"@en ; + "A Tool that is designed to be powered by manual labor rather than by an engine."@en ; + "https://en.wikipedia.org/w/index.php?title=Hand_tool&oldid=1060741381"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000161 -cco:ont00000161 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000026 ; - rdfs:label "Coordinate System Axis"@en ; - skos:definition "A One-Dimensional Spatial Region defined by a Coordinate System for the purpose of identifying the position of entities along one dimension of the Coordinate System's spatial framework."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Coordinate System Axis"@en ; + "A One-Dimensional Spatial Region defined by a Coordinate System for the purpose of identifying the position of entities along one dimension of the Coordinate System's spatial framework."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000162 -cco:ont00000162 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000795 ; - rdfs:label "Electrical Connector Artifact Function"@en ; - skos:definition "An Electrical Conduction Artifact Function that is realized by processes in which some Material Artifact is used to join electrical terminations to create an electrical circuit."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Connector Artifact Function"@en ; + "An Electrical Conduction Artifact Function that is realized by processes in which some Material Artifact is used to join electrical terminations to create an electrical circuit."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000163 -cco:ont00000163 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000161 ; - rdfs:label "z-Axis"@en ; - skos:definition "A Coordinate System Axis designated by the variable 'z'."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "z-Axis"@en ; + "A Coordinate System Axis designated by the variable 'z'."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000164 -cco:ont00000164 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001010 ; - rdfs:label "Minimum Ordinal Measurement Information Content Entity"@en ; - skos:definition "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the smallest or having the least amount relative to a nominally described set of like entities."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Minimum Ordinal Measurement Information Content Entity"@en ; + "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the smallest or having the least amount relative to a nominally described set of like entities."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000165 -cco:ont00000165 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Criminal Act"@en ; - skos:definition "A Planned Act committed in violation of rules or laws for which some governing authority (via mechanisms such as legal systems) can prescribe a conviction."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Crime&oldid=1062237249"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Criminal Act"@en ; + "A Planned Act committed in violation of rules or laws for which some governing authority (via mechanisms such as legal systems) can prescribe a conviction."@en ; + "https://en.wikipedia.org/w/index.php?title=Crime&oldid=1062237249"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000166 -cco:ont00000166 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000099 ; - rdfs:label "Wave Cycle"@en ; - skos:definition "A Wave Process that consists of a portion of a Wave Process that begins at an arbitrary point of the Wave Process and ends at the next point when the pattern of the Wave Process begins to repeat."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wave Cycle"@en ; + "A Wave Process that consists of a portion of a Wave Process that begins at an arbitrary point of the Wave Process and ends at the next point when the pattern of the Wave Process begins to repeat."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000167 -cco:ont00000167 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001173 ; - rdfs:label "Large-Scale Rocket Launcher"@en ; - skos:definition "A Rocket Launcher that is designed to contain multiple Rocket Launchers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Large-Scale Rocket Launcher"@en ; + "A Rocket Launcher that is designed to contain multiple Rocket Launchers."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000168 -cco:ont00000168 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000433 ; - rdfs:label "Act of Interpersonal Relationship"@en ; - skos:definition "An Act of Association between two or more Persons that may range from fleeting to enduring."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Interpersonal_relationship&oldid=1060991304"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Interpersonal Relationship"@en ; + "An Act of Association between two or more Persons that may range from fleeting to enduring."@en ; + "https://en.wikipedia.org/w/index.php?title=Interpersonal_relationship&oldid=1060991304"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000169 -cco:ont00000169 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000150 ; - rdfs:comment "The corresponding Wavelength range is 10–1 m"@en ; - rdfs:label "Very High Frequency"@en ; - skos:altLabel "ITU Band Number 8"@en ; - skos:definition "A Radio Frequency that is between 30 and 300 MHz."@en ; - cco:ont00001753 "VHF" ; - cco:ont00001754 "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Very High Frequency"@en ; + "ITU Band Number 8"@en ; + "A Radio Frequency that is between 30 and 300 MHz."@en ; + "The corresponding Wavelength range is 10–1 m"@en ; + "VHF" ; + "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000170 -cco:ont00000170 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000018 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001944 ; - owl:someValuesFrom cco:ont00000205 - ] ; - rdfs:label "Object Track Point"@en ; - skos:definition "A Zero-Dimensional Spatial Region that is an idealized point where an Object is or was located during some motion."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Object Track Point"@en ; + "A Zero-Dimensional Spatial Region that is an idealized point where an Object is or was located during some motion."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000171 -cco:ont00000171 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000344 ; - rdfs:label "Detergent Artifact Function"@en ; - skos:definition "A Surfactant Artifact Function that is realized in a process that cleans substances in dilute solutions."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Detergent&oldid=1064079329"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Detergent Artifact Function"@en ; + "A Surfactant Artifact Function that is realized in a process that cleans substances in dilute solutions."@en ; + "https://en.wikipedia.org/w/index.php?title=Detergent&oldid=1064079329"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000172 -cco:ont00000172 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000483 ; - rdfs:label "Base of Operations"@en ; - skos:altLabel "Main Operating Base"@en ; - skos:definition "A Military Base with permanently stationed operating forces, robust Infrastructure, and strengthened force protection measures such that it is designed to launch and support large-scale operations, support smaller or less-permanent bases, and organize supply facilities."@en ; - cco:ont00001753 "MOB" ; - cco:ont00001754 "http://www.jcs.mil/Portals/36/Documents/Doctrine/pubs/dictionary.pdf?ver=2018-08-27-122235-653" ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Base of Operations"@en ; + "Main Operating Base"@en ; + "A Military Base with permanently stationed operating forces, robust Infrastructure, and strengthened force protection measures such that it is designed to launch and support large-scale operations, support smaller or less-permanent bases, and organize supply facilities."@en ; + "MOB" ; + "http://www.jcs.mil/Portals/36/Documents/Doctrine/pubs/dictionary.pdf?ver=2018-08-27-122235-653" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000173 -cco:ont00000173 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Civilian Role"@en ; - skos:definition "A Role that inheres in an Agent or Group of Agents by virtue of that Agent or Group of Agents not being part of either an Armed Force or police force."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Civilian Role"@en ; + "A Role that inheres in an Agent or Group of Agents by virtue of that Agent or Group of Agents not being part of either an Armed Force or police force."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000174 -cco:ont00000174 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000547 ; - rdfs:label "Ultraviolet Telescope"@en ; - skos:altLabel "UV Telescope"@en ; - skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing ultraviolet light to form an enhanced image of the Object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ultraviolet Telescope"@en ; + "UV Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing ultraviolet light to form an enhanced image of the Object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000175 -cco:ont00000175 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Organization Member Role"@en ; - skos:definition "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill as a member of some Organization."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Organization Member Role"@en ; + "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill as a member of some Organization."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000176 -cco:ont00000176 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001180 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000898 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001180 ; - dcterms:bibliographicCitation "Lee, David S., and Brad Glosserman. “How Companies Can Navigate Today’s Geopolitical Risks.” Harvard Business Review, 28 Nov. 2022. hbr.org, https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks." , - "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; - dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "Geopolitical Organization"@en ; - skos:definition "An Organization that bears a Geopolitical Power Role."@en ; - skos:prefLabel "Geopolitical Organization"@en ; - cco:ont00001754 "https://chass.usu.edu/international-studies/aggies-go/power" , - "https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "Lee, David S., and Brad Glosserman. “How Companies Can Navigate Today’s Geopolitical Risks.” Harvard Business Review, 28 Nov. 2022. hbr.org, https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks." , + "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Geopolitical Organization"@en ; + "An Organization that bears a Geopolitical Power Role."@en ; + "Geopolitical Organization"@en ; + "https://chass.usu.edu/international-studies/aggies-go/power" , + "https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000177 -cco:ont00000177 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000017 ; - rdfs:label "Affordance"@en ; - skos:definition "A Realizable Entity of an Independent Continuant that creates an opportunity for an Agent to realize some Agent Capability or Disposition in some Act."@en ; - cco:ont00001754 "J. J. Gibson, \"The Theory of Affordances,\" in The Ecological Approach to Visual Perception (NY: Taylor & Francis Group, 1986): 127-143. Available at: https://archive.org/details/pdfy-u5hmFOvOM2Civ4Gz/page/n70/mode/1up."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Affordance"@en ; + "A Realizable Entity of an Independent Continuant that creates an opportunity for an Agent to realize some Agent Capability or Disposition in some Act."@en ; + "J. J. Gibson, \"The Theory of Affordances,\" in The Ecological Approach to Visual Perception (NY: Taylor & Francis Group, 1986): 127-143. Available at: https://archive.org/details/pdfy-u5hmFOvOM2Civ4Gz/page/n70/mode/1up."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000178 -cco:ont00000178 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001150 ; - rdfs:label "Arrow"@en ; - skos:definition "A Portion of Ammunition that is designed to be fired from a Bow and consists of a long straight stiff shaft with stabilizers (fletchings) and a slot (the nock) on one end and a weighted tip (the arrowhead) on the other end."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Arrow&oldid=1058445874"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Arrow"@en ; + "A Portion of Ammunition that is designed to be fired from a Bow and consists of a long straight stiff shaft with stabilizers (fletchings) and a slot (the nock) on one end and a weighted tip (the arrowhead) on the other end."@en ; + "https://en.wikipedia.org/w/index.php?title=Arrow&oldid=1058445874"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000179 -cco:ont00000179 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000570 ; - rdfs:comment "More generally, Thrust is the propulsive Force of a Rocket."@en ; - rdfs:label "Thrust"@en ; - skos:definition "A Force that is equal in magnitude to but in the opposite direction of an exerted Force and which is used to describe the forward Force of a Jet or Rocket Engine in reaction to the Acceleration of its Reaction Mass in the opposite direction."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thrust"@en ; + "A Force that is equal in magnitude to but in the opposite direction of an exerted Force and which is used to describe the forward Force of a Jet or Rocket Engine in reaction to the Acceleration of its Reaction Mass in the opposite direction."@en ; + "More generally, Thrust is the propulsive Force of a Rocket."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000180 -cco:ont00000180 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000410 ; - rdfs:label "Hotel"@en ; - skos:definition "A Residential Facility that is designed to provide lodging that is paid for on a short-term basis."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hotel&oldid=1063583593"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hotel"@en ; + "A Residential Facility that is designed to provide lodging that is paid for on a short-term basis."@en ; + "https://en.wikipedia.org/w/index.php?title=Hotel&oldid=1063583593"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000181 -cco:ont00000181 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000089 ; - rdfs:label "Language Skill"@en ; - skos:definition "A Skill that is realized by an Act which is prescribed by a Language."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Language Skill"@en ; + "A Skill that is realized by an Act which is prescribed by a Language."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000182 -cco:ont00000182 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000123 ; - rdfs:label "Act of Thanking"@en ; - skos:definition "An Act of Expressive Communication performed by expressing gratitude."@en ; - cco:ont00001754 " http://www.merriam-webster.com/dictionary/thanks" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Thanking"@en ; + "An Act of Expressive Communication performed by expressing gratitude."@en ; + " http://www.merriam-webster.com/dictionary/thanks" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000183 -cco:ont00000183 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Fragrance Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes of emitting a pleasant or sweet odor."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Perfume&oldid=1062785740"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fragrance Artifact Function"@en ; + "An Artifact Function that is realized in processes of emitting a pleasant or sweet odor."@en ; + "https://en.wikipedia.org/w/index.php?title=Perfume&oldid=1062785740"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000184 -cco:ont00000184 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 ; - rdfs:label "Axial Rotation Period"@en ; - skos:definition "A Temporal Interval that is equal to the length of time required for a spinning Object to complete one rotation around its Axis of Rotation."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Axial Rotation Period"@en ; + "A Temporal Interval that is equal to the length of time required for a spinning Object to complete one rotation around its Axis of Rotation."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000185 -cco:ont00000185 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Blunt"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer not having a sharp edge or point."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Blunt"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer not having a sharp edge or point."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000186 -cco:ont00000186 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001010 ; - rdfs:label "Artifact Version Ordinality"@en ; - skos:definition "An Ordinal Measurement Information Content Entity that is about the form of a Material Artifact which differs in some respects from previous or future forms of that Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Artifact Version Ordinality"@en ; + "An Ordinal Measurement Information Content Entity that is about the form of a Material Artifact which differs in some respects from previous or future forms of that Material Artifact."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000187 -cco:ont00000187 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Authority Role"@en ; - skos:definition "A Role that is realized by Processes which create, modify, transfer, or eliminate Process Regulations or other Authority Roles, and inheres in an Agent in virtue of collective acceptance of that Agent's ability to issue binding directives."@en ; - skos:scopeNote "Authority Roles are externally grounded in a social group's collective acceptance of the binding force of the agent's directives. This acceptance can be direct or indirect (e.g., by accepting a procedure for deputizing authority). Such collective acceptance need not be explicit or cognized; rather, collective acceptance can be expressed in the dispositions and attitudes of people toward that agent's directives. In many cases, the directives issued by Authority Roles are backed by threats of punishment or sanction for failure to comply, but the issuing of a directive plus a threat is not sufficient for authority. Rather, an agent's authority must be accepted either directly or indirectly through the acceptance of a procedure for bestowing authority (e.g., elections)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Authority Role"@en ; + "A Role that is realized by Processes which create, modify, transfer, or eliminate Process Regulations or other Authority Roles, and inheres in an Agent in virtue of collective acceptance of that Agent's ability to issue binding directives."@en ; + "Authority Roles are externally grounded in a social group's collective acceptance of the binding force of the agent's directives. This acceptance can be direct or indirect (e.g., by accepting a procedure for deputizing authority). Such collective acceptance need not be explicit or cognized; rather, collective acceptance can be expressed in the dispositions and attitudes of people toward that agent's directives. In many cases, the directives issued by Authority Roles are backed by threats of punishment or sanction for failure to comply, but the issuing of a directive plus a threat is not sufficient for authority. Rather, an agent's authority must be accepted either directly or indirectly through the acceptance of a procedure for bestowing authority (e.g., elections)."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000188 -cco:ont00000188 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000026 ; - rdfs:label "Ground Track"@en ; - skos:altLabel "Ground Trace"@en ; - skos:definition "A One-Dimensional Spatial Region defined by the line formed on the surface of an Astronomical Body by projecting an imaginary line from the center of the tracked Object to the center of the Astronomical Body as the Object travels above the surface."@en ; - skos:scopeNote "The Ground Track is the line on the surface of the Earth or other Astronomical Body that is located directly below the Object Track."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ground_track&oldid=1058025510"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ground Track"@en ; + "Ground Trace"@en ; + "A One-Dimensional Spatial Region defined by the line formed on the surface of an Astronomical Body by projecting an imaginary line from the center of the tracked Object to the center of the Astronomical Body as the Object travels above the surface."@en ; + "The Ground Track is the line on the surface of the Earth or other Astronomical Body that is located directly below the Object Track."@en ; + "https://en.wikipedia.org/w/index.php?title=Ground_track&oldid=1058025510"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000189 -cco:ont00000189 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002002 - ] ; - rdfs:label "Material Copy of a Certificate"@en ; - skos:altLabel "Certificate"@en ; - skos:definition "An Information Bearing Artifact that bears an Information Content Entity which attests to certain demonstrated characteristics of an Object, Person, or Organization."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/degree" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Certificate"@en ; + "Certificate"@en ; + "An Information Bearing Artifact that bears an Information Content Entity which attests to certain demonstrated characteristics of an Object, Person, or Organization."@en ; + "http://www.dictionary.com/browse/degree" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000190 -cco:ont00000190 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001353 ; - rdfs:label "Minimum Speed Artifact Function"@en ; - skos:definition "A Speed Artifact Function that is realized in some process in which the Material Artifact bearing the Artifact Function attains the lowest speed at which that Material Artifact is designed to operate."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Minimum Speed Artifact Function"@en ; + "A Speed Artifact Function that is realized in some process in which the Material Artifact bearing the Artifact Function attains the lowest speed at which that Material Artifact is designed to operate."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000191 -cco:ont00000191 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001147 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001803 ; - owl:someValuesFrom cco:ont00000920 - ] ; - rdfs:label "Act of Homicide"@en ; - skos:definition "An Act of Violence which causes the unlawful killing of another person."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Act of Homicide"@en ; + "An Act of Violence which causes the unlawful killing of another person."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000192 -cco:ont00000192 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000171 ; - owl:someValuesFrom cco:ont00001341 - ] ; - rdfs:label "Facility"@en ; - skos:definition "A Material Artifact that is designed as a building or campus dedicated to some specific purpose."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Facility"@en ; + "A Material Artifact that is designed as a building or campus dedicated to some specific purpose."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000193 -cco:ont00000193 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000059 ; - rdfs:label "Telephone Subscriber Line"@en ; - skos:definition "A Telephone Line that connects a Communication Endpoint to another node in a Telecommunication Network to enable service to a user's Telephone."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telephone Subscriber Line"@en ; + "A Telephone Line that connects a Communication Endpoint to another node in a Telecommunication Network to enable service to a user's Telephone."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_line&oldid=1063429738"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000194 -cco:ont00000194 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000795 ; - rdfs:label "Electrical Contact Artifact Function"@en ; - skos:definition "An Electrical Conduction Artifact Function that is realized by processes in which some Material Artifact is used as an endpoint of an electrical circuit from which an electrical current is passed via physical contact with the endpoint."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Contact Artifact Function"@en ; + "An Electrical Conduction Artifact Function that is realized by processes in which some Material Artifact is used as an endpoint of an electrical circuit from which an electrical current is passed via physical contact with the endpoint."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000195 -cco:ont00000195 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001078 ; - rdfs:label "Heliport"@en ; - skos:definition "An Airport that is designed for launching, receiving, and housing Rotorcraft."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Heliport&oldid=1049937701"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heliport"@en ; + "An Airport that is designed for launching, receiving, and housing Rotorcraft."@en ; + "https://en.wikipedia.org/w/index.php?title=Heliport&oldid=1049937701"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000196 -cco:ont00000196 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Purple"@en ; - skos:definition "A Color that is aproximately midway between Red and Blue."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Purple"@en ; + "A Color that is aproximately midway between Red and Blue."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000197 -cco:ont00000197 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000035 ; - rdfs:label "Process Beginning"@en ; - skos:definition "A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the starting instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Process Beginning"@en ; + "A Process Boundary that occupies a Zero-Dimensional Temporal Region that is the starting instant of the One-Dimensional Temporal Region that the Process, of which the Process Boundary is a part, occupies."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000198 -cco:ont00000198 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Sound Level"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the level (the loudness) of sounds."@en ; - skos:example "decibels, sones" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Sound Level"@en ; + "A Measurement Unit that is used as a standard for measurement of the level (the loudness) of sounds."@en ; + "decibels, sones" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000199 -cco:ont00000199 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000771 ; - rdfs:label "Camera"@en ; - skos:definition "An Imaging Instrument that is designed to form and digitally or physically record an image of an entity."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/camera" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Camera"@en ; + "An Imaging Instrument that is designed to form and digitally or physically record an image of an entity."@en ; + "http://www.dictionary.com/browse/camera" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000200 -cco:ont00000200 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000890 ; - rdfs:label "Act of Pilgrimage"@en ; - skos:definition "An Act of Travel to a location of importance to a person's beliefs and faith."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pilgrimage&oldid=1056524204"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Pilgrimage"@en ; + "An Act of Travel to a location of importance to a person's beliefs and faith."@en ; + "https://en.wikipedia.org/w/index.php?title=Pilgrimage&oldid=1056524204"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000201 -cco:ont00000201 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000065 ; - rdfs:label "Act of Change of Residence"@en ; - skos:definition "An Act of Location Change involving one or more Persons moving from one place of residence to another."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Change of Residence"@en ; + "An Act of Location Change involving one or more Persons moving from one place of residence to another."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000202 -cco:ont00000202 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001075 ; - rdfs:label "Act of Terrorist Training Instruction"@en ; - skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Terrorist Organization by imparting knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature to an Agent either directly or indirectly through some communication medium."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Terrorist Training Instruction"@en ; + "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Terrorist Organization by imparting knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature to an Agent either directly or indirectly through some communication medium."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000203 -cco:ont00000203 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000293 ; - rdfs:label "Event Status Nominal Information Content Entity"@en ; - skos:definition "A Nominal Measurement Information Content Entity that is a measurement of the current state of a process."@en ; - skos:example "proposed, approved, planned, in progress, completed, failed, or successful" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Event Status Nominal Information Content Entity"@en ; + "A Nominal Measurement Information Content Entity that is a measurement of the current state of a process."@en ; + "proposed, approved, planned, in progress, completed, failed, or successful" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000204 -cco:ont00000204 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001104 ; - rdfs:label "Rifle"@en ; - skos:definition "A Long Gun that is designed to have a rifled barrel and to fire single Bullets over long ranges with high accuracy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rifle&oldid=1056172452"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rifle"@en ; + "A Long Gun that is designed to have a rifled barrel and to fire single Bullets over long ranges with high accuracy."@en ; + "https://en.wikipedia.org/w/index.php?title=Rifle&oldid=1056172452"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000205 -cco:ont00000205 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000026 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001855 ; - owl:someValuesFrom cco:ont00000170 - ] ; - rdfs:comment "The exact line of the Object Track may be drawn based on the Center of Mass of the Object or another reference point, such as the location of a transponder beacon or the center of a radar cross-section, depending on the Object being tracked."@en ; - rdfs:label "Object Track"@en ; - skos:definition "A One-Dimensional Spatial Region that consists of the idealized line along which an Object has traversed during some motion."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Object Track"@en ; + "A One-Dimensional Spatial Region that consists of the idealized line along which an Object has traversed during some motion."@en ; + "The exact line of the Object Track may be drawn based on the Center of Mass of the Object or another reference point, such as the location of a transponder beacon or the center of a radar cross-section, depending on the Object being tracked."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000206 -cco:ont00000206 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Friction Reduction Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes of reducing the force resisting the relative motion of surfaces in contact."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Friction&oldid=1061569068"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Friction Reduction Artifact Function"@en ; + "An Artifact Function that is realized in processes of reducing the force resisting the relative motion of surfaces in contact."@en ; + "https://en.wikipedia.org/w/index.php?title=Friction&oldid=1061569068"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000207 -cco:ont00000207 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000142 ; - rdfs:label "One-Dimensional Geospatial Boundary"@en ; - skos:definition "A Fiat Line that is a boundary of some Geospatial Region."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "One-Dimensional Geospatial Boundary"@en ; + "A Fiat Line that is a boundary of some Geospatial Region."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000208 -cco:ont00000208 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000123 ; - rdfs:label "Act of Congratulating"@en ; - skos:definition "An Act of Expressive Communication performed by expressing vicarious pleasure to a person on the occasion of their success or good fortune."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/congratulate" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Congratulating"@en ; + "An Act of Expressive Communication performed by expressing vicarious pleasure to a person on the occasion of their success or good fortune."@en ; + "http://www.merriam-webster.com/dictionary/congratulate" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000209 -cco:ont00000209 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000313 ; - rdfs:label "Sound Wavelength"@en ; - skos:definition "A Wavelength that is the distance a Sound Wave traverses during one Wave Cycle."@en ; - cco:ont00001754 "http://www.physicsclassroom.com/Class/waves/u10l2b.cfm" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sound Wavelength"@en ; + "A Wavelength that is the distance a Sound Wave traverses during one Wave Cycle."@en ; + "http://www.physicsclassroom.com/Class/waves/u10l2b.cfm" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000210 -cco:ont00000210 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Engine"@en ; - skos:altLabel "Motor"@en ; - skos:definition "A Material Artifact that is designed to convert one form of energy into mechanical energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Engine"@en ; + "Motor"@en ; + "A Material Artifact that is designed to convert one form of energy into mechanical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000211 -cco:ont00000211 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000038 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001924 ; - owl:someValuesFrom cco:ont00000800 - ] ; - rdfs:comment "This is a defined class."@en ; - rdfs:label "Multi-Day Temporal Interval"@en ; - skos:definition "A one-dimensional temporal region that is measured in Days and spans at least one Day."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Multi-Day Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Days and spans at least one Day."@en ; + "This is a defined class."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000212 -cco:ont00000212 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000445 ; - rdfs:label "Chemical Weapon"@en ; - skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing toxic chemicals."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Chemical_weapon&oldid=1054342645"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Chemical Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing toxic chemicals."@en ; + "https://en.wikipedia.org/w/index.php?title=Chemical_weapon&oldid=1054342645"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000213 -cco:ont00000213 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000472 ; - rdfs:label "Subcontinent"@en ; - skos:definition "A Geospatial Region that is bounded by a large, relatively self-contained landmass forming a subdivision of a Continent."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Continent&oldid=1064057312"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Subcontinent"@en ; + "A Geospatial Region that is bounded by a large, relatively self-contained landmass forming a subdivision of a Continent."@en ; + "https://en.wikipedia.org/w/index.php?title=Continent&oldid=1064057312"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000214 -cco:ont00000214 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000289 ; - rdfs:label "Moving Target Indication Artifact Function"@en ; - skos:definition "A Radar Imaging Artifact Function that inheres in Material Artifacts that are designed to identify and produce visual representations of moving entities by using a radar to emit successive phase coherent pulses, which are sampled and added to the subsequent pulse to cancel out signals from non-moving entities such that only signals from moving entities remain and are displayed."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Moving Target Indication Artifact Function"@en ; + "A Radar Imaging Artifact Function that inheres in Material Artifacts that are designed to identify and produce visual representations of moving entities by using a radar to emit successive phase coherent pulses, which are sampled and added to the subsequent pulse to cancel out signals from non-moving entities such that only signals from moving entities remain and are displayed."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000215 -cco:ont00000215 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000547 ; - rdfs:comment "A Radio Telescope consists of a specialized Antenna and a Radio Receiver and is typically used to receive radio waves from sources in outer space."@en ; - rdfs:label "Radio Telescope"@en ; - skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves to form an enhanced image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_telescope&oldid=1052819190"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves to form an enhanced image of the Object."@en ; + "A Radio Telescope consists of a specialized Antenna and a Radio Receiver and is typically used to receive radio waves from sources in outer space."@en ; + "https://en.wikipedia.org/w/index.php?title=Radio_telescope&oldid=1052819190"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000216 -cco:ont00000216 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001150 ; - rdfs:label "Shell"@en ; - skos:definition "A Portion of Ammunition that is designed to be a non-self-propelled projectile and to carry a payload (explosive or other) over a relatively short distance."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Shell_(projectile)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shell"@en ; + "A Portion of Ammunition that is designed to be a non-self-propelled projectile and to carry a payload (explosive or other) over a relatively short distance."@en ; + "https://en.wikipedia.org/wiki/Shell_(projectile)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000217 -cco:ont00000217 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Area"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of two-dimensional regions or Geospatial Regions."@en ; - skos:example "square feet, square meters, acre, hectare" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Area"@en ; + "A Measurement Unit that is used as a standard for measurement of two-dimensional regions or Geospatial Regions."@en ; + "square feet, square meters, acre, hectare" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000218 -cco:ont00000218 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000026 ; - rdfs:label "Major Axis"@en ; - skos:definition "A One-Dimensional Spatial Region that is the longest line segment that connects two points on the edge of an Ellipse."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Major Axis"@en ; + "A One-Dimensional Spatial Region that is the longest line segment that connects two points on the edge of an Ellipse."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000219 -cco:ont00000219 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001009 ; - rdfs:label "Reflecting Optical Telescope"@en ; - skos:altLabel "Reflecting Telescope"@en , - "Reflector"@en ; - skos:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via reflection through the use of one or more curved Mirrors to form an enhanced image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reflecting_telescope&oldid=1062982683"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reflecting Optical Telescope"@en ; + "Reflecting Telescope"@en , + "Reflector"@en ; + "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via reflection through the use of one or more curved Mirrors to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Reflecting_telescope&oldid=1062982683"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000220 -cco:ont00000220 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000881 ; - rdfs:label "Ammunition Depot"@en ; - skos:definition "A Storage Facility that is designed to store Portions of Ammunition."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ammunition_dump&oldid=1044466765"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ammunition Depot"@en ; + "A Storage Facility that is designed to store Portions of Ammunition."@en ; + "https://en.wikipedia.org/w/index.php?title=Ammunition_dump&oldid=1044466765"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000221 -cco:ont00000221 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000026 ; - rdfs:label "Semi-Minor Axis"@en ; - skos:definition "A One-Dimensional Spatial Region that is equal to half the length of the Minor Axis of an Ellipse."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Semi-Minor Axis"@en ; + "A One-Dimensional Spatial Region that is equal to half the length of the Minor Axis of an Ellipse."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000222 -cco:ont00000222 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000530 ; - rdfs:label "Presence Frequency"@en ; - skos:definition "A Sonic Frequency that is between 4 and 6 kHz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Presence Frequency"@en ; + "A Sonic Frequency that is between 4 and 6 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000223 -cco:ont00000223 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000203 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000132 ; - owl:someValuesFrom cco:ont00000800 - ] ; - rdfs:label "Time of Day"@en ; - skos:definition "A Temporal Instant that is part of a Day."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Time of Day"@en ; + "A Temporal Instant that is part of a Day."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000224 -cco:ont00000224 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001197 ; - rdfs:label "Populated place"@en ; - skos:definition "An Anthropogenic Feature at which people live or have lived."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Human_settlement&oldid=1060418164"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Populated place"@en ; + "An Anthropogenic Feature at which people live or have lived."@en ; + "https://en.wikipedia.org/w/index.php?title=Human_settlement&oldid=1060418164"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000225 -cco:ont00000225 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001869 ; - owl:someValuesFrom cco:ont00000832 - ] ; - rdfs:label "Month"@en ; - skos:definition "A Temporal Interval that is based on the approximate length of time required for a Natural Satellite to complete one cycle of its rotational motion around its Primary Body."@en ; - skos:scopeNote "Unless otherwise specified, it is assumed that a Month is specified relative to the Rotational Motion of the Moon around the Earth. Earth Months are approximately equal to four consecutive Weeks or 30 consecutive Days."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=month" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Month"@en ; + "A Temporal Interval that is based on the approximate length of time required for a Natural Satellite to complete one cycle of its rotational motion around its Primary Body."@en ; + "Unless otherwise specified, it is assumed that a Month is specified relative to the Rotational Motion of the Moon around the Earth. Earth Months are approximately equal to four consecutive Weeks or 30 consecutive Days."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=month" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000226 -cco:ont00000226 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Transportation Facility"@en ; - skos:definition "A Facility that is designed for commencing or concluding the transportation of transportation artifacts, or for housing transportation artifacts."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transport&oldid=1063526665"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transportation Facility"@en ; + "A Facility that is designed for commencing or concluding the transportation of transportation artifacts, or for housing transportation artifacts."@en ; + "https://en.wikipedia.org/w/index.php?title=Transport&oldid=1063526665"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000227 -cco:ont00000227 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000674 ; - rdfs:comment "A Julian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.25 Julian Days. Julian Years are typically indicated by prefixing a capital 'J' in front of the Year number, e.g. J2000.0 or J2018."@en ; - rdfs:label "Julian Year"@en ; - skos:definition "A Calendar Year in the Julian Calendar."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Julian Year"@en ; + "A Calendar Year in the Julian Calendar."@en ; + "A Julian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.25 Julian Days. Julian Years are typically indicated by prefixing a capital 'J' in front of the Year number, e.g. J2000.0 or J2018."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000228 -cco:ont00000228 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000005 ; - rdfs:label "Planned Act"@en ; - skos:altLabel "Intentional Act"@en ; - skos:definition "An Act in which at least one Agent plays a causative role and which is prescribed by some Directive Information Content Entity held by at least one of the Agents."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Planned Act"@en ; + "Intentional Act"@en ; + "An Act in which at least one Agent plays a causative role and which is prescribed by some Prescriptive Information Content Entity held by at least one of the Agents."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000229 -cco:ont00000229 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Power"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of rates of work."@en ; - skos:example "watt, horsepower" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Power"@en ; + "A Measurement Unit that is used as a standard for measurement of rates of work."@en ; + "watt, horsepower" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000230 -cco:ont00000230 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000136 ; - rdfs:label "Diffraction Grating"@en ; - skos:definition "An Optical Instrument with a periodic structure that is designed to split and defract a beam of light into several beams travelling in different directions."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Diffraction_grating&oldid=1060463366"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Diffraction Grating"@en ; + "An Optical Instrument with a periodic structure that is designed to split and defract a beam of light into several beams travelling in different directions."@en ; + "https://en.wikipedia.org/w/index.php?title=Diffraction_grating&oldid=1060463366"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000231 -cco:ont00000231 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001051 ; - rdfs:label "Torpedo Tube"@en ; - skos:definition "A Projectile Launcher that is designed to launch Torpedoes."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Torpedo_tube&oldid=1063672665"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Torpedo Tube"@en ; + "A Projectile Launcher that is designed to launch Torpedoes."@en ; + "https://en.wikipedia.org/w/index.php?title=Torpedo_tube&oldid=1063672665"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000232 -cco:ont00000232 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000677 ; - rdfs:label "Pumping Station"@en ; - skos:definition "A Product Transport Facility that is designed to pump fluids from one place to another."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pumping_station&oldid=1045678418"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pumping Station"@en ; + "A Product Transport Facility that is designed to pump fluids from one place to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Pumping_station&oldid=1045678418"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000233 -cco:ont00000233 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001278 ; - rdfs:label "Stock Certificate"@en ; - skos:definition "Stock that consists of a Certificate."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stock Certificate"@en ; + "Stock that consists of a Certificate."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000234 -cco:ont00000234 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Training"@en ; - skos:definition "A Planned Act in which knowledge, skills or values are imparted from one or more Agents to at least one other Agent."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Training"@en ; + "A Planned Act in which knowledge, skills or values are imparted from one or more Agents to at least one other Agent."@en ; + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000235 -cco:ont00000235 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000687 ; - rdfs:label "Act of Vocational Training Acquisition"@en ; - skos:definition "An Act of Training Acquisition performed by an Agent by acquiring skills required for a specific occupation in industry, agriculture or trade from an Agent or communication medium that realizes a capacity derived from its affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Vocational Training Acquisition"@en ; + "An Act of Training Acquisition performed by an Agent by acquiring skills required for a specific occupation in industry, agriculture or trade from an Agent or communication medium that realizes a capacity derived from its affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000236 -cco:ont00000236 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Lighting System"@en ; - skos:definition "A Material Artifact that is designed to emit light within some area."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lighting System"@en ; + "A Material Artifact that is designed to emit light within some area."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000237 -cco:ont00000237 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000687 ; - rdfs:label "Act of Terrorist Training Acquisition"@en ; - skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature from an Agent or communication medium that realizes a capacity derived from its affiliation with a Terrorist Organization."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Terrorist Training Acquisition"@en ; + "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature from an Agent or communication medium that realizes a capacity derived from its affiliation with a Terrorist Organization."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000238 -cco:ont00000238 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Propeller"@en ; - skos:altLabel "Propelling Screw"@en ; - skos:definition "A Material Artifact that is designed to convert rotary motion from an Engine or other mechanical Power Source into propulsive Force."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Propeller_(aeronautics)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propeller"@en ; + "Propelling Screw"@en ; + "A Material Artifact that is designed to convert rotary motion from an Engine or other mechanical Power Source into propulsive Force."@en ; + "https://en.wikipedia.org/wiki/Propeller_(aeronautics)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000239 -cco:ont00000239 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Mass"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of an object's resistance to Acceleration when a Force is applied to the object."@en ; - skos:example "ounce, gram, pound" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Mass"@en ; + "A Measurement Unit that is used as a standard for measurement of an object's resistance to Acceleration when a Force is applied to the object."@en ; + "ounce, gram, pound" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000240 -cco:ont00000240 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001162 ; - rdfs:label "Act of Oath Taking"@en ; - skos:definition "An Act of Commissive Communication performed by stating or promising, usually calling upon something or someone that the oath maker considers sacred."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Oath&oldid=1052326917"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000241 -cco:ont00000241 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001064 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002015 - ] ; - rdfs:label "Material Copy of a Two-Dimensional Barcode"@en ; - skos:altLabel "Two-Dimensional Barcode"@en ; - skos:definition "A Material Copy of a Barcode that is designed to bear lines of varying widths, spacing, height, and color that concretize some Directive Information Content Entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000242 -cco:ont00000242 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000241 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002017 - ] ; - rdfs:label "Material Copy of a Data Matrix Code"@en ; - skos:altLabel "Data Matrix Code"@en ; - skos:definition "A Material Copy of a Two-Dimensional Barcode that consists of cells arranged in rectangular patterns and is used for marking small items in logistics and operations."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Oath Taking"@en ; + "An Act of Commissive Communication performed by stating or promising, usually calling upon something or someone that the oath maker considers sacred."@en ; + "https://en.wikipedia.org/w/index.php?title=Oath&oldid=1052326917"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000243 -cco:ont00000243 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Heat Sink"@en ; - skos:definition "A Material Artifact that is designed to regulate the temperature of a computer by the passive transfer of heat away from other components in the computer."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Heat_sink&oldid=1062822080"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heat Sink"@en ; + "A Material Artifact that is designed to regulate the temperature of a computer by the passive transfer of heat away from other components in the computer."@en ; + "https://en.wikipedia.org/w/index.php?title=Heat_sink&oldid=1062822080"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000244 -cco:ont00000244 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001153 ; - rdfs:label "Fragmentation Artifact Function"@en ; - skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of a detonation which causes fragmentation."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/fragmentation" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fragmentation Artifact Function"@en ; + "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of a detonation which causes fragmentation."@en ; + "http://www.dictionary.com/browse/fragmentation" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000245 -cco:ont00000245 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000782 ; - rdfs:label "Petroleum Manufacturing Facility"@en ; - skos:definition "A Factory that is designed to manufacture petroleum-based products."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Petroleum&oldid=1062956217"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Petroleum Manufacturing Facility"@en ; + "A Factory that is designed to manufacture petroleum-based products."@en ; + "https://en.wikipedia.org/w/index.php?title=Petroleum&oldid=1062956217"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000246 -cco:ont00000246 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000135 ; - rdfs:label "Stasis of Realizable Entity"@en ; - skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Realizable Entity that remains unchanged during a Temporal Interval."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Realizable Entity"@en ; + "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Realizable Entity that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000247 -cco:ont00000247 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001326 ; - rdfs:label "Road"@en ; - skos:definition "A Land Transportation Artifact that is designed to enable Ground Vehicles to travel from one location to another."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Road&oldid=1063402841" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Road"@en ; + "A Land Transportation Artifact that is designed to enable Ground Vehicles to travel from one location to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Road&oldid=1063402841" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000248 -cco:ont00000248 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000782 ; - rdfs:label "Chemical Manufacturing Facility"@en ; - skos:definition "A Factory that is designed to manufacture or process chemicals."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Chemical_industry&oldid=1061177027"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Chemical Manufacturing Facility"@en ; + "A Factory that is designed to manufacture or process chemicals."@en ; + "https://en.wikipedia.org/w/index.php?title=Chemical_industry&oldid=1061177027"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000249 -cco:ont00000249 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:comment "A Shaft is usually used to connect other components of a drive train that cannot be connected directly either because of the distance between them or the need to allow for relative movement between those components."@en ; - rdfs:label "Shaft"@en ; - skos:definition "A Material Artifact that is designed to rotate and transmit Torque, Power, or Rotational Motion from one machine element to another."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Shaft&oldid=1023963656"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shaft"@en ; + "A Material Artifact that is designed to rotate and transmit Torque, Power, or Rotational Motion from one machine element to another."@en ; + "A Shaft is usually used to connect other components of a drive train that cannot be connected directly either because of the distance between them or the need to allow for relative movement between those components."@en ; + "https://en.wikipedia.org/w/index.php?title=Shaft&oldid=1023963656"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000250 -cco:ont00000250 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000865 ; - rdfs:label "Loss of Realizable Entity"@en ; - skos:definition "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Realizable Entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Realizable Entity"@en ; + "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Realizable Entity."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000251 -cco:ont00000251 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000472 ; - rdfs:label "Continent"@en ; - skos:definition "A Geospatial Region that is bounded by any of the Earth's main continuous expanses of land."@en ; - cco:ont00001754 "JC3IEDM version 3.0.2" ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Continent"@en ; + "A Geospatial Region that is bounded by any of the Earth's main continuous expanses of land."@en ; + "JC3IEDM version 3.0.2" ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000252 -cco:ont00000252 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000256 ; - rdfs:label "Nozzle"@en ; - skos:definition "A Fluid Control Artifact that is designed to control the speed, direction, rate, shape, or pressure of the flow of fluid exiting it."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nozzle"@en ; + "A Fluid Control Artifact that is designed to control the speed, direction, rate, shape, or pressure of the flow of fluid exiting it."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000253 -cco:ont00000253 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000030 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00000958 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf obo:BFO_0000030 ; - rdfs:comment "This class continues to use the word ‘bearing’ in its rdfslabel because of potential confusion with the acronym ‘ICE’, which is widely used for information content entity."@en ; - rdfs:label "Information Bearing Entity"@en ; - skos:altLabel "IBE"@en , - "Information Carrying Entity"@en ; - skos:definition "An Object upon which an Information Content Entity generically depends."@en ; - cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000178"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Information Bearing Entity"@en ; + "IBE"@en , + "Information Carrying Entity"@en ; + "An Object upon which an Information Content Entity generically depends."@en ; + "This class continues to use the word ‘bearing’ in its rdfslabel because of potential confusion with the acronym ‘ICE’, which is widely used for information content entity."@en ; + "http://purl.obolibrary.org/obo/IAO_0000178"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000254 -cco:ont00000254 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Transportation Artifact"@en ; - skos:definition "A Material Artifact that is fixed in place and designed to enable the movement of Vehicles and Agents from one location to another."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transportation Artifact"@en ; + "A Material Artifact that is fixed in place and designed to enable the movement of Vehicles and Agents from one location to another."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000255 -cco:ont00000255 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000457 ; - rdfs:label "Portion of Cryogenic Material"@en ; - skos:definition "A Portion of Material that has been reduced to a very low temperature (below -180 degrees Celcius)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Cryogenic Material"@en ; + "A Portion of Material that has been reduced to a very low temperature (below -180 degrees Celcius)."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000256 -cco:ont00000256 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Fluid Control Artifact"@en ; - skos:definition "A Material Artifact that is designed to manipulate the flow of a fluid (i.e. a liquid or a gas)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fluid Control Artifact"@en ; + "A Material Artifact that is designed to manipulate the flow of a fluid (i.e. a liquid or a gas)."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000257 -cco:ont00000257 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000620 ; - rdfs:label "Radiopaque"@en ; - skos:altLabel "Radiodense"@en ; - skos:definition "A Radiopacity that inheres in a bearer in virtue of its capacity to prevent most X-rays from passing through it."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000258 -cco:ont00000258 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001064 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002020 - ] ; - rdfs:label "Material Copy of a One-Dimensional Barcode"@en ; - skos:altLabel "One-Dimensional Barcode"@en ; - skos:definition "A Material Copy of a Barcode that is designed to carry parallel lines of varying widths and spacing that concretize some Directive Information Content Entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiopaque"@en ; + "Radiodense"@en ; + "A Radiopacity that inheres in a bearer in virtue of its capacity to prevent most X-rays from passing through it."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000259 -cco:ont00000259 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000225 ; - rdfs:label "Calendar Month"@en ; - skos:definition "A Month that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Month."@en ; - skos:example "January; February; March; April; May; June; July; August; September; October; November; December" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar Month"@en ; + "A Month that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Month."@en ; + "January; February; March; April; May; June; July; August; September; October; November; December" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000260 -cco:ont00000260 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000675 ; - rdfs:label "Muzzle Blast"@en ; - skos:definition "A Sound Wave Process that is caused by a projectile being pushed from the barrel of a firearm by an explosive charge."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Muzzle Blast"@en ; + "A Sound Wave Process that is caused by a projectile being pushed from the barrel of a firearm by an explosive charge."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000261 -cco:ont00000261 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000754 ; - rdfs:comment """Currently gamma radiation is distinguished from x-rays by their source--either inside or outside of the nucleus--rather than by frequency, energy, and wavelength. + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gamma Ray Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is above 30 exahertz."@en ; + """Currently gamma radiation is distinguished from x-rays by their source--either inside or outside of the nucleus--rather than by frequency, energy, and wavelength. https://en.wikipedia.org/wiki/Gamma_ray#Naming_conventions_and_overlap_in_terminology"""@en ; - rdfs:label "Gamma Ray Frequency"@en ; - skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is above 30 exahertz."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gamma_ray&oldid=1062115897"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + "https://en.wikipedia.org/w/index.php?title=Gamma_ray&oldid=1062115897"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000262 -cco:ont00000262 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001102 ; - rdfs:label "Shop"@en ; - skos:definition "A Commercial Facility designed to sell small lots of goods to consumers."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shop"@en ; + "A Commercial Facility designed to sell small lots of goods to consumers."@en ; + "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000263 -cco:ont00000263 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001328 ; - rdfs:comment "A single Clock Time System does not provide a complete means for identifying or measuring times. Depending on the particular Clock Time System, it may be compatible for use with one or more other Temporal Reference Systems."@en ; - rdfs:label "Clock Time System"@en ; - skos:definition "A Temporal Reference System that is a convention for keeping and displaying the Time of Day."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Clock Time System"@en ; + "A Temporal Reference System that is a convention for keeping and displaying the Time of Day."@en ; + "A single Clock Time System does not provide a complete means for identifying or measuring times. Depending on the particular Clock Time System, it may be compatible for use with one or more other Temporal Reference Systems."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000264 -cco:ont00000264 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000020 ; - rdfs:label "Hydraulic Fluid Reservoir"@en ; - skos:definition "A Container that is designed to store some hydraulic fluid for use in some Hyrdraulic Power Source."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydraulic Fluid Reservoir"@en ; + "A Container that is designed to store some hydraulic fluid for use in some Hyrdraulic Power Source."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000265 -cco:ont00000265 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001327 ; - rdfs:label "Election"@en ; - skos:altLabel "Act of Political Election"@en ; - skos:definition "A Social Act by which a population chooses an individual to hold public office."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Election&oldid=1063238552"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Election"@en ; + "Act of Political Election"@en ; + "A Social Act by which a population chooses an individual to hold public office."@en ; + "https://en.wikipedia.org/w/index.php?title=Election&oldid=1063238552"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000266 -cco:ont00000266 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001381 ; - rdfs:label "Hearing Aid"@en ; - skos:definition "A Medical Artifact that is designed to improve hearing for its user."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hearing_aid&oldid=1062688647"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hearing Aid"@en ; + "A Medical Artifact that is designed to improve hearing for its user."@en ; + "https://en.wikipedia.org/w/index.php?title=Hearing_aid&oldid=1062688647"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000267 -cco:ont00000267 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000791 ; - rdfs:label "Catalyst Artifact Function"@en ; - skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which the rate of a chemical reaction is increased due to the participation of an additional substance, without that substance being consumed in the reaction."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Catalysis&oldid=1063864001"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Catalyst Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in a process in which the rate of a chemical reaction is increased due to the participation of an additional substance, without that substance being consumed in the reaction."@en ; + "https://en.wikipedia.org/w/index.php?title=Catalysis&oldid=1063864001"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000268 -cco:ont00000268 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001051 ; - rdfs:label "Cannon"@en ; - skos:definition "A Projectile Launcher that is designed to use a controlled explosion to launch a relatively large Portion of Ammunition, such as a Round Shot or a Shell, at a significant Velocity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cannon&oldid=1063792906"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cannon"@en ; + "A Projectile Launcher that is designed to use a controlled explosion to launch a relatively large Portion of Ammunition, such as a Round Shot or a Shell, at a significant Velocity."@en ; + "https://en.wikipedia.org/w/index.php?title=Cannon&oldid=1063792906"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000269 -cco:ont00000269 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000903 ; - rdfs:label "Radio Transmitter"@en ; - skos:definition "A Radio Communication Instrument that is an electronic device that is designed to generate a radio frequency alternating current, which can be applied to a Radio Antenna to be transmitted as radio waves."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transmitter&oldid=1061735586"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Transmitter"@en ; + "A Radio Communication Instrument that is an electronic device that is designed to generate a radio frequency alternating current, which can be applied to a Radio Antenna to be transmitted as radio waves."@en ; + "https://en.wikipedia.org/w/index.php?title=Transmitter&oldid=1061735586"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000270 -cco:ont00000270 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Educational Facility"@en ; - skos:definition "A Facility that is designed for facilitating learning, or the acquisition of knowledge, skills, values, beliefs, and habits."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Educational Facility"@en ; + "A Facility that is designed for facilitating learning, or the acquisition of knowledge, skills, values, beliefs, and habits."@en ; + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000271 -cco:ont00000271 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000639 ; - rdfs:label "Underground Mine"@en ; - skos:definition "A Mine that is designed to support the extraction of materials from the ground using underground tunnels and shafts."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Underground_mining_(hard_rock)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Underground Mine"@en ; + "A Mine that is designed to support the extraction of materials from the ground using underground tunnels and shafts."@en ; + "https://en.wikipedia.org/wiki/Underground_mining_(hard_rock)" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000272 -cco:ont00000272 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000007 ; - rdfs:label "Combustion"@en ; - skos:altLabel "Burning Process"@en , - "Combustion Process"@en ; - skos:definition "A Natural Process in which a Portion of Fuel or other Material Entity is burned."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Combustion"@en ; + "Burning Process"@en , + "Combustion Process"@en ; + "A Natural Process in which a Portion of Fuel or other Material Entity is burned."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000273 -cco:ont00000273 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Communication Interference Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact is used to interfere with the transmission of information for the purpose of preventing communication."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication Interference Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact is used to interfere with the transmission of information for the purpose of preventing communication."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000274 -cco:ont00000274 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001180 ; - rdfs:label "Armed Force"@en ; - skos:definition "An Organization having the Objective to further the foreign and domestic policies of a Government and to defend that body and the nation it represents from external and internal aggressors."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Armed Force"@en ; + "An Organization having the Objective to further the foreign and domestic policies of a Government and to defend that body and the nation it represents from external and internal aggressors."@en ; + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000275 -cco:ont00000275 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000398 ; - rdfs:comment "Note that, while reference systems and reference frames are treated as synonyms here, some people treat them as related but separate entities. See: http://www.ggos-portal.org/lang_en/GGOS-Portal/EN/Topics/GeodeticApplications/GeodeticReferenceSystemsAndFrames/GeodeticReferenceSystemsAndFrames.html"@en ; - rdfs:label "Spatial Reference System"@en ; - skos:altLabel "Coordinate System"@en , - "Spatial Coordinate System"@en , - "Spatial Reference Frame"@en ; - skos:definition "A Reference System that describes a set of standards for uniquely identifying the position of an entity or the direction of a vector within a defined spatial region by means of measurements along one or more Coordinate System Axes."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Coordinate_system&oldid=1060461397"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spatial Reference System"@en ; + "Coordinate System"@en , + "Spatial Coordinate System"@en , + "Spatial Reference Frame"@en ; + "A Reference System that describes a set of standards for uniquely identifying the position of an entity or the direction of a vector within a defined spatial region by means of measurements along one or more Coordinate System Axes."@en ; + "Note that, while reference systems and reference frames are treated as synonyms here, some people treat them as related but separate entities. See: http://www.ggos-portal.org/lang_en/GGOS-Portal/EN/Topics/GeodeticApplications/GeodeticReferenceSystemsAndFrames/GeodeticReferenceSystemsAndFrames.html"@en ; + "https://en.wikipedia.org/w/index.php?title=Coordinate_system&oldid=1060461397"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000276 -cco:ont00000276 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000891 ; - rdfs:label "Solar Calendar System"@en ; - skos:definition "A Calendar System that is designed to organize and identify dates based on the cycles of an Astronomical Body's Orbit around the Sun."@en ; - skos:scopeNote "Unless otherwise specified, a Solar Calendar System is assumed to be relative to the Orbit of the Earth around the Sun."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Solar_calendar&oldid=1058016588"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Solar Calendar System"@en ; + "A Calendar System that is designed to organize and identify dates based on the cycles of an Astronomical Body's Orbit around the Sun."@en ; + "Unless otherwise specified, a Solar Calendar System is assumed to be relative to the Orbit of the Earth around the Sun."@en ; + "https://en.wikipedia.org/w/index.php?title=Solar_calendar&oldid=1058016588"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000277 -cco:ont00000277 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000445 ; - rdfs:label "Nuclear Weapon"@en ; - skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of a destructive nuclear reaction, either through fission or through a combination of fission and fusion."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nuclear_weapon&oldid=1060854171"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of a destructive nuclear reaction, either through fission or through a combination of fission and fusion."@en ; + "https://en.wikipedia.org/w/index.php?title=Nuclear_weapon&oldid=1060854171"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000278 -cco:ont00000278 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000144 ; - rdfs:comment "The SI unit of measure for Momentum is Newton seconds (N s)."@en ; - rdfs:label "Momentum"@en ; - skos:definition "A Process Profile of an object in Motion that is the product of its Mass and Velocity with respect to a frame of reference."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Momentum"@en ; + "A Process Profile of an object in Motion that is the product of its Mass and Velocity with respect to a frame of reference."@en ; + "The SI unit of measure for Momentum is Newton seconds (N s)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000279 -cco:ont00000279 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000392 ; - rdfs:label "Enemy Role"@en ; - skos:definition "An Allegiance Role that inheres in an Agent by virtue of that Agent having committed offensive Acts or exhibited intent to perform such Acts towards a particular Agent or Group of Agents or has been declared as hostile by some appropriate authority."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Enemy Role"@en ; + "An Allegiance Role that inheres in an Agent by virtue of that Agent having committed offensive Acts or exhibited intent to perform such Acts towards a particular Agent or Group of Agents or has been declared as hostile by some appropriate authority."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000280 -cco:ont00000280 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001124 ; - rdfs:label "Torpedo"@en ; - skos:definition "A Precision-Guided Missile that is designed to be fired into a body of water, be self-propelled through the water, and carry an explosive payload."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Torpedo&oldid=1062609830"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Torpedo"@en ; + "A Precision-Guided Missile that is designed to be fired into a body of water, be self-propelled through the water, and carry an explosive payload."@en ; + "https://en.wikipedia.org/w/index.php?title=Torpedo&oldid=1062609830"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000281 -cco:ont00000281 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001137 ; - rdfs:label "Albedo"@en ; - skos:definition "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of its surface to reflect incident electromagnetic radiation of a particular wavelength."@en ; - skos:scopeNote "Albedo is a reflection coefficient and is measured as the ratio of radiation reflected from the surface to the incident radiation. Albedo is dimensionless, can be expressed as a percentage, and is measured on a scale from 0 for no reflection to 1 for perfect reflection of a surface. Albedo depends on the wavelength of the radiation; when no wavelength is specified, it typically refers to some appropriate average across the spectrum of visible light."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Albedo&oldid=1063352646"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Albedo"@en ; + "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of its surface to reflect incident electromagnetic radiation of a particular wavelength."@en ; + "Albedo is a reflection coefficient and is measured as the ratio of radiation reflected from the surface to the incident radiation. Albedo is dimensionless, can be expressed as a percentage, and is measured on a scale from 0 for no reflection to 1 for perfect reflection of a surface. Albedo depends on the wavelength of the radiation; when no wavelength is specified, it typically refers to some appropriate average across the spectrum of visible light."@en ; + "https://en.wikipedia.org/w/index.php?title=Albedo&oldid=1063352646"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000282 -cco:ont00000282 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000719 ; - rdfs:label "Counterfeit Financial Instrument"@en ; - skos:definition "A Counterfeit Instrument that is designed to be a fake replica of some legally sanctioned Financial Instrument."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Counterfeit_money&oldid=1064052318"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Counterfeit Financial Instrument"@en ; + "A Counterfeit Instrument that is designed to be a fake replica of some legally sanctioned Financial Instrument."@en ; + "https://en.wikipedia.org/w/index.php?title=Counterfeit_money&oldid=1064052318"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000283 -cco:ont00000283 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001360 ; - rdfs:label "Cylindrical"@en ; - skos:altLabel "Columnar"@en ; - skos:definition "A Three Dimensional Shape inhering in a bearer in virtue of the bearer having an elongated shape with round bases."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cylindrical"@en ; + "Columnar"@en ; + "A Three Dimensional Shape inhering in a bearer in virtue of the bearer having an elongated shape with round bases."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000284 -cco:ont00000284 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000017 ; - rdfs:label "Strength"@en ; - skos:definition "A Realizable Entity that is realized when its bearer exerts or resists some power, influence, or force."@en ; - skos:scopeNote "Strength is intended to be understood broadly here. Physical strength is only one type of Strength. Other subtypes of Strength may include military strength, psychological strength, emotional strength, political strength, technological strength, and so on."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Strength"@en ; + "A Realizable Entity that is realized when its bearer exerts or resists some power, influence, or force."@en ; + "Strength is intended to be understood broadly here. Physical strength is only one type of Strength. Other subtypes of Strength may include military strength, psychological strength, emotional strength, political strength, technological strength, and so on."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000285 -cco:ont00000285 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000269 ; - rdfs:label "Emergency Locator Transmitter"@en ; - skos:definition "A Radio Transmitter that is designed to signal distress and provide positional data for the entity it is located on."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Emergency_position-indicating_radiobeacon&oldid=1063407242"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Emergency Locator Transmitter"@en ; + "A Radio Transmitter that is designed to signal distress and provide positional data for the entity it is located on."@en ; + "https://en.wikipedia.org/w/index.php?title=Emergency_position-indicating_radiobeacon&oldid=1063407242"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000286 -cco:ont00000286 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000100 ; - rdfs:label "Stasis of Partially Mission Capable Maintenance"@en ; - skos:definition "A Stasis of Partially Mission Capable during which the participating Continuant is not capable of performing some of its primary functions for the specified Mission due to participating in an Act Of Maintenance."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Partially Mission Capable Maintenance"@en ; + "A Stasis of Partially Mission Capable during which the participating Continuant is not capable of performing some of its primary functions for the specified Mission due to participating in an Act Of Maintenance."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000287 -cco:ont00000287 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001187 ; - rdfs:label "Inertial Navigation System"@en ; - skos:altLabel "INS"@en ; - skos:definition "A Navigation System that is designed to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Inertial_navigation_system&oldid=1063682725"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Inertial Navigation System"@en ; + "INS"@en ; + "A Navigation System that is designed to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references."@en ; + "https://en.wikipedia.org/w/index.php?title=Inertial_navigation_system&oldid=1063682725"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000288 -cco:ont00000288 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Power Source"@en ; - skos:definition "A Material Artifact that is designed to supply power to some other Material Artifact."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_source&oldid=1032888635"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Source"@en ; + "A Material Artifact that is designed to supply power to some other Material Artifact."@en ; + "https://en.wikipedia.org/w/index.php?title=Power_source&oldid=1032888635"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000289 -cco:ont00000289 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000601 ; - rdfs:label "Radar Imaging Artifact Function"@en ; - skos:definition "An Imaging Artifact Function that inheres in Material Artifacts that are designed to produce visual representations of entities using radio waves."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radar Imaging Artifact Function"@en ; + "An Imaging Artifact Function that inheres in Material Artifacts that are designed to produce visual representations of entities using radio waves."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000290 -cco:ont00000290 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000726 ; - rdfs:label "Decrease of Specifically Dependent Continuant"@en ; - skos:definition "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in some Specifically Dependent Continuant that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Specifically Dependent Continuant"@en ; + "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in some Specifically Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000291 -cco:ont00000291 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000566 ; - rdfs:label "Act of Decoy Use"@en ; - skos:definition "An Act of Artifact Employment in which some Agent uses some Decoy."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Decoy Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Decoy."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000292 -cco:ont00000292 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom cco:ont00000995 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000686 ; - rdfs:label "Artifact Identifier"@en ; - skos:definition "A Designative Information Content Entity which designates some Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Artifact Identifier"@en ; + "A Designative Information Content Entity which designates some Material Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000293 -cco:ont00000293 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001868 ; - owl:someValuesFrom obo:BFO_0000001 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001163 ; - owl:disjointWith cco:ont00001010 , - cco:ont00001022 , - cco:ont00001364 ; - rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; - rdfs:label "Nominal Measurement Information Content Entity"@en ; - skos:definition "A Measurement Information Content Entity that consists of a symbol that classifies Entities according to some shared, possibly arbitrary, characteristic."@en ; - skos:example "The sentence \"January 20, 1985 was a cold day in Chicago, IL\" is the carrier of a nominal measurement."@en , - "a measurement that classifies automobiles as sedans, coupes, hatchbacks, or convertibles" , - "a measurement that classifies military intelligence as strategic, operational, or tactical" , - "a measurement that classifies rocks as igneous, sedimentary, or metamorphic" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith , + , + ; + rdfs:label "Nominal Measurement Information Content Entity"@en ; + "A Measurement Information Content Entity that consists of a symbol that classifies Entities according to some shared, possibly arbitrary, characteristic."@en ; + "The sentence \"January 20, 1985 was a cold day in Chicago, IL\" is the carrier of a nominal measurement."@en , + "a measurement that classifies automobiles as sedans, coupes, hatchbacks, or convertibles" , + "a measurement that classifies military intelligence as strategic, operational, or tactical" , + "a measurement that classifies rocks as igneous, sedimentary, or metamorphic" ; + "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000294 -cco:ont00000294 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000533 ; - rdfs:label "Air-Breathing Jet Engine"@en ; - skos:altLabel "Ducted Jet Engine"@en ; - skos:definition "A Jet Engine that is propelled by a jet of hot exhaust gases formed from air that is drawn into the Engine via an Air Inlet."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Airbreathing_jet_engine&oldid=1062364308"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Air-Breathing Jet Engine"@en ; + "Ducted Jet Engine"@en ; + "A Jet Engine that is propelled by a jet of hot exhaust gases formed from air that is drawn into the Engine via an Air Inlet."@en ; + "https://en.wikipedia.org/w/index.php?title=Airbreathing_jet_engine&oldid=1062364308"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000295 -cco:ont00000295 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Wetness"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of the degree to which the bearer is covered by a liquid, typically on a continuum of dry to wet."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wetness"@en ; + "A Quality that inheres in a bearer in virtue of the degree to which the bearer is covered by a liquid, typically on a continuum of dry to wet."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000296 -cco:ont00000296 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000763 ; - rdfs:label "Angular Velocity"@en ; - skos:altLabel "Rotational Velocity"@en ; - skos:definition "A Velocity that is characterized by both the angular Speed of an object and the Axis about which the object is Rotating."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Angular_velocity&oldid=1060081663"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Angular Velocity"@en ; + "Rotational Velocity"@en ; + "A Velocity that is characterized by both the angular Speed of an object and the Axis about which the object is Rotating."@en ; + "https://en.wikipedia.org/w/index.php?title=Angular_velocity&oldid=1060081663"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000297 -cco:ont00000297 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - rdfs:label "Portion of Hydrosphere"@en ; - skos:definition "A fiat object part of the combined mass of water found on, under, and above the surface of a natural satellite"@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hydrosphere&oldid=1128848972"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Hydrosphere"@en ; + "A fiat object part of the combined mass of water found on, under, and above the surface of a natural satellite"@en ; + "https://en.wikipedia.org/w/index.php?title=Hydrosphere&oldid=1128848972"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000298 -cco:ont00000298 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001173 ; - rdfs:label "Shoulder-Fired Rocket Launcher"@en ; - skos:definition "A Rocket Launcher that is designed to be small enough to be carried by a single person and fired while supported on the person's shoulder."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shoulder-Fired Rocket Launcher"@en ; + "A Rocket Launcher that is designed to be small enough to be carried by a single person and fired while supported on the person's shoulder."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000299 -cco:ont00000299 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000715 ; - rdfs:label "Prosthetic Leg"@en ; - skos:definition "A Prosthesis that is designed to replace a missing leg."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prosthetic Leg"@en ; + "A Prosthesis that is designed to replace a missing leg."@en ; + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000300 -cco:ont00000300 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000027 , - [ owl:intersectionOf ( [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000115 ; - owl:someValuesFrom cco:ont00001017 - ] - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000115 ; - owl:allValuesFrom cco:ont00001017 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:label "Group of Agents"@en ; - skos:definition "An Object Aggregate that has only Agents as parts."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ owl:intersectionOf ( [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:label "Group of Agents"@en ; + "An Object Aggregate that has only Agents as member parts."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000301 -cco:ont00000301 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000663 ; - rdfs:label "Vehicle Transmission"@en ; - skos:altLabel "Gearbox"@en , - "Transmission"@en ; - skos:definition "A Power Transmission Artifact that is designed to vary the output speed and torque in a rotating power transfer system."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Transmission_(mechanics)"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vehicle Transmission"@en ; + "Gearbox"@en , + "Transmission"@en ; + "A Power Transmission Artifact that is designed to vary the output speed and torque in a rotating power transfer system."@en ; + "https://en.wikipedia.org/wiki/Transmission_(mechanics)"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000302 -cco:ont00000302 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001049 ; - rdfs:label "Alternating Current Power Source"@en ; - skos:definition "An Electrical Power Source that is designed to transfer electrical power in the form of alternating current."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Alternating Current Power Source"@en ; + "An Electrical Power Source that is designed to transfer electrical power in the form of alternating current."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000303 -cco:ont00000303 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001036 ; - rdfs:label "Intercommunication System"@en ; - skos:definition "A Communication System that is designed to enable some Act of Communication between end points within a building, small collection of buildings, or within a small area of service."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Intercom&oldid=1055934442"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Intercommunication System"@en ; + "A Communication System that is designed to enable some Act of Communication between end points within a building, small collection of buildings, or within a small area of service."@en ; + "https://en.wikipedia.org/w/index.php?title=Intercom&oldid=1055934442"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000304 -cco:ont00000304 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000771 ; - rdfs:label "Microscope"@en ; - skos:definition "An Imaging Instrument that is designed to enable users to see Objects that are otherwise too small to be seen by the naked eye by producing a significantly enlarged image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Microscope&oldid=1059024357"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Microscope"@en ; + "An Imaging Instrument that is designed to enable users to see Objects that are otherwise too small to be seen by the naked eye by producing a significantly enlarged image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Microscope&oldid=1059024357"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000305 -cco:ont00000305 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000380 ; - rdfs:label "Sound Pressure"@en ; - skos:altLabel "Acoustic Pressure"@en ; - skos:definition "A Pressure that is caused by a Sound Wave and is a local deviation from the ambient Pressure."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sound Pressure"@en ; + "Acoustic Pressure"@en ; + "A Pressure that is caused by a Sound Wave and is a local deviation from the ambient Pressure."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000306 -cco:ont00000306 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001370 ; - rdfs:label "Hinge"@en ; - skos:definition "A Machine Bearing that is designed to limit the angle of Rotation between two solid objects."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hinge&oldid=1059935559"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hinge"@en ; + "A Machine Bearing that is designed to limit the angle of Rotation between two solid objects."@en ; + "https://en.wikipedia.org/w/index.php?title=Hinge&oldid=1059935559"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000307 -cco:ont00000307 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001084 ; - rdfs:label "Portion of Food"@en ; - skos:definition "A Portion of Processed Material that is designed to be consumed and ingested for nutrition or taste."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Food&oldid=1062824590"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Food"@en ; + "A Portion of Processed Material that is designed to be consumed and ingested for nutrition or taste."@en ; + "https://en.wikipedia.org/w/index.php?title=Food&oldid=1062824590"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000308 -cco:ont00000308 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001226 ; - rdfs:label "Act of Military Service"@en ; - skos:definition "An Act of Employment wherein a Person serves as a member of a Military Force, whether voluntarily or by conscription."@en ; - cco:ont00001754 "http://www.collinsdictionary.com/dictionary/english/military-service" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Military Service"@en ; + "An Act of Employment by an Organization wherein a Person serves as a member of a Military Force, whether voluntarily or by conscription."@en ; + "http://www.collinsdictionary.com/dictionary/english/military-service" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000309 -cco:ont00000309 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Healthcare Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes of treating and preventing illness."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Health_care&oldid=1064015344"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Healthcare Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of treating and preventing illness."@en ; + "https://en.wikipedia.org/w/index.php?title=Health_care&oldid=1064015344"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000310 -cco:ont00000310 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000552 ; - rdfs:label "Grenade"@en ; - skos:altLabel "Hand Grenade"@en ; - skos:definition "An Explosive Weapon that is designed to be relatively small and to be thrown by hand."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Grenade&oldid=1060366148"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Grenade"@en ; + "Hand Grenade"@en ; + "An Explosive Weapon that is designed to be relatively small and to be thrown by hand."@en ; + "https://en.wikipedia.org/w/index.php?title=Grenade&oldid=1060366148"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000311 -cco:ont00000311 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001999 ; - rdfs:label "Filtration Artifact Function"@en ; - skos:definition "A Filter Function that is realized in a process in which some solid entity is prevented from moving along with some quantity of liquid."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Filtration&oldid=1061655528"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Filtration Artifact Function"@en ; + "A Filter Function that is realized in a process in which some solid entity is prevented from moving along with some quantity of liquid."@en ; + "https://en.wikipedia.org/w/index.php?title=Filtration&oldid=1061655528"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000312 -cco:ont00000312 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000007 ; - rdfs:label "Propulsion Process"@en ; - skos:definition "A Natural Process in which one or more Forces are generated and applied to a participating Object such that the Object is set in Motion or has the direction or magnitude of its Motion altered."@en ; - skos:example "a twin-engine turboprop plane rotating both of its propellers against a portion of atmosphere to propel the plane forward" , - "an apple falling to the ground under the power of Earth's gravitational force" , - "burning a portion of fuel to produce exhaust that is ejected through a jet nozzle to propel a rocket and its payload" , - "heat from a fire causing ashes to rise into the sky" , - "launching a water balloon using a sling shot" , - "the wind blowing leaves across a lawn" , - "turning a paddle wheel against a portion of water to propel the paddle boat forward" ; - skos:scopeNote "In each case, a Propulsion Process minimally involves the Object being propelled, a Reaction Mass (e.g. a portion of water, atmosphere, exhaust, etc.), and the Force(s) acting between these two entities."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propulsion Process"@en ; + "A Natural Process in which one or more Forces are generated and applied to a participating Object such that the Object is set in Motion or has the direction or magnitude of its Motion altered."@en ; + "a twin-engine turboprop plane rotating both of its propellers against a portion of atmosphere to propel the plane forward" , + "an apple falling to the ground under the power of Earth's gravitational force" , + "burning a portion of fuel to produce exhaust that is ejected through a jet nozzle to propel a rocket and its payload" , + "heat from a fire causing ashes to rise into the sky" , + "launching a water balloon using a sling shot" , + "the wind blowing leaves across a lawn" , + "turning a paddle wheel against a portion of water to propel the paddle boat forward" ; + "In each case, a Propulsion Process minimally involves the Object being propelled, a Reaction Mass (e.g. a portion of water, atmosphere, exhaust, etc.), and the Force(s) acting between these two entities."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000313 -cco:ont00000313 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000752 ; - rdfs:comment "Assuming a non-dispersive media, the Wavelength will be the inverse of the Frequency."@en ; - rdfs:label "Wavelength"@en ; - skos:definition "A Wave Process Profile that is the distance the Wave Process traverses during one Wave Cycle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wavelength"@en ; + "A Wave Process Profile that is the distance the Wave Process traverses during one Wave Cycle."@en ; + "Assuming a non-dispersive media, the Wavelength will be the inverse of the Frequency."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000314 -cco:ont00000314 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000197 ; - owl:someValuesFrom cco:ont00000253 - ] ; - rdfs:comment "Typically, an IQE will be a complex pattern made up of multiple qualities joined together spatially."@en ; - rdfs:label "Information Quality Entity"@en ; - skos:altLabel "IQE"@en ; - skos:definition "A Quality that concretizes some Information Content Entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Information Quality Entity"@en ; + "IQE"@en ; + "A Quality that concretizes some Information Content Entity."@en ; + "Typically, an IQE will be a complex pattern made up of multiple qualities joined together spatially."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000315 -cco:ont00000315 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000918 ; - rdfs:label "Telecommunication Switching Node"@en ; - skos:definition "A Telecommunication Network Node that is capable of redirecting a communication transmission to another Telecommunication Network Node."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Switching Node"@en ; + "A Telecommunication Network Node that is capable of redirecting a communication transmission to another Telecommunication Network Node."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000316 -cco:ont00000316 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000255 ; - rdfs:label "Portion of Liquid Helium"@en ; - skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid helium."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Helium"@en ; + "A Portion of Cryogenic Material that is composed (almost) entirely of liquid helium."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000317 -cco:ont00000317 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001218 ; - rdfs:label "Electronic Signal Processing Artifact Function"@en ; - skos:definition "A Signal Processing Artifact Function that inheres in Material Artifacts that are designed to process or transfer information contained in electronic signals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electronic Signal Processing Artifact Function"@en ; + "A Signal Processing Artifact Function that inheres in Material Artifacts that are designed to process or transfer information contained in electronic signals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000318 -cco:ont00000318 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000016 ; - rdfs:label "Disease"@en ; - skos:definition "A Disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism."@en ; - cco:ont00001754 "http://purl.obolibrary.org/obo/OGMS_0000031" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Disease"@en ; + "A Disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism."@en ; + "http://purl.obolibrary.org/obo/OGMS_0000031" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000319 -cco:ont00000319 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000965 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001942 ; - owl:someValuesFrom cco:ont00000995 - ] ; - rdfs:label "Artifact Design"@en ; - skos:definition "A Directive Information Content Entity that is a specification of an object, manifested by an agent, intended to accomplish goals, in a particular environment, using a set of primitive components, satisfying a set of requirements, subject to constraints."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Design&oldid=1063941625"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Artifact Design"@en ; + "A Prescriptive Information Content Entity that is a specification of an object, manifested by an agent, intended to accomplish goals, in a particular environment, using a set of primitive components, satisfying a set of requirements, subject to constraints."@en ; + "https://en.wikipedia.org/w/index.php?title=Design&oldid=1063941625"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000320 -cco:ont00000320 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001251 ; - rdfs:label "Act of Reconnaissance"@en ; - skos:definition "An Act of Intelligence Gathering used to determine an Agent's disposition and intention; the composition and capabilities of Equipment and Facilities, and the surrounding landforms and weather conditions."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reconnaissance&oldid=1038843823"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Reconnaissance"@en ; + "An Act of Intelligence Gathering used to determine an Agent's disposition and intention; the composition and capabilities of Equipment and Facilities, and the surrounding landforms and weather conditions."@en ; + "https://en.wikipedia.org/w/index.php?title=Reconnaissance&oldid=1038843823"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000321 -cco:ont00000321 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Residential Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes of residing in a dwelling or home."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Residential Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of residing in a dwelling or home."@en ; + "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000322 -cco:ont00000322 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000836 ; - rdfs:label "Act of Funding"@en ; - skos:definition "An Act of Financial Instrument Use in which an Agent (the Funder) provides some Financial Instrument to another Agent (the recipient of the funds) as a resource pool that is earmarked by the Funder for a future transaction."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Funding"@en ; + "An Act of Financial Instrument Use in which an Agent (the Funder) provides some Financial Instrument to another Agent (the recipient of the funds) as a resource pool that is earmarked by the Funder for a future transaction."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000323 -cco:ont00000323 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000034 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000197 ; - owl:someValuesFrom cco:ont00000995 - ] ; - rdfs:label "Artifact Function"@en ; - skos:definition "A Function that inheres in some Material Artifact in virtue of that Material Artifact being designed to be used in processes that require that Function to be realized."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Artifact Function"@en ; + "A Function that inheres in some Material Artifact in virtue of that Material Artifact being designed to be used in processes that require that Function to be realized."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000324 -cco:ont00000324 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001367 ; - rdfs:label "Width"@en ; - skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a horizontal direction."@en ; - cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Width"@en ; + "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a horizontal direction."@en ; + "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000325 -cco:ont00000325 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000903 ; - rdfs:label "Radio Transponder"@en ; - skos:altLabel "Transmitter-Responder"@en ; - skos:definition "A Radio Communication Instrument that is an electronic device that acts as both a Radio Transmitter and responder and is used to wirelessly receive and transmit electrical signals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000326 -cco:ont00000326 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000258 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002034 - ] ; - rdfs:label "Material Copy of a UPC Barcode"@en ; - skos:altLabel "UPC Barcode"@en ; - skos:definition "A Material Copy of a One-Dimensional Barcode that consists of 6 or 12 numerical digits and is used to scan consumer goods."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Transponder"@en ; + "Transmitter-Responder"@en ; + "A Radio Communication Instrument that is an electronic device that acts as both a Radio Transmitter and responder and is used to wirelessly receive and transmit electrical signals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000327 -cco:ont00000327 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Texture"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of the size, shape, and distribution of features on its surface, typically on a continuum from smooth to rough."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Texture"@en ; + "A Quality that inheres in a bearer in virtue of the size, shape, and distribution of features on its surface, typically on a continuum from smooth to rough."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000328 -cco:ont00000328 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000870 ; - rdfs:label "Transportation Infrastructure"@en ; - skos:definition "An Infrastructure System that has continuant part one or more Transportation Artifacts and bears a function that, if realized, is realized in Acts of Cargo Transportation"@en ; - cco:ont00001754 "http://www.cfr.org/infrastructure/transportation-infrastructure-moving-america/p18611" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transportation Infrastructure"@en ; + "An Infrastructure System that has continuant part one or more Transportation Artifacts and bears a function that, if realized, is realized in Acts of Cargo Transportation"@en ; + "http://www.cfr.org/infrastructure/transportation-infrastructure-moving-america/p18611" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000329 -cco:ont00000329 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000038 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001924 ; - owl:someValuesFrom cco:ont00000225 - ] ; - rdfs:comment "This is a defined class."@en ; - rdfs:label "Multi-Month Temporal Interval"@en ; - skos:definition "A one-dimensional temporal region that is measured in Months and spans at least one Month."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Multi-Month Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Months and spans at least one Month."@en ; + "This is a defined class."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000330 -cco:ont00000330 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001076 ; - rdfs:label "Thermal Power Plant"@en ; - skos:definition "An Electric Power Station that is designed to convert heat energy into electrical energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Thermal_power_station&oldid=1062208548"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thermal Power Plant"@en ; + "An Electric Power Station that is designed to convert heat energy into electrical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Thermal_power_station&oldid=1062208548"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000331 -cco:ont00000331 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000410 ; - rdfs:label "House"@en ; - skos:definition "A Residential Facility that is designed to provide a self-standing, permanent residence for an individual, family, household, multiple families, or similar-sized group."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=House&oldid=1062818553"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "House"@en ; + "A Residential Facility that is designed to provide a self-standing, permanent residence for an individual, family, household, multiple families, or similar-sized group."@en ; + "https://en.wikipedia.org/w/index.php?title=House&oldid=1062818553"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000332 -cco:ont00000332 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Training Camp"@en ; - skos:definition "A Facility that is designed for rigorous and focused training in order to learn or improve skills, usually involving physical actions."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Training_camp&oldid=1059977631"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Training Camp"@en ; + "A Facility that is designed for rigorous and focused training in order to learn or improve skills, usually involving physical actions."@en ; + "https://en.wikipedia.org/w/index.php?title=Training_camp&oldid=1059977631"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000333 -cco:ont00000333 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000394 ; - rdfs:label "Gas Turbine"@en ; - skos:altLabel "Combustion Turbine"@en ; - skos:definition "An Internal Combustion Engine that has a rotating compressor and a turbine and is designed to operate utilizing continous Combustion to produce Thrust, either directly via exhaust or indirectly via a prop."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gas_turbine&oldid=1062398125"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gas Turbine"@en ; + "Combustion Turbine"@en ; + "An Internal Combustion Engine that has a rotating compressor and a turbine and is designed to operate utilizing continous Combustion to produce Thrust, either directly via exhaust or indirectly via a prop."@en ; + "https://en.wikipedia.org/w/index.php?title=Gas_turbine&oldid=1062398125"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000334 -cco:ont00000334 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000303 ; - rdfs:label "Interphone"@en ; - skos:definition "An Intercommunication System that that is designed to facilitate some Act of Communication between agents by means of audio messages."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Interphone"@en ; + "An Intercommunication System that that is designed to facilitate some Act of Communication between agents by means of audio messages."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000335 -cco:ont00000335 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000819 ; - rdfs:label "Stasis of Generically Dependent Continuant"@en ; - skos:definition "A Stasis in which some Independent Continuant bears some Generically Dependent Continuant that remains unchanged during a Temporal Interval."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Generically Dependent Continuant"@en ; + "A Stasis in which some Independent Continuant bears some Generically Dependent Continuant that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000336 -cco:ont00000336 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000410 ; - rdfs:label "Apartment Building"@en ; - skos:definition "A Residential Facility that is designed to contain multiple permanent residences comprised of a suite of rooms."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Apartment&oldid=1064019048"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Apartment Building"@en ; + "A Residential Facility that is designed to contain multiple permanent residences comprised of a suite of rooms."@en ; + "https://en.wikipedia.org/w/index.php?title=Apartment&oldid=1064019048"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000337 -cco:ont00000337 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001029 ; - rdfs:label "Rocket-Propelled Grenade"@en ; - skos:definition "An Unguided Rocket that is designed to contain an explosive warhead, be fired from a Shoulder-Fired Rocket Launcher, and be used against Tanks."@en ; - cco:ont00001753 "RPG" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket-propelled_grenade&oldid=1063641548"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rocket-Propelled Grenade"@en ; + "An Unguided Rocket that is designed to contain an explosive warhead, be fired from a Shoulder-Fired Rocket Launcher, and be used against Tanks."@en ; + "RPG" ; + "https://en.wikipedia.org/w/index.php?title=Rocket-propelled_grenade&oldid=1063641548"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000338 -cco:ont00000338 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000256 ; - rdfs:label "Fan"@en ; - skos:definition "A Fluid Control Artifact that consists of a rotating arrangement of vanes or blades that are designed to act on a portion of fluid to create flow within it."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Fan_(machine)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fan"@en ; + "A Fluid Control Artifact that consists of a rotating arrangement of vanes or blades that are designed to act on a portion of fluid to create flow within it."@en ; + "https://en.wikipedia.org/wiki/Fan_(machine)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000339 -cco:ont00000339 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Agricultural Facility"@en ; - skos:definition "A Facility that is designed as a building or campus for agricultural processes with the aim of cultivating animals, plants, or fungi for food, fiber, biofuel, medicinal plants, or other products to sustain and enhance human life."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Agriculture&oldid=1063222666"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Agricultural Facility"@en ; + "A Facility that is designed as a building or campus for agricultural processes with the aim of cultivating animals, plants, or fungi for food, fiber, biofuel, medicinal plants, or other products to sustain and enhance human life."@en ; + "https://en.wikipedia.org/w/index.php?title=Agriculture&oldid=1063222666"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000340 -cco:ont00000340 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000268 ; - rdfs:label "Mortar"@en ; - skos:definition "A Cannon that is designed to fire projectiles at relatively low velocities over relatively short ranges."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Mortar_(weapon)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mortar"@en ; + "A Cannon that is designed to fire projectiles at relatively low velocities over relatively short ranges."@en ; + "https://en.wikipedia.org/wiki/Mortar_(weapon)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000341 -cco:ont00000341 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000715 ; - rdfs:label "Prosthetic Arm"@en ; - skos:definition "A Prosthesis that is designed to replace a missing arm."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prosthetic Arm"@en ; + "A Prosthesis that is designed to replace a missing arm."@en ; + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000342 -cco:ont00000342 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Brake"@en ; - skos:definition "A Material Artifact that is designed to inhibit the Vehicle's Motion by absorbing energy from a moving system."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Brake&oldid=1047693009"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Brake"@en ; + "A Material Artifact that is designed to inhibit the Vehicle's Motion by absorbing energy from a moving system."@en ; + "https://en.wikipedia.org/w/index.php?title=Brake&oldid=1047693009"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000343 -cco:ont00000343 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000634 ; - rdfs:label "Reciprocating Steam Engine"@en ; - skos:definition "A Steam Engine that is designed to use one or more reciprocating pistons to convert pressure into a rotating motion."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reciprocating_engine&oldid=1057783145"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reciprocating Steam Engine"@en ; + "A Steam Engine that is designed to use one or more reciprocating pistons to convert pressure into a rotating motion."@en ; + "https://en.wikipedia.org/w/index.php?title=Reciprocating_engine&oldid=1057783145"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000344 -cco:ont00000344 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001281 ; - rdfs:label "Surfactant Artifact Function"@en ; - skos:definition "An Emulsifier Artifact Function that is realized in a process that lowers the surface tension between two liquids or between a liquid and a solid."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Surfactant&oldid=1063693411"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Surfactant Artifact Function"@en ; + "An Emulsifier Artifact Function that is realized in a process that lowers the surface tension between two liquids or between a liquid and a solid."@en ; + "https://en.wikipedia.org/w/index.php?title=Surfactant&oldid=1063693411"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000345 -cco:ont00000345 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Measuring"@en ; - skos:definition "A Planned Act that involves determining the extent, dimensions, quanity, or quality of an Entity relative to some standard."@en ; - skos:example "putting an object on a scale to measure its weight in kilograms" , - "rating Hollywood movies on a 1 to 5 star scale" , - "using a tape measure to determine the height and width of a doorway in inches" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Measuring"@en ; + "A Planned Act that involves determining the extent, dimensions, quanity, or quality of an Entity relative to some standard."@en ; + "putting an object on a scale to measure its weight in kilograms" , + "rating Hollywood movies on a 1 to 5 star scale" , + "using a tape measure to determine the height and width of a doorway in inches" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000346 -cco:ont00000346 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Communication Instrument"@en ; - skos:definition "A Material Artifact that is designed to facilitate communication between at least two entities."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication Instrument"@en ; + "A Material Artifact that is designed to facilitate communication between at least two entities."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000347 -cco:ont00000347 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001159 ; - rdfs:label "Electronic Bond"@en ; - skos:definition "A Bond that consists of Bytes."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electronic Bond"@en ; + "A Bond that consists of Bytes."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000348 -cco:ont00000348 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000995 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00001999 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Filter"@en ; - skos:definition "A Material Artifact that bears a Filter Function."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Filter"@en ; + "A Material Artifact that bears a Filter Function."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000349 -cco:ont00000349 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000479 ; - rdfs:label "Police Station"@en ; - skos:definition "A Public Safety Facility that is designed for the professional and clerical processes of a local police force."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Police_station&oldid=1056208781"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Police Station"@en ; + "A Public Safety Facility that is designed for the professional and clerical processes of a local police force."@en ; + "https://en.wikipedia.org/w/index.php?title=Police_station&oldid=1056208781"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000350 -cco:ont00000350 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000453 ; - rdfs:label "Cooling System"@en ; - skos:definition "An Environment Control System that is designed to cool the air or objects in a Site."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cooling System"@en ; + "An Environment Control System that is designed to cool the air or objects in a Site."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000351 -cco:ont00000351 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000133 ; - rdfs:label "Act of Commanding"@en ; - skos:definition "An Act of Directive Communication through which an Agent exercises authoritative control or power over another Agent's actions."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=commanding (Edited 08-22-2016)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Commanding"@en ; + "An Act of Directive Communication through which an Agent exercises authoritative control or power over another Agent's actions."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=commanding (Edited 08-22-2016)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000352 -cco:ont00000352 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001139 ; - rdfs:label "Satellite Artifact"@en ; - skos:definition "A Spacecraft that is designed to Orbit a Space Object (typically Earth)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Satellite Artifact"@en ; + "A Spacecraft that is designed to Orbit a Space Object (typically Earth)."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000353 -cco:ont00000353 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Research Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact is used to perform research on a specified entity or class of entities."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Research Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact is used to perform research on a specified entity or class of entities."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000354 -cco:ont00000354 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000379 ; - rdfs:label "Act of Testifying"@en ; - skos:definition "An Act of Representative Communication performed by stating one's personal knowledge or belief."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/testify" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Testifying"@en ; + "An Act of Representative Communication performed by stating one's personal knowledge or belief."@en ; + "http://www.merriam-webster.com/dictionary/testify" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000355 -cco:ont00000355 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001009 ; - rdfs:label "Refracting Optical Telescope"@en ; - skos:altLabel "Refracting Telescope"@en , - "Refractor"@en ; - skos:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via refraction through the use of one or more Lenses to form an enhanced image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Refracting_telescope&oldid=1059975066"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Refracting Optical Telescope"@en ; + "Refracting Telescope"@en , + "Refractor"@en ; + "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via refraction through the use of one or more Lenses to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Refracting_telescope&oldid=1059975066"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000356 -cco:ont00000356 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000588 ; - rdfs:label "Act of Publishing Mass Media Article"@en ; - skos:definition "An Act of Mass Media Communication involving the preparation and public issuance of a non-fictional essay, especially one included with others in a newspaper, magazine, journal, etc."@en ; - cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Publishing Mass Media Article"@en ; + "An Act of Mass Media Communication involving the preparation and public issuance of a non-fictional essay, especially one included with others in a newspaper, magazine, journal, etc."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000357 -cco:ont00000357 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Motion"@en ; - skos:definition "A Planned Act by which an Agent causes the position or location of some Object to change."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/motion" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Motion"@en ; + "A Planned Act by which an Agent causes the position or location of some Object to change."@en ; + "http://www.merriam-webster.com/dictionary/motion" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000358 -cco:ont00000358 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001130 ; - rdfs:label "Geospatial Region Bounding Box"@en ; - skos:definition "A Geospatial Polygon that has some Geospatial Region as a non-tangential proper part."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Region Bounding Box"@en ; + "A Geospatial Polygon that has some Geospatial Region as a non-tangential proper part."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000359 -cco:ont00000359 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000223 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000132 ; - owl:someValuesFrom cco:ont00000498 - ] ; - rdfs:label "Julian Date"@en ; - skos:definition "A Time of Day as specified according to the Julian Calendar using the Julian Date epoch."@en ; - cco:ont00001753 "JD" ; - cco:ont00001754 "https://www.defit.org/julian-date/" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Julian Date"@en ; + "A Time of Day as specified according to the Julian Calendar using the Julian Date epoch."@en ; + "JD" ; + "https://www.defit.org/julian-date/" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000360 -cco:ont00000360 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001289 ; - rdfs:label "Wounded Stasis"@en ; - skos:altLabel "Wounded"@en ; - skos:definition "A Damaged Stasis in which a Person or other organism is the bearer of a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to an injuring event."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wounded Stasis"@en ; + "Wounded"@en ; + "A Damaged Stasis in which a Person or other organism is the bearer of a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to an injuring event."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000361 -cco:ont00000361 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001356 ; - rdfs:label "Increase of Function"@en ; - skos:definition "An Increase of Disposition in which some Independent Continuant has an increase of some Function that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Function"@en ; + "An Increase of Disposition in which some Independent Continuant has an increase of some Function that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000362 -cco:ont00000362 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000533 ; - rdfs:comment "Most rocket engines are also Internal Combustion Engines, however non-combusting forms also exist. For example, an untied balloon full of air that is released and allowed to zoom around the room may be both a Rocket Engine and a Physically Powered Engine."@en ; - rdfs:label "Rocket Engine"@en ; - skos:altLabel "Thruster"@en ; - skos:definition "A Jet Engine that is designed to use only stored Rocket Propellant to form a high speed propulsive jet in order to generate Thrust."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket_engine&oldid=1063879464"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rocket Engine"@en ; + "Thruster"@en ; + "A Jet Engine that is designed to use only stored Rocket Propellant to form a high speed propulsive jet in order to generate Thrust."@en ; + "Most rocket engines are also Internal Combustion Engines, however non-combusting forms also exist. For example, an untied balloon full of air that is released and allowed to zoom around the room may be both a Rocket Engine and a Physically Powered Engine."@en ; + "https://en.wikipedia.org/w/index.php?title=Rocket_engine&oldid=1063879464"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000363 -cco:ont00000363 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000998 ; - rdfs:label "Wireless Telecommunication Network"@en ; - skos:altLabel "Wireless Network"@en ; - skos:definition "A Telecommunication Network that uses wireless connections to connect Telecommunication Network Nodes."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wireless_network&oldid=1060257041"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wireless Telecommunication Network"@en ; + "Wireless Network"@en ; + "A Telecommunication Network that uses wireless connections to connect Telecommunication Network Nodes."@en ; + "https://en.wikipedia.org/w/index.php?title=Wireless_network&oldid=1060257041"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000364 -cco:ont00000364 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001221 ; - rdfs:label "Pneumatic Motor"@en ; - skos:altLabel "Air Motor"@en , - "Compressed Air Engine"@en ; - skos:definition "A Physically Powered Engine that converts potential energy stored in a portion of compressed air into mechanical energy."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pneumatic Motor"@en ; + "Air Motor"@en , + "Compressed Air Engine"@en ; + "A Physically Powered Engine that converts potential energy stored in a portion of compressed air into mechanical energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000365 -cco:ont00000365 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000161 ; - rdfs:label "x-Axis"@en ; - skos:definition "A Coordinate System Axis designated by the variable 'x'."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "x-Axis"@en ; + "A Coordinate System Axis designated by the variable 'x'."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000366 -cco:ont00000366 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Information Processing"@en ; - skos:definition "A Planned Act in which one or more input Information Content Entities are received, manipulated, transferred, or stored by an Agent."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Information Processing"@en ; + "A Planned Act in which one or more input Information Content Entities are received, manipulated, transferred, or stored by an Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000367 -cco:ont00000367 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001075 ; - rdfs:label "Act of Military Training Instruction"@en ; - skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Military Organization by imparting knowledge of the tactics, techniques, and/or strategies of Military Operations to an Agent either directly or indirectly through some communication medium."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Military Training Instruction"@en ; + "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Military Organization by imparting knowledge of the tactics, techniques, and/or strategies of Military Operations to an Agent either directly or indirectly through some communication medium."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000368 -cco:ont00000368 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001133 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000296 - ] ; - rdfs:label "Rotational Motion"@en ; - skos:altLabel "Rotation"@en ; - skos:definition "A Motion Process in which an Object moves in a Circular or Elliptical Path around an Axis of Rotation."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rotation&oldid=1055998344"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Rotational Motion"@en ; + "Rotation"@en ; + "A Motion Process in which an Object moves in a Circular or Elliptical Path around an Axis of Rotation."@en ; + "https://en.wikipedia.org/w/index.php?title=Rotation&oldid=1055998344"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000369 -cco:ont00000369 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001010 ; - rdfs:label "Priority Measurement Information Content Entity"@en ; - skos:altLabel "Criticality Measurement"@en , - "Importance Measurement"@en , - "Priority Measurement"@en ; - skos:definition "An Ordinal Measurement Information Content Entity that is a measurement of the relative importance of an entity."@en ; - skos:example "low, normal, high, urgent, or immediate priority" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Priority Measurement Information Content Entity"@en ; + "Criticality Measurement"@en , + "Importance Measurement"@en , + "Priority Measurement"@en ; + "An Ordinal Measurement Information Content Entity that is a measurement of the relative importance of an entity."@en ; + "low, normal, high, urgent, or immediate priority" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000370 -cco:ont00000370 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000123 ; - rdfs:label "Act of Condoling"@en ; - skos:definition "An Act of Expressive Communication performed by expressing sympathy or sorrow."@en ; - cco:ont00001754 "http://www.thefreedictionary.com/condoling" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Condoling"@en ; + "An Act of Expressive Communication performed by expressing sympathy or sorrow."@en ; + "http://www.thefreedictionary.com/condoling" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000371 -cco:ont00000371 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:comment "An Act of Prediction may involve the use of some or no relevant information. An Act of Prediction that utilizes relevant information may also be (or at least involve) an Act of Estimation. Hence, these two classes are not disjoint. Furthermore, neither class subsumes the other since estimates can be made about existing entities and not all predictions produce measurements (e.g. predicting that it will rain tomorrow)."@en ; - rdfs:label "Act of Prediction"@en ; - skos:definition "A Planned Act that involves the generation of a Predictive Information Content entity that is intended to describe an uncertain possible future event, value, entity, or attribute of an entity."@en ; - skos:example "a chess master predicting the next 8 moves his opponent will make" , - "predicting that a particular stock will double in value over the next fiscal quarter" , - "using sample exit polls data to predict the winners of an election" ; - skos:scopeNote "Predictions can only be made about things that are not yet the case (i.e. future things) and are further restricted to being about things that do not have a probability of either 1 (necessary) or 0 (impossible). For example, assuming that no organism is immortal, one cannot predict of a given organism that it will eventually die; however, one may predict uncertain things about the organism's eventual death, such as its precise cause or time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Prediction"@en ; + "A Planned Act that involves the generation of a Predictive Information Content entity that is intended to describe an uncertain possible future event, value, entity, or attribute of an entity."@en ; + "a chess master predicting the next 8 moves his opponent will make" , + "predicting that a particular stock will double in value over the next fiscal quarter" , + "using sample exit polls data to predict the winners of an election" ; + "An Act of Prediction may involve the use of some or no relevant information. An Act of Prediction that utilizes relevant information may also be (or at least involve) an Act of Estimation. Hence, these two classes are not disjoint. Furthermore, neither class subsumes the other since estimates can be made about existing entities and not all predictions produce measurements (e.g. predicting that it will rain tomorrow)."@en , + "Predictions can only be made about things that are not yet the case (i.e. future things) and are further restricted to being about things that do not have a probability of either 1 (necessary) or 0 (impossible). For example, assuming that no organism is immortal, one cannot predict of a given organism that it will eventually die; however, one may predict uncertain things about the organism's eventual death, such as its precise cause or time."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000372 -cco:ont00000372 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Power Transformer Rectifier Unit"@en ; - skos:altLabel "TRU"@en ; - skos:definition "A Material Artifact that is designed to perform the functions of both a Rectifier and a Transformer."@en ; - cco:ont00001754 "http://www.skybrary.aero/index.php/Transformer_Rectifier_Unit_(TRU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Transformer Rectifier Unit"@en ; + "TRU"@en ; + "A Material Artifact that is designed to perform the functions of both a Rectifier and a Transformer."@en ; + "http://www.skybrary.aero/index.php/Transformer_Rectifier_Unit_(TRU)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000373 -cco:ont00000373 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000147 ; - rdfs:label "Geospatial Position"@en ; - skos:definition "A Fiat Point that is at or near the surface of the Earth and fixed according to some Geospatial Coordinate Reference System."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Position"@en ; + "A Fiat Point that is at or near the surface of the Earth and fixed according to some Geospatial Coordinate Reference System."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000374 -cco:ont00000374 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000061 ; - rdfs:label "Measurement Unit of Volumetric Flow Rate"@en ; - skos:definition "A Measurement Unit of Flow that is used as a standard for measurement of the rate at which volumes of fluid pass per unit time."@en ; - skos:example "cubic metres per second, standard cubic centimeters per minute, cubic feet per second, gallons per minute" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Volumetric Flow Rate"@en ; + "A Measurement Unit of Flow that is used as a standard for measurement of the rate at which volumes of fluid pass per unit time."@en ; + "cubic metres per second, standard cubic centimeters per minute, cubic feet per second, gallons per minute" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000375 -cco:ont00000375 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000881 ; - rdfs:label "Warehouse"@en ; - skos:definition "A Storage Facility that is designed to store commercial goods."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Warehouse&oldid=1063721454"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Warehouse"@en ; + "A Storage Facility that is designed to store commercial goods."@en ; + "https://en.wikipedia.org/w/index.php?title=Warehouse&oldid=1063721454"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000376 -cco:ont00000376 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000457 ; - rdfs:label "Portion of Gallium Arsenide"@en ; - skos:altLabel "Portion of GaAs"@en ; - skos:definition "A Portion of Material that is composed of a compound of the elements gallium and arsenic."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Gallium Arsenide"@en ; + "Portion of GaAs"@en ; + "A Portion of Material that is composed of a compound of the elements gallium and arsenic."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000377 -cco:ont00000377 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Disability"@en ; - skos:definition "A Quality inhering in an Agent by virtue a physical or mental condition that limits the Agent's movements, senses, or activities."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Disability"@en ; + "A Quality inhering in an Agent by virtue a physical or mental condition that limits the Agent's movements, senses, or activities."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000378 -cco:ont00000378 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000784 ; - rdfs:label "Color"@en ; - skos:definition "An Optical Property that inheres in a bearer in virtue of that bearer's Color Hue, Color Saturation and Color Brightness."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Color"@en ; + "An Optical Property that inheres in a bearer in virtue of that bearer's Color Hue, Color Saturation and Color Brightness."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000379 -cco:ont00000379 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000402 ; - rdfs:comment "Examples: affirming, alleging, announcing, answering, attributing, claiming, classifying, concurring, confirming, conjecturing, denying, disagreeing, disclosing, disputing, identifying, informing, insisting, predicting, ranking, reporting, stating, stipulating"@en ; - rdfs:label "Act of Representative Communication"@en ; - skos:definition "An Act of Communication that commits a speaker to the truth of the expressed proposition."@en ; - cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Representative Communication"@en ; + "An Act of Communication that commits a speaker to the truth of the expressed proposition."@en ; + "Examples: affirming, alleging, announcing, answering, attributing, claiming, classifying, concurring, confirming, conjecturing, denying, disagreeing, disclosing, disputing, identifying, informing, insisting, predicting, ranking, reporting, stating, stipulating"@en ; + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000380 -cco:ont00000380 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000570 ; - rdfs:label "Pressure"@en ; - skos:definition "A Force that is applied perpendicular to the surface of an Object per unit area over which that Force is distributed."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pressure"@en ; + "A Force that is applied perpendicular to the surface of an Object per unit area over which that Force is distributed."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000381 -cco:ont00000381 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000782 ; - rdfs:label "Weapon Manufacturing Facility"@en ; - skos:definition "A Factory that is designed to produce or assemble weapons."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Arms_industry&oldid=1063811497"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Weapon Manufacturing Facility"@en ; + "A Factory that is designed to produce or assemble weapons."@en ; + "https://en.wikipedia.org/w/index.php?title=Arms_industry&oldid=1063811497"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000382 -cco:ont00000382 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001298 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002042 - ] ; - rdfs:label "Material Copy of a Spreadsheet"@en ; - skos:altLabel "Spreadsheet"@en ; - skos:definition "A Material Copy of a Document that is designed to carry some Information Content Entity in an interactive, tabular form."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Spreadsheet&oldid=1064060503"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Spreadsheet"@en ; + "Spreadsheet"@en ; + "A Material Copy of a Document that is designed to carry some Information Content Entity in an interactive, tabular form."@en ; + "https://en.wikipedia.org/w/index.php?title=Spreadsheet&oldid=1064060503"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000383 -cco:ont00000383 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000837 ; - rdfs:label "Nuclear Family"@en ; - skos:definition "A Family composed of parents and their children."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Family"@en ; + "A Family composed of parents and their children."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000384 -cco:ont00000384 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000789 ; - rdfs:label "Rectilinear Motion"@en ; - skos:altLabel "Linear Motion"@en ; - skos:definition "A Translational Motion process in which an Object moves along a straight path."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rectilinear Motion"@en ; + "Linear Motion"@en ; + "A Translational Motion process in which an Object moves along a straight path."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000385 -cco:ont00000385 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Wide"@en ; - skos:altLabel "Broad"@en , - "Fat"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly larger in proportion to its length or height."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wide"@en ; + "Broad"@en , + "Fat"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly larger in proportion to its length or height."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000386 -cco:ont00000386 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000517 ; - rdfs:comment "Essentially, webcasting is “broadcasting” over the Internet."@en ; - rdfs:label "Webcast"@en ; - skos:altLabel "Act of Webcasting"@en ; - skos:definition "An Act of Communciation by Media transmitted to an audience over the Internet using streaming media technology to distribute a single content source that may be distributed live or on demand."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Webcast&oldid=1062685084"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Webcast"@en ; + "Act of Webcasting"@en ; + "An Act of Communciation by Media transmitted to an audience over the Internet using streaming media technology to distribute a single content source that may be distributed live or on demand."@en ; + "Essentially, webcasting is “broadcasting” over the Internet."@en ; + "https://en.wikipedia.org/w/index.php?title=Webcast&oldid=1062685084"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000387 -cco:ont00000387 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000026 ; - rdfs:label "Axis of Rotation"@en ; - skos:altLabel "Rotational Axis"@en ; - skos:definition "A One-Dimensional Spatial Region defined by the line around which a spinning body rotates."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Axis of Rotation"@en ; + "Rotational Axis"@en ; + "A One-Dimensional Spatial Region defined by the line around which a spinning body rotates."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000388 -cco:ont00000388 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000987 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001262 ; - rdfs:label "Citizen"@en ; - skos:definition "A Person who is the bearer of some Citizen Role."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Citizen"@en ; + "A Person who is the bearer of some Citizen Role."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000389 -cco:ont00000389 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001334 ; - rdfs:label "Act of Buying"@en ; - skos:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Buyer) to acquire ownership of a good from another Agent (the Seller)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Buying"@en ; + "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Buyer) to acquire ownership of a good from another Agent (the Seller)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000390 -cco:ont00000390 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000686 ; - rdfs:label "Spatial Region Identifier"@en ; - skos:definition "A Designative Information Content Entity that designates some Spatial Region."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Spatial Region Identifier"@en ; + "A Designative Information Content Entity that designates some Spatial Region."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000391 -cco:ont00000391 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000754 ; - rdfs:comment "The corresponding Wavelength range is 1–0.1 mm"@en ; - rdfs:label "Tremendously High Frequency"@en ; - skos:altLabel "ITU Band Number 12"@en , - "Submillimeter Band Frequency"@en , - "Terahertz Radiation Frequency"@en ; - skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 300 GHz and 3 THz."@en ; - cco:ont00001753 "THF" ; - cco:ont00001754 "International Telecommunication Union (ITU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Tremendously High Frequency"@en ; + "ITU Band Number 12"@en , + "Submillimeter Band Frequency"@en , + "Terahertz Radiation Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 300 GHz and 3 THz."@en ; + "The corresponding Wavelength range is 1–0.1 mm"@en ; + "THF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000392 -cco:ont00000392 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Allegiance Role"@en ; - skos:definition "A Role that inheres in an Agent by virtue of the support it has committed to provide to another Agent when that Agent is involved in a conflict."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Allegiance Role"@en ; + "A Role that inheres in an Agent by virtue of the support it has committed to provide to another Agent when that Agent is involved in a conflict."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000393 -cco:ont00000393 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000387 ; - rdfs:label "Yaw Axis"@en ; - skos:altLabel "Vertical Axis"@en ; - skos:definition "An Axis of Rotation that passes through the center of an object's Mass from the top to the bottom and is perpendicular to the direction of the object's motion. For objects in Orbit, the Yaw Axis passes through the Barycenter of its Orbit."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Yaw Axis"@en ; + "Vertical Axis"@en ; + "An Axis of Rotation that passes through the center of an object's Mass from the top to the bottom and is perpendicular to the direction of the object's motion. For objects in Orbit, the Yaw Axis passes through the Barycenter of its Orbit."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000394 -cco:ont00000394 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000746 ; - rdfs:label "Internal Combustion Engine"@en ; - skos:definition "A Combustion Engine that is designed to have an internal Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy that is then converted into mechanical energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Internal_combustion_engine&oldid=1063281505"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Internal Combustion Engine"@en ; + "A Combustion Engine that is designed to have an internal Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy that is then converted into mechanical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Internal_combustion_engine&oldid=1063281505"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000395 -cco:ont00000395 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000554 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000057 ; - owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom obo:BFO_0000020 - ] - ) ; - rdf:type owl:Class - ] - ] ; - rdfs:label "Gain of Specifically Dependent Continuant"@en ; - skos:definition "A Gain of Dependent Continuant in which some Independent Continuant becomes the bearer of some Specifically Dependent Continuant."@en ; - skos:example "A Person becomes pregnant (gain of quality), A person becomes forgetful (gain of disposition), A vehicle becomes amphibious (gain of function), A Person becomes a Database Administrator (gain of role)." ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Specifically Dependent Continuant"@en ; + "A Gain of Dependent Continuant in which some Independent Continuant becomes the bearer of some Specifically Dependent Continuant."@en ; + "A Person becomes pregnant (gain of quality), A person becomes forgetful (gain of disposition), A vehicle becomes amphibious (gain of function), A Person becomes a Database Administrator (gain of role)." ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000396 -cco:ont00000396 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000150 ; - rdfs:comment "The corresponding Wavelength range is 100,000–10,000 km"@en ; - rdfs:label "Extremely Low Frequency"@en ; - skos:altLabel "ITU Band Number 1"@en ; - skos:definition "A Radio Frequency that is between 3 and 30 Hz."@en ; - cco:ont00001753 "ELF" ; - cco:ont00001754 "International Telecommunication Union (ITU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Extremely Low Frequency"@en ; + "ITU Band Number 1"@en ; + "A Radio Frequency that is between 3 and 30 Hz."@en ; + "The corresponding Wavelength range is 100,000–10,000 km"@en ; + "ELF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000397 -cco:ont00000397 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Combustion Chamber"@en ; - skos:altLabel "Burner"@en , - "Combustor"@en , - "Flame Holder"@en ; - skos:definition "A Material Artifact that is designed to wholly or partially bound an internal Site where a Combustion process is intended to occur."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Combustion Chamber"@en ; + "Burner"@en , + "Combustor"@en , + "Flame Holder"@en ; + "A Material Artifact that is designed to wholly or partially bound an internal Site where a Combustion process is intended to occur."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000398 -cco:ont00000398 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000853 ; - rdfs:label "Reference System"@en ; - skos:definition "A Descriptive Information Content Entity that describes a set of standards for organizing and understanding data of the specified type or domain."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reference System"@en ; + "A Descriptive Information Content Entity that describes a set of standards for organizing and understanding data of the specified type or domain."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000399 -cco:ont00000399 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom obo:BFO_0000008 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000686 ; - rdfs:label "Temporal Region Identifier"@en ; - skos:definition "A Designative Information Content Entity that designates some Temporal Region."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Temporal Region Identifier"@en ; + "A Designative Information Content Entity that designates some Temporal Region."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000400 -cco:ont00000400 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001197 ; - rdfs:label "Park"@en ; - skos:definition "An Anthropogenic Feature that is a bounded area of land, or water, usually in its natural or semi-natural (landscaped) state and set aside for some purpose, usually to do with recreation or conservation."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Park&oldid=1061073992"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Park"@en ; + "An Anthropogenic Feature that is a bounded area of land, or water, usually in its natural or semi-natural (landscaped) state and set aside for some purpose, usually to do with recreation or conservation."@en ; + "https://en.wikipedia.org/w/index.php?title=Park&oldid=1061073992"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000401 -cco:ont00000401 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000008 ; - rdfs:label "Fundamental Frequency"@en ; - skos:definition "A Sound Frequency that is the lowest Frequency of a Sound Wave."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fundamental Frequency"@en ; + "A Sound Frequency that is the lowest Frequency of a Sound Wave."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000402 -cco:ont00000402 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Communication"@en ; - skos:definition "A Planned Act in which some Information Content Entity is transferred from some Agent to Another."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Communication&oldid=1063752020"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Communication"@en ; + "A Planned Act in which some Information Content Entity is transferred from some Agent to Another."@en ; + "https://en.wikipedia.org/w/index.php?title=Communication&oldid=1063752020"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000403 -cco:ont00000403 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Diffraction Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by a Material Artifact participating in a diffraction event in which the Material Artifact forces a wave to bend around the corners of an obstacle or aperture into the region of geometrical shadow of the obstacle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Diffraction Artifact Function"@en ; + "An Artifact Function that is realized by a Material Artifact participating in a diffraction event in which the Material Artifact forces a wave to bend around the corners of an obstacle or aperture into the region of geometrical shadow of the obstacle."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000404 -cco:ont00000404 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000084 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00000500 - ] ; - rdfs:label "Iris"@en ; - skos:definition "A Bodily Component that consists of the part of an Eye that is a pigmented, round, contractile membrane, suspended between the cornea and lens and perforated by the pupil, and which canonically regulates the amount of light entering the Eye."@en ; - cco:ont00001754 "http://www.thefreedictionary.com/iris" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Iris"@en ; + "A Bodily Component that consists of the part of an Eye that is a pigmented, round, contractile membrane, suspended between the cornea and lens and perforated by the pupil, and which canonically regulates the amount of light entering the Eye."@en ; + "http://www.thefreedictionary.com/iris" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000405 -cco:ont00000405 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001152 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00000126 - ] ; - rdfs:label "Second-Order Administrative Region"@en ; - skos:definition "A Government Domain that is a subdivision of a First-Order Administrative Region."@en ; - cco:ont00001754 "http://www.geonames.org/export/codes.html" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Second-Order Administrative Region"@en ; + "A Government Domain that is a subdivision of a First-Order Administrative Region."@en ; + "http://www.geonames.org/export/codes.html" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000406 -cco:ont00000406 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Geocoordinate"@en ; - skos:definition "A Measurement Unit specifying the geospatial coordinates of a location."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Geocoordinate"@en ; + "A Measurement Unit specifying the geospatial coordinates of a location."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000407 -cco:ont00000407 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000098 ; - rdfs:label "Electrical Resistance Artifact Function"@en ; - skos:definition "An Electrical Artifact Function that is realized in processes in which a Material Artifact opposes the flow of an electric current."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electrical_resistivity_and_conductivity&oldid=1063749049"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Resistance Artifact Function"@en ; + "An Electrical Artifact Function that is realized in processes in which a Material Artifact opposes the flow of an electric current."@en ; + "https://en.wikipedia.org/w/index.php?title=Electrical_resistivity_and_conductivity&oldid=1063749049"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000408 -cco:ont00000408 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001180 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00001335 - ] ; - rdfs:label "Government Organization"@en ; - skos:definition "An Organization that is part of a Government and is responsible for the oversight or administration of specific governmental functions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Government Organization"@en ; + "An Organization that is part of a Government and is responsible for the oversight or administration of specific governmental functions."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000409 -cco:ont00000409 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000742 ; - rdfs:label "Spark Ignition System"@en ; - skos:definition "An Ignition System that is designed to produce a spark in order to initiate an Ignition process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spark Ignition System"@en ; + "An Ignition System that is designed to produce a spark in order to initiate an Ignition process."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000410 -cco:ont00000410 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Residential Facility"@en ; - skos:definition "A Facility that is designed to house one or more Persons."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Residential Facility"@en ; + "A Facility that is designed to house one or more Persons."@en ; + "https://en.wikipedia.org/w/index.php?title=Residence&oldid=1019728937"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000411 -cco:ont00000411 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001100 ; - rdfs:label "Speed Measurement Artifact Function"@en ; - skos:definition "A Measurement Artifact Function that is realized during events in which a Material Artifact is used to measure the Speed of a specified object's or class of objects' Motion."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Speed Measurement Artifact Function"@en ; + "A Measurement Artifact Function that is realized during events in which a Material Artifact is used to measure the Speed of a specified object's or class of objects' Motion."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000412 -cco:ont00000412 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000791 ; - rdfs:label "Oxidizer Artifact Function"@en ; - skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which electrons are removed from a reactant in a redox reaction."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Redox&oldid=1063866348"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Oxidizer Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in a process in which electrons are removed from a reactant in a redox reaction."@en ; + "https://en.wikipedia.org/w/index.php?title=Redox&oldid=1063866348"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000413 -cco:ont00000413 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000304 ; - rdfs:label "Electron Microscope"@en ; - skos:definition "A Microscope that is designed to use a beam of accelerated electrons to illuminate the target and produce a significantly enlarged image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electron_microscope&oldid=1060512240"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electron Microscope"@en ; + "A Microscope that is designed to use a beam of accelerated electrons to illuminate the target and produce a significantly enlarged image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Electron_microscope&oldid=1060512240"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000414 -cco:ont00000414 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001286 ; - rdfs:label "Square Waveform"@en ; - skos:definition "A Waveform that is characterized by a square shape due to the near-instantaneous transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Square Waveform"@en ; + "A Waveform that is characterized by a square shape due to the near-instantaneous transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000415 -cco:ont00000415 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000828 ; - rdfs:label "Anti-Microbial Artifact Function"@en ; - skos:definition "A Pesticide Artifact Function that is realized in a process which causes illness in, or the death of, a microorganism."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Antimicrobial&oldid=1064100151"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Anti-Microbial Artifact Function"@en ; + "A Pesticide Artifact Function that is realized in a process which causes illness in, or the death of, a microorganism."@en ; + "https://en.wikipedia.org/w/index.php?title=Antimicrobial&oldid=1064100151"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000416 -cco:ont00000416 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000588 ; - rdfs:label "Act of Publishing Mass Media Press Release"@en ; - skos:definition "An Act of Mass Media Communication involving the preparation and public issuance of an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ; - cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Publishing Mass Media Press Release"@en ; + "An Act of Mass Media Communication involving the preparation and public issuance of an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000417 -cco:ont00000417 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000715 ; - rdfs:label "Prosthetic Hand"@en ; - skos:definition "A Prosthesis that is designed to replace a missing hand."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prosthetic Hand"@en ; + "A Prosthesis that is designed to replace a missing hand."@en ; + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000418 -cco:ont00000418 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000005 ; - rdfs:label "Biographical Life"@en ; - skos:definition "An Act composed of the Life Events that occur during the course of existence of an Agent (i.e. Person or Organization)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Biographical Life"@en ; + "An Act composed of the Life Events that occur during the course of existence of an Agent (i.e. Person or Organization)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000419 -cco:ont00000419 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000077 ; - rdfs:label "Part Number"@en ; - skos:definition "A Code Identifier that designates a type of part whose instances are designed to be part of some Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Part Number"@en ; + "A Code Identifier that designates a type of part whose instances are designed to be part of some Material Artifact."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000420 -cco:ont00000420 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000117 ; - rdfs:label "Computer"@en ; - skos:definition "An Information Processing Artifact that is designed to execute an arbitrary set of arithmetic or logical operations automatically."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Computer&oldid=1061553332"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Computer"@en ; + "An Information Processing Artifact that is designed to execute an arbitrary set of arithmetic or logical operations automatically."@en ; + "https://en.wikipedia.org/w/index.php?title=Computer&oldid=1061553332"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000421 -cco:ont00000421 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000330 ; - rdfs:label "Nuclear Power Plant"@en ; - skos:definition "A Thermal Power Plant that is designed to produce heat by means of a nuclear reactor, which is then converted to electrical energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nuclear_power_plant&oldid=1062752651"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Power Plant"@en ; + "A Thermal Power Plant that is designed to produce heat by means of a nuclear reactor, which is then converted to electrical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Nuclear_power_plant&oldid=1062752651"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000422 -cco:ont00000422 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Communication Reception Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact is used to receive information that has been transmitted for the purpose of communiction."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication Reception Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact is used to receive information that has been transmitted for the purpose of communiction."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000423 -cco:ont00000423 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000782 ; - rdfs:label "Motor Vehicle Manufacturing Facility"@en ; - skos:definition "A Factory that is designed to manufacture automobiles."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Automotive_industry&oldid=1061661751"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motor Vehicle Manufacturing Facility"@en ; + "A Factory that is designed to manufacture automobiles."@en ; + "https://en.wikipedia.org/w/index.php?title=Automotive_industry&oldid=1061661751"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000424 -cco:ont00000424 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Sharp"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a fine point or thin edge."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sharp"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a fine point or thin edge."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000425 -cco:ont00000425 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000674 ; - rdfs:comment "A Gregorian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.2425 Gregorian Days. The Gregorian Year is based upon the vernal equinox year. Unless otherwise stated, instances of Calendar Year are assumed to be instances of Gregorian Year since the Gregorian Calendar is the most widely used civil Calendar System."@en ; - rdfs:label "Gregorian Year"@en ; - skos:definition "A Calendar Year in the Gregorian Calendar."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gregorian Year"@en ; + "A Calendar Year in the Gregorian Calendar."@en ; + "A Gregorian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.2425 Gregorian Days. The Gregorian Year is based upon the vernal equinox year. Unless otherwise stated, instances of Calendar Year are assumed to be instances of Gregorian Year since the Gregorian Calendar is the most widely used civil Calendar System."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000426 -cco:ont00000426 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000274 ; - rdfs:label "Military Personnel Force"@en ; - skos:definition "An Armed Force authorized to use deadly force, and weapons, to support the interests of the Government and some or all of its Citizens."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Personnel Force"@en ; + "An Armed Force authorized to use deadly force, and weapons, to support the interests of the Government and some or all of its Citizens."@en ; + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000427 -cco:ont00000427 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000053 ; - rdfs:label "Armored Fighting Vehicle"@en ; - skos:definition "A Ground Motor Vehicle that is designed to be armored and used to transport and support military personal in combat missions."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Armoured_fighting_vehicle&oldid=1063212018"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Armored Fighting Vehicle"@en ; + "A Ground Motor Vehicle that is designed to be armored and used to transport and support military personal in combat missions."@en ; + "https://en.wikipedia.org/w/index.php?title=Armoured_fighting_vehicle&oldid=1063212018"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000428 -cco:ont00000428 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001326 ; - rdfs:label "Railway Junction"@en ; - skos:definition "A Land Transportation Artifact that is designed to enable a Train to switch between the tracks of two routes."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Junction_(rail)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000429 -cco:ont00000429 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000258 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002021 - ] ; - rdfs:label "Material Copy of a Codabar Barcode"@en ; - skos:altLabel "Codabar Barcode"@en ; - skos:definition "A Material Copy of a One-Dimensional Barcode that consists of numbers 0-9 and the characters -$:/.+ and is used by logistics and healthcare professionals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Railway Junction"@en ; + "A Land Transportation Artifact that is designed to enable a Train to switch between the tracks of two routes."@en ; + "https://en.wikipedia.org/wiki/Junction_(rail)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000430 -cco:ont00000430 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000850 ; - rdfs:label "Stable Orientation"@en ; - skos:definition "A Stasis of Quality that holds during a Temporal Interval when an object maintains the same Spatial Orientation."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stable Orientation"@en ; + "A Stasis of Quality that holds during a Temporal Interval when an object maintains the same Spatial Orientation."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000431 -cco:ont00000431 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000746 ; - rdfs:label "External Combustion Engine"@en ; - skos:definition "A Combustion Engine that is designed to have an external Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy to heat the working fluid, which transfers energy to the Engine where it is converted into mechanical energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=External_combustion_engine&oldid=1063941809"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "External Combustion Engine"@en ; + "A Combustion Engine that is designed to have an external Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy to heat the working fluid, which transfers energy to the Engine where it is converted into mechanical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=External_combustion_engine&oldid=1063941809"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000432 -cco:ont00000432 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001052 ; - rdfs:label "Missile Launch Site"@en ; - skos:definition "A Military Facility that is designed for storing and launching missiles."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Missile_launch_facility&oldid=1062709375"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Missile Launch Site"@en ; + "A Military Facility that is designed for storing and launching missiles."@en ; + "https://en.wikipedia.org/w/index.php?title=Missile_launch_facility&oldid=1062709375"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000433 -cco:ont00000433 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001327 ; - rdfs:label "Act of Association"@en ; - skos:definition "A Social Act wherein an Agent unites with some other Agent in a Planned Act, enterprise or business."@en ; - cco:ont00001754 "http://en.wiktionary.org/wiki/associate" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Association"@en ; + "A Social Act wherein an Agent unites with some other Agent in a Planned Act, enterprise or business."@en ; + "http://en.wiktionary.org/wiki/associate" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000434 -cco:ont00000434 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001207 ; - rdfs:label "Simple Optical Lens"@en ; - skos:definition "An Optical Lens consisting of a single piece of transparent material."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Simple Optical Lens"@en ; + "An Optical Lens consisting of a single piece of transparent material."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000435 -cco:ont00000435 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000921 ; - rdfs:comment "A Gregorian Day is twenty-four Hours in duration."@en ; - rdfs:label "Gregorian Day"@en ; - skos:definition "A Calendar Day in the Gregorian Calendar."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gregorian Day"@en ; + "A Calendar Day in the Gregorian Calendar."@en ; + "A Gregorian Day is twenty-four Hours in duration."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000436 -cco:ont00000436 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000304 ; - rdfs:label "X-ray Microscope"@en ; - skos:definition "A Microscope that is designed to use Electromagnetic Radiation in the soft X-ray band to produce a significantly enlarged image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=X-ray_microscope&oldid=1046169107"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "X-ray Microscope"@en ; + "A Microscope that is designed to use Electromagnetic Radiation in the soft X-ray band to produce a significantly enlarged image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=X-ray_microscope&oldid=1046169107"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000437 -cco:ont00000437 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Enhancing Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes of intensifying, increainsg, or further improving the quality, value, or extent of some entity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Enhancement&oldid=1003326590"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Enhancing Artifact Function"@en ; + "An Artifact Function that is realized in processes of intensifying, increainsg, or further improving the quality, value, or extent of some entity."@en ; + "https://en.wikipedia.org/w/index.php?title=Enhancement&oldid=1003326590"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000438 -cco:ont00000438 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001374 ; - rdfs:label "Act of Official Documentation"@en ; - skos:definition "An Act of Declarative Communication in which an Agent records some information for official use by another Agent."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Official Documentation"@en ; + "An Act of Declarative Communication in which an Agent records some information for official use by another Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000439 -cco:ont00000439 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Black"@en ; - skos:definition "A Color that lacks any hues as parts."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Black"@en ; + "A Color that lacks any hues as parts."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000440 -cco:ont00000440 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000713 ; - rdfs:label "Watercraft"@en ; - skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by water travel."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Watercraft&oldid=1054071067"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Watercraft"@en ; + "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by water travel."@en ; + "https://en.wikipedia.org/w/index.php?title=Watercraft&oldid=1054071067"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000441 -cco:ont00000441 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Temperature"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of its thermal energy."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Temperature"@en ; + "A Quality that inheres in a bearer in virtue of its thermal energy."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000442 -cco:ont00000442 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Radioactive"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of that bearer exhibiting or being caused by radioactivity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radioactive"@en ; + "A Quality that inheres in a bearer in virtue of that bearer exhibiting or being caused by radioactivity."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000443 -cco:ont00000443 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001180 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000485 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001180 ; - rdfs:label "Commercial Organization"@en ; - skos:definition "An Organization that is the bearer of a Commercial Role and whose primary objective is to make a profit from the provision of goods or services."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Commercial Organization"@en ; + "An Organization that is the bearer of a Commercial Role and whose primary objective is to make a profit from the provision of goods or services."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000444 -cco:ont00000444 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Energy"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the Amount of work that is available in an object."@en ; - skos:example "ft-lbs, calorie, horsepower, kilowatt" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Energy"@en ; + "A Measurement Unit that is used as a standard for measurement of the Amount of work that is available in an object."@en ; + "ft-lbs, calorie, horsepower, kilowatt" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000445 -cco:ont00000445 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Weapon"@en ; - skos:definition "A Material Artifact that is designed to destroy or inflict damage to structures or systems, or to kill or wound living things by creating specific lethal or nonlethal effects."@en ; - skos:scopeNote "Nonlethal effects include all outcomes short of death or destruction. This is captured by the fact that Damaged Stasis and Wounded Stasis are defined in terms of impairment of the Independent Continuant that participates in them."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Weapon&oldid=1143263715"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Weapon"@en ; + "A Material Artifact that is designed to destroy or inflict damage to structures or systems, or to kill or wound living things by creating specific lethal or nonlethal effects."@en ; + "Nonlethal effects include all outcomes short of death or destruction. This is captured by the fact that Damaged Stasis and Wounded Stasis are defined in terms of impairment of the Independent Continuant that participates in them."@en ; + "https://en.wikipedia.org/w/index.php?title=Weapon&oldid=1143263715"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000446 -cco:ont00000446 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001293 ; - rdfs:label "Circumference"@en ; - skos:definition "A Perimeter that inheres in a circle or ellipse."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Circumference"@en ; + "A Perimeter that inheres in a circle or ellipse."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000447 -cco:ont00000447 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Triangular"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of it having exactly three angles and exactly three sides."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Triangular"@en ; + "A Shape Quality inhering in a bearer in virtue of it having exactly three angles and exactly three sides."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000448 -cco:ont00000448 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Motion Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process in which an entity changes its position with respect to time."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Motion_(physics)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motion Artifact Function"@en ; + "An Artifact Function that is realized in a process in which an entity changes its position with respect to time."@en ; + "https://en.wikipedia.org/wiki/Motion_(physics)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000449 -cco:ont00000449 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001334 ; - rdfs:comment "Comment: Remuneration normally consists of salary or hourly wages, but also applies to commission, stock options, fringe benefits, etc."@en ; - rdfs:label "Act of Remuneration"@en ; - skos:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Employer) to compensate another Agent (the Employee) for the services they perform for the Employer."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Remuneration&oldid=1033306001"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Remuneration"@en ; + "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Employer) to compensate another Agent (the Employee) for the services they perform for the Employer."@en ; + "Comment: Remuneration normally consists of salary or hourly wages, but also applies to commission, stock options, fringe benefits, etc."@en ; + "https://en.wikipedia.org/w/index.php?title=Remuneration&oldid=1033306001"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000450 -cco:ont00000450 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Silver Color"@en ; - skos:definition "A Color that resembles Grey with the added feature of having a metallic shine."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Silver Color"@en ; + "A Color that resembles Grey with the added feature of having a metallic shine."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000451 -cco:ont00000451 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Collimation Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by a Material Artifact participating in a collimation event in which the Material Artifact narrows a beam of particles or waves by either causing the spatial cross-section of the beam to become smaller or by causing the directions of motion of the beam's constituents to be aligned in a specifc direction of Motion."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Collimation Artifact Function"@en ; + "An Artifact Function that is realized by a Material Artifact participating in a collimation event in which the Material Artifact narrows a beam of particles or waves by either causing the spatial cross-section of the beam to become smaller or by causing the directions of motion of the beam's constituents to be aligned in a specifc direction of Motion."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000452 -cco:ont00000452 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Timekeeping Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact is used to keep track of and report the current time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Timekeeping Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact is used to keep track of and report the current time."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000453 -cco:ont00000453 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:comment "Controlling air quality typically involves temperature control, oxygen replenishment, and removal of moisture, odor, smoke, heat, dust, airborne bacteria, carbon dioxide, and other undesired gases or particulates."@en ; - rdfs:label "Environment Control System"@en ; - skos:definition "A Material Artifact that is designed to control the temperature, air quality, or other feature of a Site that is relevant to the comfort or operation of entities located within that Site."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Environment Control System"@en ; + "A Material Artifact that is designed to control the temperature, air quality, or other feature of a Site that is relevant to the comfort or operation of entities located within that Site."@en ; + "Controlling air quality typically involves temperature control, oxygen replenishment, and removal of moisture, odor, smoke, heat, dust, airborne bacteria, carbon dioxide, and other undesired gases or particulates."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000454 -cco:ont00000454 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000742 ; - rdfs:label "Compression Ignition System"@en ; - skos:definition "An Ignition System that is designed to generate heat by compressing a portion of fuel and oxidizer mixture in order to initiate an Ignition process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Compression Ignition System"@en ; + "An Ignition System that is designed to generate heat by compressing a portion of fuel and oxidizer mixture in order to initiate an Ignition process."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000455 -cco:ont00000455 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001327 ; - rdfs:label "Act of Ceremony"@en ; - skos:definition "A Social Act of ritual significance, performed on a special occasion."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ceremony&oldid=1064081855"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Ceremony"@en ; + "A Social Act of ritual significance, performed on a special occasion."@en ; + "https://en.wikipedia.org/w/index.php?title=Ceremony&oldid=1064081855"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000456 -cco:ont00000456 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001326 ; - rdfs:label "Railway"@en ; - skos:definition "A Land Transportation Artifact that is designed to enable Trains to transport passengers and goods."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Railway"@en ; + "A Land Transportation Artifact that is designed to enable Trains to transport passengers and goods."@en ; + "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000457 -cco:ont00000457 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001084 ; - rdfs:label "Portion of Material"@en ; - skos:definition "A Portion of Processed Material that was produced to be used as the input for another Act of Artifact Processing."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Material"@en ; + "A Portion of Processed Material that was produced to be used as the input for another Act of Material Artifact Processing."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000458 -cco:ont00000458 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Coupling"@en ; - skos:definition "A Material Artifact that is designed to connect two Shafts together at their ends for the purpose of transmitting power."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Coupling&oldid=1055718683"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Coupling"@en ; + "A Material Artifact that is designed to connect two Shafts together at their ends for the purpose of transmitting power."@en ; + "https://en.wikipedia.org/w/index.php?title=Coupling&oldid=1055718683"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000459 -cco:ont00000459 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001126 ; - rdfs:label "Fluorescence"@en ; - skos:definition "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light while absorbing shorter wavelength radiation, but not after."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fluorescence&oldid=1061358510"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fluorescence"@en ; + "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light while absorbing shorter wavelength radiation, but not after."@en ; + "https://en.wikipedia.org/w/index.php?title=Fluorescence&oldid=1061358510"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000460 -cco:ont00000460 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001152 ; - rdfs:label "Local Administrative Region"@en ; - skos:altLabel "Locality"@en ; - skos:definition "A Government Domain that delimits a local Government."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000461 -cco:ont00000461 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000966 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002026 - ] ; - rdfs:label "Material Copy of a ISSN Barcode"@en ; - skos:altLabel "ISSN Barcode"@en ; - skos:definition "A Material Copy of an EAN Barcode that is used to designate periodicals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Local Administrative Region"@en ; + "Locality"@en ; + "A Government Domain that delimits a local Government."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000462 -cco:ont00000462 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000609 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000057 ; - owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom obo:BFO_0000034 - ] - ) ; - rdf:type owl:Class - ] - ] ; - rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the BFO 'occupies temporal region' property) that the Entity bears the Function."@en ; - rdfs:label "Gain of Function"@en ; - skos:definition "A Gain of Disposition in which some Independent Continuant becomes the bearer of some Function."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Function"@en ; + "A Gain of Disposition in which some Independent Continuant becomes the bearer of some Function."@en ; + "This class should be used to demarcate the start of the temporal interval (through the BFO 'occupies temporal region' property) that the Entity bears the Function."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000463 -cco:ont00000463 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001075 ; - rdfs:label "Act of Educational Training Instruction"@en ; - skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Educational Organization by imparting knowledge of a curriculum to an Agent either directly or indirectly through some communication medium."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Educational Training Instruction"@en ; + "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Educational Organization by imparting knowledge of a curriculum to an Agent either directly or indirectly through some communication medium."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000464 -cco:ont00000464 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Oblong"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having an long thin shape with approximately parallel sides."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Oblong"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having an long thin shape with approximately parallel sides."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000465 -cco:ont00000465 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000223 ; - rdfs:comment """A Day begins at midnight GMT within the Modified Julian Date reference system. The Modified Julian Date (MJD) is related to the Julian Date (JD) by the formula: + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Modified Julian Date"@en ; + "A Time of Day as specified according to the Julian Calendar using the Modified Julian Date epoch."@en ; + """A Day begins at midnight GMT within the Modified Julian Date reference system. The Modified Julian Date (MJD) is related to the Julian Date (JD) by the formula: MJD = JD - 2400000.5"""@en ; - rdfs:label "Modified Julian Date"@en ; - skos:definition "A Time of Day as specified according to the Julian Calendar using the Modified Julian Date epoch."@en ; - cco:ont00001753 "MJD" ; - cco:ont00001754 "http://aa.usno.navy.mil/data/docs/JulianDate.php" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + "MJD" ; + "http://aa.usno.navy.mil/data/docs/JulianDate.php" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000466 -cco:ont00000466 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Orientation Control Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by processes in which some Material Artifact is used to control the Orientation of some object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Orientation Control Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Material Artifact is used to control the Orientation of some object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000467 -cco:ont00000467 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000427 ; - rdfs:label "Armored Personnel Carrier"@en ; - skos:definition "An Armored Fighting Vehicle that is designed to transport infantry to the battlefield but which are not usually designed to take part in a direct-fire battle."@en ; - cco:ont00001753 "APC" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Armoured_personnel_carrier&oldid=1061608326"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Armored Personnel Carrier"@en ; + "An Armored Fighting Vehicle that is designed to transport infantry to the battlefield but which are not usually designed to take part in a direct-fire battle."@en ; + "APC" ; + "https://en.wikipedia.org/w/index.php?title=Armoured_personnel_carrier&oldid=1061608326"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000468 -cco:ont00000468 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001102 ; - rdfs:label "Office Building"@en ; - skos:definition "A Commercial Facility that is designed as an environment for conducting commercial, professional, or bureaucratic work."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Office&oldid=1063508719"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Office Building"@en ; + "A Commercial Facility that is designed as an environment for conducting commercial, professional, or bureaucratic work."@en ; + "https://en.wikipedia.org/w/index.php?title=Office&oldid=1063508719"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000469 -cco:ont00000469 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000275 ; - rdfs:label "Geospatial Coordinate Reference System"@en ; - skos:altLabel "Geographic Coordinate System"@en ; - skos:definition "A Spatial Reference System that is used to determine and identify the location of a point or object at or near the surface of the Earth."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Coordinate Reference System"@en ; + "Geographic Coordinate System"@en ; + "A Spatial Reference System that is used to determine and identify the location of a point or object at or near the surface of the Earth."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000470 -cco:ont00000470 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000189 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002003 - ] ; - rdfs:label "Material Copy of a Academic Degree"@en ; - skos:altLabel "Academic Degree"@en ; - skos:definition "A Material Copy of a Certificate that is issued by an Educational Organization to a Person to indicate that the Person has satisfactorily completed a course of study, or as an honorary recognition of the Person's achievement."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/degree" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Academic Degree"@en ; + "Academic Degree"@en ; + "A Material Copy of a Certificate that is issued by an Educational Organization to a Person to indicate that the Person has satisfactorily completed a course of study, or as an honorary recognition of the Person's achievement."@en ; + "http://www.dictionary.com/browse/degree" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000471 -cco:ont00000471 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001046 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002011 - ] ; - rdfs:label "Material Copy of a Warning Message"@en ; - skos:altLabel "Warning Message"@en ; - skos:definition "A Material Copy of a Notification Message that is designed to carry an Information Content Entity that describes a possible or impending threat."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Warning Message"@en ; + "Warning Message"@en ; + "A Material Copy of a Notification Message that is designed to carry an Information Content Entity that describes a possible or impending threat."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000472 -cco:ont00000472 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000029 ; - rdfs:label "Geospatial Region"@en ; - skos:definition "A Site that is at or near the surface of the Earth."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Region"@en ; + "A Site that is at or near the surface of the Earth."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000473 -cco:ont00000473 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001152 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00000134 - ] ; - rdfs:label "Fourth-Order Administrative Region"@en ; - skos:definition "A Government Domain that is a subdivision of a Third-Order Administrative Region."@en ; - cco:ont00001754 "http://www.geonames.org/export/codes.html" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Fourth-Order Administrative Region"@en ; + "A Government Domain that is a subdivision of a Third-Order Administrative Region."@en ; + "http://www.geonames.org/export/codes.html" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000474 -cco:ont00000474 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Curved"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having borders which are smoothly rounded."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Curved"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having borders which are smoothly rounded."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000475 -cco:ont00000475 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000537 ; - rdfs:label "Portion of Cash"@en ; - skos:definition "A Financial Instrument that is designed to be a ready medium of exchange."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Cash"@en ; + "A Financial Instrument that is designed to be a ready medium of exchange."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000476 -cco:ont00000476 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000965 ; - rdfs:label "Objective"@en ; - skos:definition "A Directive Information Content Entity that prescribes some projected state that some Agent intends to achieve."@en ; - cco:ont00001754 "http://en.wikipedia.org/wiki/Objective_(goal)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Objective"@en ; + "A Prescriptive Information Content Entity that prescribes some projected state that some Agent intends to achieve."@en ; + "http://en.wikipedia.org/wiki/Objective_(goal)" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000477 -cco:ont00000477 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001049 ; - rdfs:label "Fuel Cell"@en ; - skos:definition "An Electrical Power Source that consists in part of an anode, a cathode, and an electrolyte; converts chemical energy from a fuel into electricity through a chemical reaction of positively charged hydrogen ions with an oxidizing agent (typically oxygen); and, if given a continuous source of fuel and oxidizing agent, can continuously produce electricity."@en ; - skos:scopeNote "A Fuel Cell differs from a Battery in that it requires a continuous source of fuel and oxygen to sustain the chemical reaction, whereas a Battery only uses chemicals already stored inside it."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fuel_cell&oldid=1063586731"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel Cell"@en ; + "An Electrical Power Source that consists in part of an anode, a cathode, and an electrolyte; converts chemical energy from a fuel into electricity through a chemical reaction of positively charged hydrogen ions with an oxidizing agent (typically oxygen); and, if given a continuous source of fuel and oxidizing agent, can continuously produce electricity."@en ; + "A Fuel Cell differs from a Battery in that it requires a continuous source of fuel and oxygen to sustain the chemical reaction, whereas a Battery only uses chemicals already stored inside it."@en ; + "https://en.wikipedia.org/w/index.php?title=Fuel_cell&oldid=1063586731"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000478 -cco:ont00000478 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001360 ; - rdfs:label "Cuboidal"@en ; - skos:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having six Rectangular faces."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cuboidal"@en ; + "A Three Dimensional Shape that inheres in a bearer in virtue of it having six Rectangular faces."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000479 -cco:ont00000479 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Public Safety Facility"@en ; - skos:definition "A Facility that is designed for the prevention of and protection from events that could endanger, injure, or damage the general public."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Public Safety Facility"@en ; + "A Facility that is designed for the prevention of and protection from events that could endanger, injure, or damage the general public."@en ; + "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000480 -cco:ont00000480 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Life Support Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact materially affects an organism, where this causes that organism to continue living in a situation where death would otherwise occur."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Life Support Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact materially affects an organism, where this causes that organism to continue living in a situation where death would otherwise occur."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000481 -cco:ont00000481 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Research and Development Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes of producing new knowledge or of devising new applications of existing knowledge."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Research_and_development&oldid=1062181110"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Research and Development Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of producing new knowledge or of devising new applications of existing knowledge."@en ; + "https://en.wikipedia.org/w/index.php?title=Research_and_development&oldid=1062181110"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000482 -cco:ont00000482 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000289 ; - rdfs:label "Synthetic Aperture Radar Imaging Artifact Function"@en ; - skos:definition "A Radar Imaging Artifact Function that inheres in Material Artifacts that are designed to produce visual representations of entities using the motion of a radar antenna over a targeted region to create a synthetic aperture."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Synthetic Aperture Radar Imaging Artifact Function"@en ; + "A Radar Imaging Artifact Function that inheres in Material Artifacts that are designed to produce visual representations of entities using the motion of a radar antenna over a targeted region to create a synthetic aperture."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000483 -cco:ont00000483 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001052 ; - rdfs:label "Military Base"@en ; - skos:definition "A Military Facility that is designed to shelter military equipment and personnel and to facilitate training and operations."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military_base&oldid=1047077734"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Base"@en ; + "A Military Facility that is designed to shelter military equipment and personnel and to facilitate training and operations."@en ; + "https://en.wikipedia.org/w/index.php?title=Military_base&oldid=1047077734"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000484 -cco:ont00000484 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Concave Shape"@en ; - skos:definition "A Shape Quality that inheres in a bearer in virtue of the bearer having one or more cavities, such that at least one line connecting a pair of points on the surface of the bearer will lie outside."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Concave Shape"@en ; + "A Shape Quality that inheres in a bearer in virtue of the bearer having one or more cavities, such that at least one line connecting a pair of points on the surface of the bearer will lie outside."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000485 -cco:ont00000485 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Commercial Role"@en ; - skos:definition "A Role that inheres in an Organization by virtue of its establishment as a for-profit business."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Commercial Role"@en ; + "A Role that inheres in an Organization by virtue of its establishment as a for-profit business."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000486 -cco:ont00000486 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000392 ; - rdfs:label "Neutral Role"@en ; - skos:definition "An Allegiance Role that inheres in an Agent by virtue of that Agent not performing or being committed to performing Acts that have as their Objective to either support or undermine the Objectives of an Agent or Group of Agents involved in some conflict."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Neutral Role"@en ; + "An Allegiance Role that inheres in an Agent by virtue of that Agent not performing or being committed to performing Acts that have as their Objective to either support or undermine the Objectives of an Agent or Group of Agents involved in some conflict."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000487 -cco:ont00000487 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000472 - [ rdf:type owl:Class ; - owl:unionOf ( [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000124 ; - owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Class ; - owl:complementOf obo:BFO_0000006 - ] - ) ; - rdf:type owl:Class - ] - ] - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000183 ; - owl:someValuesFrom obo:BFO_0000015 - ] - ) - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000472 ; - rdfs:label "Geospatial Location"@en ; - skos:definition "A Geospatial Region that is the location of an Independent Continuant (that is not a Spatial Region) or that environs some Process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:unionOf ( [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Class ; + owl:complementOf + ] + ) ; + rdf:type owl:Class + ] + ] + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Geospatial Location"@en ; + "A Geospatial Region that is the location of an Independent Continuant (that is not a Spatial Region) or that environs some Process."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000488 -cco:ont00000488 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Tripod"@en ; - skos:definition "A Material Artifact that consists of three legs and a platform that joins them and which is designed to support the weight and maintain the stability of objects that are attached to or rested on the platform."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tripod&oldid=1063988190"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Tripod"@en ; + "A Material Artifact that consists of three legs and a platform that joins them and which is designed to support the weight and maintain the stability of objects that are attached to or rested on the platform."@en ; + "https://en.wikipedia.org/w/index.php?title=Tripod&oldid=1063988190"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000489 -cco:ont00000489 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000224 ; - rdfs:label "High Density Residential Area"@en ; - skos:definition "A Populated Place which is characterized by densely contained multiple-unit living structures."@en ; - cco:ont00001754 "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "High Density Residential Area"@en ; + "A Populated Place which is characterized by densely contained multiple-unit living structures."@en ; + "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000490 -cco:ont00000490 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000754 ; - rdfs:label "X-ray Frequency"@en ; - skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 30 petahertz and 30 exahertz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "X-ray Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 30 petahertz and 30 exahertz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000491 -cco:ont00000491 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Detonating Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes of combustion involving a supersonic exothermic front accelerating through a medium that eventually drives a shock front propagating directly in front of it."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Detonation&oldid=1061553336"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Detonating Artifact Function"@en ; + "An Artifact Function that is realized in processes of combustion involving a supersonic exothermic front accelerating through a medium that eventually drives a shock front propagating directly in front of it."@en ; + "https://en.wikipedia.org/w/index.php?title=Detonation&oldid=1061553336"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000492 -cco:ont00000492 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000517 ; - rdfs:label "Email Messaging"@en ; - skos:altLabel "Act of Emailing"@en ; - skos:definition "An Act of Communication by Media in which text-based communication occurs between two or more people using personal computers or other devices using some Email Client Software conveyed over the Internet."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Email Messaging"@en ; + "Act of Emailing"@en ; + "An Act of Communication by Media in which text-based communication occurs between two or more people using personal computers or other devices using some Email Client Software conveyed over the Internet."@en ; + "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000493 -cco:ont00000493 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000799 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002008 - ] ; - rdfs:label "Material Copy of a Code List"@en ; - skos:altLabel "Code List"@en ; - skos:definition "A Material Copy of a List that contains an ordered sequence of Information Bearing Entities that carry Code Identifiers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Code List"@en ; + "Code List"@en ; + "A Material Copy of a List that contains an ordered sequence of Information Bearing Entities that carry Code Identifiers."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000494 -cco:ont00000494 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Serrated"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having multiple sharp points along a edge."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Serrated"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having multiple sharp points along a edge."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000495 -cco:ont00000495 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000273 ; - rdfs:label "Radio Communication Interference Artifact Function"@en ; - skos:definition "A Communication Interference Artifact Function that is realized during events in which a Material Artifact is used to interfere with the transmission of information via radio waves."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Communication Interference Artifact Function"@en ; + "A Communication Interference Artifact Function that is realized during events in which a Material Artifact is used to interfere with the transmission of information via radio waves."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000496 -cco:ont00000496 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001175 ; - rdfs:label "Natural Language"@en ; - skos:definition "A Language that is developed and evolves through use and repetition, rather than through conscious planning or premeditation."@en ; - skos:example "English" , - "Mandarin (Chinese)" , - "Spanish" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Natural_language&oldid=1060890461"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Natural Language"@en ; + "A Language that is developed and evolves through use and repetition, rather than through conscious planning or premeditation."@en ; + "English" , + "Mandarin (Chinese)" , + "Spanish" ; + "https://en.wikipedia.org/w/index.php?title=Natural_language&oldid=1060890461"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000497 -cco:ont00000497 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Force"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of interactions in which the Motion or Velocity of an object is changed, unless the interaction is opposed."@en ; - skos:example "newton, dyne, pound force " ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Force"@en ; + "A Measurement Unit that is used as a standard for measurement of interactions in which the Motion or Velocity of an object is changed, unless the interaction is opposed."@en ; + "newton, dyne, pound force " ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000498 -cco:ont00000498 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000921 ; - rdfs:comment "A Julian Day begins at noon Universal Time and is twenty-four Hours in duration."@en ; - rdfs:label "Julian Day"@en ; - skos:definition "A Calendar Day in the Julian Calendar."@en ; - cco:ont00001754 "https://www.defit.org/julian-date/" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Julian Day"@en ; + "A Calendar Day in the Julian Calendar."@en ; + "A Julian Day begins at noon Universal Time and is twenty-four Hours in duration."@en ; + "https://www.defit.org/julian-date/" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000499 -cco:ont00000499 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001192 ; - rdfs:label "Wire Antenna"@en ; - skos:definition "A Radio Antenna that consists primarily of a length of wire."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wire Antenna"@en ; + "A Radio Antenna that consists primarily of a length of wire."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000500 -cco:ont00000500 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000084 ; - rdfs:label "Eye"@en ; - skos:definition "A Bodily Component that consists of an organ that canonically affords the Agent it is part of with the ability to receive visual stimuli necessary for sight."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Eye"@en ; + "A Bodily Component that consists of an organ that canonically affords the Agent it is part of with the ability to receive visual stimuli necessary for sight."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000501 -cco:ont00000501 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000836 ; - rdfs:label "Act of Financial Withdrawal"@en ; - skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent to another Agent (the Depositor) from an account created by an earlier Act of Financial Deposit performed by the Depositor."@en ; - cco:ont00001754 "http://en.wikipedia.org/wiki/Deposit_(bank)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Financial Withdrawal"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent to another Agent (the Depositor) from an account created by an earlier Act of Financial Deposit performed by the Depositor."@en ; + "http://en.wikipedia.org/wiki/Deposit_(bank)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000502 -cco:ont00000502 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Area Moment of Inertia"@en ; - skos:altLabel "Measurement Unit of Second Area Moment"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the distribution of Mass of an object with respect to an axis."@en ; - skos:scopeNote "A measure of an object’s resistance to bending or deflection."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Area Moment of Inertia"@en ; + "Measurement Unit of Second Area Moment"@en ; + "A Measurement Unit that is used as a standard for measurement of the distribution of Mass of an object with respect to an axis."@en ; + "A measure of an object’s resistance to bending or deflection."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000503 -cco:ont00000503 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000144 ; - rdfs:label "Power"@en ; - skos:definition "A Process Profile that is characterized by the rate of Work, or Energy consumed, done in a given time period."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power"@en ; + "A Process Profile that is characterized by the rate of Work, or Energy consumed, done in a given time period."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000504 -cco:ont00000504 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Optical Processing Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by a Material Artifact participating in a visible light processing event."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Processing Artifact Function"@en ; + "An Artifact Function that is realized by a Material Artifact participating in a visible light processing event."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000506 -cco:ont00000506 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Contractor Role"@en ; - skos:definition "A Role that inheres in an Agent or Group of Agents by virtue of that Agent or Group of Agents entering into a Contract to provide materials or labor to perform a service or complete a task."@en ; - skos:scopeNote "A Contractor Role differs from an Occupation Role in at least two ways. First, the Contract that binds the two parties together is not one of employment. Second, a Contractor Role is occupationally neutral in that an Agent can be contracted to perform any number of Occupational Roles."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Contractor Role"@en ; + "A Role that inheres in an Agent or Group of Agents by virtue of that Agent or Group of Agents entering into a Contract to provide materials or labor to perform a service or complete a task."@en ; + "A Contractor Role differs from an Occupation Role in at least two ways. First, the Contract that binds the two parties together is not one of employment. Second, a Contractor Role is occupationally neutral in that an Agent can be contracted to perform any number of Occupational Roles."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000507 -cco:ont00000507 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000914 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001907 ; - owl:someValuesFrom cco:ont00000780 - ] ; - rdfs:label "Ethnic Group"@en ; - skos:definition "A Group of Persons who identify with one another based on one or more shared inherited characteristics such as language, ancestry, nationality, culture, customs, religion, or social experiences."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Ethnic Group"@en ; + "A Group of Persons who identify with one another based on one or more shared inherited characteristics such as language, ancestry, nationality, culture, customs, religion, or social experiences."@en ; + "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000508 -cco:ont00000508 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000610 ; - rdfs:label "Near Ultraviolet Light Frequency"@en ; - skos:definition "An Ultraviolet Light Frequency that is between 750 terahertz and 3 petahertz."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Near Ultraviolet Light Frequency"@en ; + "An Ultraviolet Light Frequency that is between 750 terahertz and 3 petahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000509 -cco:ont00000509 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001180 ; - rdfs:label "Service Provider"@en ; - skos:definition "An Organization whose purpose is to provide a service to other Agents."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Service_provider&oldid=1059415018"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Service Provider"@en ; + "An Organization whose purpose is to provide a service to other Agents."@en ; + "https://en.wikipedia.org/w/index.php?title=Service_provider&oldid=1059415018"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000510 -cco:ont00000510 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000052 ; - rdfs:label "Mosque"@en ; - skos:definition "A Religious Facility that is designed for Islamic worship and prayer."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mosque&oldid=1062609892"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mosque"@en ; + "A Religious Facility that is designed for Islamic worship and prayer."@en ; + "https://en.wikipedia.org/w/index.php?title=Mosque&oldid=1062609892"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000511 -cco:ont00000511 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Planning"@en ; - skos:definition "A Planned Act that involves making a Plan to achieve some specified Objective."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Planning"@en ; + "A Planned Act that involves making a Plan to achieve some specified Objective."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000512 -cco:ont00000512 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000628 ; - rdfs:label "Radiation Emissivity"@en ; - skos:definition "A Disposition to Interact with Electromagnetic Radiation that inheres in a bearer in virtue of the capacity of that bearer to emit electromagnetic radiation of a given frequency."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiation Emissivity"@en ; + "A Disposition to Interact with Electromagnetic Radiation that inheres in a bearer in virtue of the capacity of that bearer to emit electromagnetic radiation of a given frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000513 -cco:ont00000513 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000566 ; - rdfs:label "Act of Tool Use"@en ; - skos:definition "An Act of Artifact Employment in which some Agent uses some Tool."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Tool Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Tool."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000514 -cco:ont00000514 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000752 ; - rdfs:label "Transverse Wave Profile"@en ; - skos:altLabel "Transverse Wave"@en ; - skos:definition "A Wave Process Profile in which the displacement of participating particles is perpendicular to the direction of the Wave Process' propogation."@en ; - cco:ont00001754 "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transverse Wave Profile"@en ; + "Transverse Wave"@en ; + "A Wave Process Profile in which the displacement of participating particles is perpendicular to the direction of the Wave Process' propogation."@en ; + "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000515 -cco:ont00000515 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000566 ; - rdfs:label "Act of Vehicle Use"@en ; - skos:definition "An Act of Artifact Employment in which some Agent uses some Vehicle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Vehicle Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Vehicle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000516 -cco:ont00000516 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000288 ; - rdfs:label "Pneumatic Power Source"@en ; - skos:definition "A Power Source that is designed to generate, control, or transmit power by means of compressed air or compressed inert gases."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pneumatic Power Source"@en ; + "A Power Source that is designed to generate, control, or transmit power by means of compressed air or compressed inert gases."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000517 -cco:ont00000517 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000402 ; - rdfs:label "Act of Communication by Media"@en ; - skos:definition "An Act of Communication in which some Material Artifact is used to transfer an Information Bearing Entity from sender(s) to receiver(s)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Communication by Media"@en ; + "An Act of Communication in which some Material Artifact is used to transfer an Information Bearing Entity from sender(s) to receiver(s)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000518 -cco:ont00000518 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Currency"@en ; - skos:definition "A Measurement Unit used in measurements of financial values."@en ; - skos:example "U.S. Dollar, Euro, Yuan, South African Rand" ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Currency"@en ; + "A Measurement Unit used in measurements of financial values."@en ; + "U.S. Dollar, Euro, Yuan, South African Rand" ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000519 -cco:ont00000519 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000732 ; - rdfs:comment "The corresponding Wavelength range is 10–1 mm"@en ; - rdfs:label "Extremely High Frequency"@en ; - skos:altLabel "ITU Band Number 11"@en , - "Millimeter Band Frequency"@en ; - skos:definition "A Microwave Frequency that is between 30 and 300 GHz."@en ; - cco:ont00001753 "EHF" ; - cco:ont00001754 "International Telecommunication Union (ITU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Extremely High Frequency"@en ; + "ITU Band Number 11"@en , + "Millimeter Band Frequency"@en ; + "A Microwave Frequency that is between 30 and 300 GHz."@en ; + "The corresponding Wavelength range is 10–1 mm"@en ; + "EHF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000520 -cco:ont00000520 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000065 ; - rdfs:label "Act of Departure"@en ; - skos:definition "An Act of Location Change that consists of the participating entity leaving its starting location such that the larger Act of Location Change is initiated."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Departure"@en ; + "An Act of Location Change that consists of the participating entity leaving its starting location such that the larger Act of Location Change is initiated."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000521 -cco:ont00000521 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001272 ; - rdfs:label "Act of Assassination"@en ; - skos:definition "An Act of Murder of a prominent person."@en ; - cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Assassination"@en ; + "An Act of Murder of a prominent person."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000522 -cco:ont00000522 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000294 ; - rdfs:label "Pulsejet Engine"@en ; - skos:altLabel "Pulse Jet"@en , - "Pulsejet"@en ; - skos:definition "An Air-Breathing Jet Engine that is capable of operating statically and uses intermittent (pulsing) Combustion of the fuel-oxidizer mixture before expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pulsejet&oldid=1050473545"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pulsejet Engine"@en ; + "Pulse Jet"@en , + "Pulsejet"@en ; + "An Air-Breathing Jet Engine that is capable of operating statically and uses intermittent (pulsing) Combustion of the fuel-oxidizer mixture before expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + "https://en.wikipedia.org/w/index.php?title=Pulsejet&oldid=1050473545"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000523 -cco:ont00000523 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000862 ; - rdfs:label "Loudness"@en ; - skos:definition "A Sound Process Profile that is characterized by the amplitude and total energy of translated sound waves, typically on a continuum from soft to loud."@en ; - cco:ont00001754 "https://byjus.com/physics/loudness-of-sound/"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loudness"@en ; + "A Sound Process Profile that is characterized by the amplitude and total energy of translated sound waves, typically on a continuum from soft to loud."@en ; + "https://byjus.com/physics/loudness-of-sound/"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000524 -cco:ont00000524 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000350 ; - rdfs:label "Air Conditioning Unit"@en ; - skos:altLabel "AC Unit"@en ; - skos:definition "A Cooling System that is designed to remove excess heat and humidity from the air in an enclosed space."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Air_conditioning&oldid=1063494896"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Air Conditioning Unit"@en ; + "AC Unit"@en ; + "A Cooling System that is designed to remove excess heat and humidity from the air in an enclosed space."@en ; + "https://en.wikipedia.org/w/index.php?title=Air_conditioning&oldid=1063494896"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000525 -cco:ont00000525 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001384 ; - rdfs:label "Transparent"@en ; - skos:definition "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit all or nearly all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs little or no electromagnetic radiation of that frequency."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transparent"@en ; + "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit all or nearly all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs little or no electromagnetic radiation of that frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000526 -cco:ont00000526 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000547 ; - rdfs:label "Gamma-ray Telescope"@en ; - skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Gamma-rays to form an enhanced image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gamma-ray Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Gamma-rays to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000527 -cco:ont00000527 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Rotational Inertia"@en ; - skos:altLabel "Measurement Unit of Moment of Inertia"@en , - "Measurement Unit of Rotational Mass"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the distribution of Mass of an object with respect to its axis of rotation."@en ; - skos:scopeNote "A measure of an object’s resistance to change in its state of rotation."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Rotational Inertia"@en ; + "Measurement Unit of Moment of Inertia"@en , + "Measurement Unit of Rotational Mass"@en ; + "A Measurement Unit that is used as a standard for measurement of the distribution of Mass of an object with respect to its axis of rotation."@en ; + "A measure of an object’s resistance to change in its state of rotation."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000528 -cco:ont00000528 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "White"@en ; - skos:definition "A Color of maximum brightness, the color of objects that reflect nearly all wavelengths of the visible light spectrum, thus considered achromatic."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "White"@en ; + "A Color of maximum brightness, the color of objects that reflect nearly all wavelengths of the visible light spectrum, thus considered achromatic."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000529 -cco:ont00000529 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000073 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom cco:ont00000800 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000073 ; - rdfs:label "Date Identifier"@en ; - skos:altLabel "Day Identifier"@en ; - skos:definition "A Temporal Interval Identifier that designates some Day."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Date Identifier"@en ; + "Day Identifier"@en ; + "A Temporal Interval Identifier that designates some Day."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000530 -cco:ont00000530 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000008 ; - rdfs:comment "Sound waves with frequencies in this range are typically audible to humans."@en ; - rdfs:label "Sonic Frequency"@en ; - skos:altLabel "Audible Frequency"@en ; - skos:definition "A Sound Frequency that is between 20 Hz and 20 kHz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sonic Frequency"@en ; + "Audible Frequency"@en ; + "A Sound Frequency that is between 20 Hz and 20 kHz."@en ; + "Sound waves with frequencies in this range are typically audible to humans."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000531 -cco:ont00000531 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Communications Facility"@en ; - skos:definition "A Facility that is designed to support processes of receiving or transmitting information."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communications Facility"@en ; + "A Facility that is designed to support processes of receiving or transmitting information."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000532 -cco:ont00000532 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001335 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001859 ; - owl:someValuesFrom cco:ont00000139 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001335 ; - dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; - dcterms:created "2023-02-08T19:54:46-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "Government of a Country"@en ; - skos:definition "A Government that has legitimate authority within and is delimited by a Domain of a Country."@en ; - skos:prefLabel "Government of a Country"@en ; - cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + "2023-02-08T19:54:46-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Government of a Country"@en ; + "A Government that has legitimate authority within and is delimited by a Domain of a Country."@en ; + "Government of a Country"@en ; + "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000533 -cco:ont00000533 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000056 ; - rdfs:comment "Some (most) jet engines utilize turbines, but some do not. Most rocket engines do not utilize turbines, but some do."@en ; - rdfs:label "Jet Engine"@en ; - skos:definition "A Reaction Engine that discharges a fast moving jet that generates Thrust by jet propulsion."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Jet_engine&oldid=1060157063"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Jet Engine"@en ; + "A Reaction Engine that discharges a fast moving jet that generates Thrust by jet propulsion."@en ; + "Some (most) jet engines utilize turbines, but some do not. Most rocket engines do not utilize turbines, but some do."@en ; + "https://en.wikipedia.org/w/index.php?title=Jet_engine&oldid=1060157063"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000534 -cco:ont00000534 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001153 ; - rdfs:label "Cutting Artifact Function"@en ; - skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired by being opened or divided."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/cutting" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cutting Artifact Function"@en ; + "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired by being opened or divided."@en ; + "http://www.dictionary.com/browse/cutting" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000535 -cco:ont00000535 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000290 ; - rdfs:label "Decrease of Quality"@en ; - skos:definition "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Quality that it bears."@en ; - skos:example "Weight Loss, Decreasing Temperature, decreasing color intensity, loss of structural integrity" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Quality"@en ; + "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Quality that it bears."@en ; + "Weight Loss, Decreasing Temperature, decreasing color intensity, loss of structural integrity" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000536 -cco:ont00000536 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001159 ; - rdfs:label "Bond Certificate"@en ; - skos:definition "A Bond that consists of a Certificate."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bond Certificate"@en ; + "A Bond that consists of a Certificate."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000537 -cco:ont00000537 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Financial Instrument"@en ; - skos:definition "A Material Artifact that is designed to be a tradeable asset and that is legally sanctioned."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Financial Instrument"@en ; + "A Material Artifact that is designed to be a tradeable asset and that is legally sanctioned."@en ; + "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000538 -cco:ont00000538 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000831 ; - rdfs:label "Defoliant Artifact Function"@en ; - skos:definition "An Herbicide Artifact Function that is realized in a process that causes a plant to lose its leaves."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Defoliant&oldid=1059494225"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Defoliant Artifact Function"@en ; + "An Herbicide Artifact Function that is realized in a process that causes a plant to lose its leaves."@en ; + "https://en.wikipedia.org/w/index.php?title=Defoliant&oldid=1059494225"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000539 -cco:ont00000539 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001022 ; - rdfs:label "Count Measurement Information Content Entity"@en ; - skos:definition "A Ratio Measurement Information Content Entity that is a measurement of the number of members of some aggregate."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Count Measurement Information Content Entity"@en ; + "A Ratio Measurement Information Content Entity that is a measurement of the number of members of some aggregate."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000540 -cco:ont00000540 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000399 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom obo:BFO_0000203 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000399 ; - rdfs:label "Temporal Instant Identifier"@en ; - skos:altLabel "Zero-Dimensional Temporal Region Identifier"@en ; - skos:definition "A Temporal Region Identifier that designates some Temporal Instant."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Temporal Instant Identifier"@en ; + "Zero-Dimensional Temporal Region Identifier"@en ; + "A Temporal Region Identifier that designates some Temporal Instant."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000541 -cco:ont00000541 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001367 ; - rdfs:label "Diameter"@en ; - skos:definition "A One Dimensional Extent that inheres in a circle in virtue of the extent of a straight line that passes through the center of the circle and starts and ends on the circle's boundary."@en ; - cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Diameter"@en ; + "A One Dimensional Extent that inheres in a circle in virtue of the extent of a straight line that passes through the center of the circle and starts and ends on the circle's boundary."@en ; + "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000542 -cco:ont00000542 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000876 ; - rdfs:label "Loss of Generically Dependent Continuant"@en ; - skos:definition "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the carrier of some Generically Dependent Continuant."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Generically Dependent Continuant"@en ; + "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the carrier of some Generically Dependent Continuant."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000543 -cco:ont00000543 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000854 ; - rdfs:label "Decrease of Disposition"@en ; - skos:definition "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Disposition it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Disposition"@en ; + "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Disposition it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000544 -cco:ont00000544 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001936 ; - owl:someValuesFrom cco:ont00000741 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf obo:BFO_0000040 ; - rdfs:comment "Although people speak of targeting a process, say, a parade, what in fact are being targeted are the material participants of that process. The disruption or ceasing of the process is the objective of some plan, but not technically a target. Only material things can be targeted for action. Even if some dependent entity is described as being the target, the material thing for which that dependent entity depends is the object of a targeting process."@en ; - rdfs:label "Target"@en ; - skos:definition "A Material Entity that is the object of an Act of Targeting."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Target"@en ; + "A Material Entity that is the object of an Act of Targeting."@en ; + "Although people speak of targeting a process, say, a parade, what in fact are being targeted are the material participants of that process. The disruption or ceasing of the process is the objective of some plan, but not technically a target. Only material things can be targeted for action. Even if some dependent entity is described as being the target, the material thing for which that dependent entity depends is the object of a targeting process."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000545 -cco:ont00000545 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000946 ; - rdfs:label "Seat of Local Government"@en ; - skos:altLabel "City Hall"@en , - "Town Hall"@en ; - skos:definition "A Government Building that is designed for the administration of a local community."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Seat of Local Government"@en ; + "City Hall"@en , + "Town Hall"@en ; + "A Government Building that is designed for the administration of a local community."@en ; + "https://en.wikipedia.org/w/index.php?title=Seat_of_government&oldid=1063047501"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000546 -cco:ont00000546 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000005 ; - rdfs:label "Unplanned Act"@en ; - skos:altLabel "Unintentional Act"@en ; - skos:definition "An Act in which at least one Agent plays a causative role and which is not prescribed by some Objective held by any of the Agents."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Unplanned Act"@en ; + "Unintentional Act"@en ; + "An Act in which at least one Agent plays a causative role and which is not prescribed by some Objective held by any of the Agents."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000547 -cco:ont00000547 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000771 ; - rdfs:label "Telescope"@en ; - skos:definition "An Imaging Instrument that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Electromagnetic Radiation to form an enhanced image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telescope"@en ; + "An Imaging Instrument that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Electromagnetic Radiation to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Telescope&oldid=1057722342"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000548 -cco:ont00000548 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000997 ; - dcterms:bibliographicCitation "Vulnerability | Definition of Vulnerability by Oxford Dictionary on Lexico.Com Also Meaning of Vulnerability. https://web.archive.org/web/20210118111731/https://www.lexico.com/en/definition/vulnerability. Accessed 19 Dec. 2022. " ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "Vulnerability"@en ; - skos:definition "A Disrupting Disposition the realization of which would disrupt a process that the bearer of the Disrupting Disposition has an interest in."@en ; - skos:editorialNote "This is defined class. A Vulnerability is indexed by the interest_in object property. A disposition can be a Vulnerability according to one index and not a Vulnerability according to another index." ; - skos:prefLabel "Vulnerability"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + "Vulnerability | Definition of Vulnerability by Oxford Dictionary on Lexico.Com Also Meaning of Vulnerability. https://web.archive.org/web/20210118111731/https://www.lexico.com/en/definition/vulnerability. Accessed 19 Dec. 2022. " ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Vulnerability"@en ; + "A Disrupting Disposition the realization of which would disrupt a process that the bearer of the Disrupting Disposition has an interest in."@en ; + "This is defined class. A Vulnerability is indexed by the interest_in object property. A disposition can be a Vulnerability according to one index and not a Vulnerability according to another index." ; + "Vulnerability"@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000549 -cco:ont00000549 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000254 ; - rdfs:label "Water Transportation Artifact"@en ; - skos:definition "A Transportation Artifact that facilitates the movement of Agents and Vehicles via water."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Water Transportation Artifact"@en ; + "A Transportation Artifact that facilitates the movement of Agents and Vehicles via water."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000550 -cco:ont00000550 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 ; - rdfs:label "Morning"@en ; - skos:definition "A Temporal Interval that consists of the temporal regions between when the sun dawns (approximately 6:00am) and reaches its apex (approximately 12:00pm)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Morning"@en ; + "A Temporal Interval that consists of the temporal regions between when the sun dawns (approximately 6:00am) and reaches its apex (approximately 12:00pm)."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000551 -cco:ont00000551 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000030 ; - rdfs:label "Organism"@en ; - skos:definition "An Object that is an Animal or Plant."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Organism"@en ; + "An Object that is an Animal or Plant."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000552 -cco:ont00000552 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000445 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000841 - ] ; - rdfs:label "Explosive Weapon"@en ; - skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of a violent release of energy caused by the exothermic reaction of an explosive material."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Explosive_weapon&oldid=1062481268"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Explosive Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of a violent release of energy caused by the exothermic reaction of an explosive material."@en ; + "https://en.wikipedia.org/w/index.php?title=Explosive_weapon&oldid=1062481268"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000553 -cco:ont00000553 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001324 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001800 ; - owl:someValuesFrom obo:BFO_0000015 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001324 ; - rdfs:label "Process Prohibition"@en ; - skos:definition "A Process Regulation that prohibits some Process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Process Prohibition"@en ; + "A Process Regulation that prohibits some Process."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000554 -cco:ont00000554 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000004 ; - rdfs:label "Gain of Dependent Continuant"@en ; - skos:definition "A Change in which an Independent Continuant becomes the bearer or carrier of some Dependent Continuant."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gain of Dependent Continuant"@en ; + "A Change in which an Independent Continuant becomes the bearer or carrier of some Dependent Continuant."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000555 -cco:ont00000555 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000135 ; - rdfs:label "Enhanced Stasis"@en ; - skos:altLabel "Enhanced"@en ; - skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has undergone improvement (i.e., an increase or gain) due to a previous action or event such that the Independent Continuant is now of greater value, usefulness, or functionality."@en ; - cco:ont00001754 "http://www.thefreedictionary.com/enhance" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Enhanced Stasis"@en ; + "Enhanced"@en ; + "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has undergone improvement (i.e., an increase or gain) due to a previous action or event such that the Independent Continuant is now of greater value, usefulness, or functionality."@en ; + "http://www.thefreedictionary.com/enhance" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000556 -cco:ont00000556 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000040 ; - rdfs:comment "Depending on the nature of the Flight or Mission, the Payload of a Vehicle may include cargo, passengers, flight crew, munitions, scientific instruments or experiments, or other equipment. Extra fuel, when optionally carried, is also considered part of the payload."@en ; - rdfs:label "Payload"@en ; - skos:definition "A Material Entity that is transported by a Vehicle during an Act of Location Change for the purpose of being delivered to or performing one or more functions at a predefined location."@en ; - skos:scopeNote "In each case, the Payload is what provides the immediate reason for performing the Act of Location Change (e.g. transporting the passengers of a commercial airline flight to their destination; transporting food, fuel, oxygen, research equipment, and spare parts to the International Space Station; or conveying an array of sensors, cameras, and communications systems so they can operate during a Sun-Synchronous Earth Orbit)."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Payload"@en ; + "A Material Entity that is transported by a Vehicle during an Act of Location Change for the purpose of being delivered to or performing one or more functions at a predefined location."@en ; + "Depending on the nature of the Flight or Mission, the Payload of a Vehicle may include cargo, passengers, flight crew, munitions, scientific instruments or experiments, or other equipment. Extra fuel, when optionally carried, is also considered part of the payload."@en , + "In each case, the Payload is what provides the immediate reason for performing the Act of Location Change (e.g. transporting the passengers of a commercial airline flight to their destination; transporting food, fuel, oxygen, research equipment, and spare parts to the International Space Station; or conveying an array of sensors, cameras, and communications systems so they can operate during a Sun-Synchronous Earth Orbit)."@en ; + "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000557 -cco:ont00000557 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001132 ; - rdfs:label "Stasis of Non-Mission Capable"@en ; - skos:definition "A Stasis of Mission Capability during which the participating Continuant is not capable of performing any of its primary functions for the specified Mission."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Non-Mission Capable"@en ; + "A Stasis of Mission Capability during which the participating Continuant is not capable of performing any of its primary functions for the specified Mission."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000558 -cco:ont00000558 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000099 ; - rdfs:label "Visible Light Reflection Process"@en ; - skos:definition "A Wave Process in which an Electromagnetic Wave with a Visible Light Frequency is reflected off a portion of matter."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000559 -cco:ont00000559 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000241 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002018 - ] ; - rdfs:label "Material Copy of a QR Code"@en ; - skos:altLabel "QR Code"@en ; - skos:definition "A Material Copy of a Two-Dimensional Barcode that consists of numeric, alphanumeric, binary, or kanji information and is used primarily for tracking and marketing."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Visible Light Reflection Process"@en ; + "A Wave Process in which an Electromagnetic Wave with a Visible Light Frequency is reflected off a portion of matter."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000560 -cco:ont00000560 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001360 ; - rdfs:label "Cone Shape"@en ; - skos:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having a Round base that tapers smoothly to an apex."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cone&oldid=1058362269"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cone Shape"@en ; + "A Three Dimensional Shape that inheres in a bearer in virtue of it having a Round base that tapers smoothly to an apex."@en ; + "https://en.wikipedia.org/w/index.php?title=Cone&oldid=1058362269"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000561 -cco:ont00000561 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Dam"@en ; - skos:definition "A Material Artifact that is designed to impound surface water or underground streams."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Dam&oldid=1053601756" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Dam"@en ; + "A Material Artifact that is designed to impound surface water or underground streams."@en ; + "https://en.wikipedia.org/w/index.php?title=Dam&oldid=1053601756" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000562 -cco:ont00000562 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000551 ; - rdfs:label "Animal"@en ; - skos:definition "An Organism that is multicellular, eukaryotic, heterotrophic, and capable of motility for part of its life."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Animal&oldid=1063873549"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Animal"@en ; + "An Organism that is multicellular, eukaryotic, heterotrophic, and capable of motility for part of its life."@en ; + "https://en.wikipedia.org/w/index.php?title=Animal&oldid=1063873549"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000563 -cco:ont00000563 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001081 ; - rdfs:label "Hydrographic Feature"@en ; - skos:definition "A Geographic Feature associated with water."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydrographic Feature"@en ; + "A Geographic Feature associated with water."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000564 -cco:ont00000564 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001180 ; - rdfs:label "Educational Organization"@en ; - skos:definition "An Organization whose primary purpose is to provide training or otherwise facilitate learning or the acquisition of knowledge, Skills, values, beliefs, or habits."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Educational Organization"@en ; + "An Organization whose primary purpose is to provide training or otherwise facilitate learning or the acquisition of knowledge, Skills, values, beliefs, or habits."@en ; + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000565 -cco:ont00000565 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000478 ; - rdfs:label "Cube Shape"@en ; - skos:definition "A Cuboidal shape inhering in a bearer in virtue of it having six Square faces."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cube Shape"@en ; + "A Cuboidal shape inhering in a bearer in virtue of it having six Square faces."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000566 -cco:ont00000566 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Artifact Employment"@en ; - skos:definition "A Planned Act of using a Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Artifact Employment"@en ; + "A Planned Act of using a Material Artifact."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000567 -cco:ont00000567 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000487 ; - rdfs:comment "This is a general term that applies to both military and civilian activities, such as the Geospatial Region within which a company conducts its business."@en ; - rdfs:label "Operational Area"@en ; - skos:definition "A Geospatial Location in which an Agent conducts some activity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Operational Area"@en ; + "A Geospatial Location in which an Agent conducts some activity."@en ; + "This is a general term that applies to both military and civilian activities, such as the Geospatial Region within which a company conducts its business."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000568 -cco:ont00000568 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001379 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001889 ; - owl:someValuesFrom cco:ont00001180 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001379 ; - rdfs:label "Organization Capability"@en ; - skos:definition "An Agent Capability that inheres in an Organization to the extent of that Organization's capacity to realize it in Intentional Acts of a certain type."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Organization Capability"@en ; + "An Agent Capability that inheres in an Organization to the extent of that Organization's capacity to realize it in Intentional Acts of a certain type."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000569 -cco:ont00000569 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000736 ; - rdfs:label "Sensor"@en ; - skos:definition "A Transducer that is designed to convert incoming energy into a output signal which reliably corresponds to changes in that energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Sensor"@en ; + "A Material Entity that bears a Sensor Function or Sensor Role."@en ; + "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000570 -cco:ont00000570 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000144 ; - rdfs:label "Force"@en ; - skos:definition "A Process Profile that is the rate of change of an object's Momentum, is the product of an object's Mass and Acceleration with respect to an inertial frame of reference, and is measured in units of Newtons (N)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Force"@en ; + "A Process Profile that is the rate of change of an object's Momentum, is the product of an object's Mass and Acceleration with respect to an inertial frame of reference, and is measured in units of Newtons (N)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000571 -cco:ont00000571 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000980 ; - rdfs:label "Article of Solid Waste"@en ; - skos:definition "A Portion of Waste Material that has a low liquid content."@en ; - cco:ont00001754 "https://stats.oecd.org/glossary/detail.asp?ID=2508" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Article of Solid Waste"@en ; + "A Portion of Waste Material that has a low liquid content."@en ; + "https://stats.oecd.org/glossary/detail.asp?ID=2508" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000572 -cco:ont00000572 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000765 ; - rdfs:label "Sound Production"@en ; - skos:altLabel "Sound Production Process"@en ; - skos:definition "A Wave Production Process that produces a Sound Wave."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sound Production"@en ; + "Sound Production Process"@en ; + "A Wave Production Process that produces a Sound Wave."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000573 -cco:ont00000573 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000687 ; - rdfs:label "Act of Religious Training Acquisition"@en ; - skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tenets and/or practices of a religion from an Agent or communication medium that realizes a capacity derived from its affiliation with a Religious Organization."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Religious Training Acquisition"@en ; + "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tenets and/or practices of a religion from an Agent or communication medium that realizes a capacity derived from its affiliation with a Religious Organization."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000574 -cco:ont00000574 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000040 ; - rdfs:label "Environmental Feature"@en ; - skos:definition "A Material Entity that is either a natural or man-made feature of the environment."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Environmental Feature"@en ; + "A Material Entity that is either a natural or man-made feature of the environment."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000575 -cco:ont00000575 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000965 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001942 ; - owl:someValuesFrom obo:BFO_0000019 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000965 ; - rdfs:label "Quality Specification"@en ; - skos:definition "A Directive Information Content Entity that prescribes some Quality."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Quality Specification"@en ; + "A Prescriptive Information Content Entity that prescribes some Quality."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000576 -cco:ont00000576 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000084 ; - rdfs:label "Scalp"@en ; - skos:definition "A Bodily Component that consists of the skin covering the top of the head of a human or other animal."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Scalp"@en ; + "A Bodily Component that consists of the skin covering the top of the head of a human or other animal."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000577 -cco:ont00000577 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Power Rectifier"@en ; - skos:definition "A Material Artifact that is designed to convert alternating current (AC) to direct current (DC)."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rectifier&oldid=1049943028"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Rectifier"@en ; + "A Material Artifact that is designed to convert alternating current (AC) to direct current (DC)."@en ; + "https://en.wikipedia.org/w/index.php?title=Rectifier&oldid=1049943028"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000578 -cco:ont00000578 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Sloped"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border which is not level."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sloped"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border which is not level."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000579 -cco:ont00000579 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Thin"@en ; - skos:altLabel "Narrow"@en , - "Slender"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly smaller in proportion to its length or height."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thin"@en ; + "Narrow"@en , + "Slender"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly smaller in proportion to its length or height."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000580 -cco:ont00000580 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001286 ; - rdfs:label "Sine Waveform"@en ; - skos:altLabel "Sinusoidal Waveform"@en ; - skos:definition "A Waveform that is characterized by a smooth curved shape due to the continuous non-linear transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sine Waveform"@en ; + "Sinusoidal Waveform"@en ; + "A Waveform that is characterized by a smooth curved shape due to the continuous non-linear transitions between minimum and maximum Amplitudes of the Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000581 -cco:ont00000581 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Tool"@en ; - skos:definition "A Material Artifact that is designed to assist in the performance of manual or mechanical work and not to be consumed in that process."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tool&oldid=1061967184"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000582 -cco:ont00000582 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000258 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002022 - ] ; - rdfs:label "Material Copy of a Code 93 Barcode"@en ; - skos:altLabel "Code 93 Barcode"@en ; - skos:definition "A Material Copy of a One-Dimensional Barcode that consists of up to 93 ASCII characters and is used in logistics to identify packages in retail inventory, lable electornic components, and provide supplementary delivery information."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Tool"@en ; + "A Material Artifact that is designed to assist in the performance of manual or mechanical work and not to be consumed in that process."@en ; + "https://en.wikipedia.org/w/index.php?title=Tool&oldid=1061967184"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000583 -cco:ont00000583 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000180 ; - rdfs:label "Motel"@en ; - skos:definition "A Hotel that is designed to accommodate motor vehicles along with their occupants."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Motel&oldid=1063898961"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motel"@en ; + "A Hotel that is designed to accommodate motor vehicles along with their occupants."@en ; + "https://en.wikipedia.org/w/index.php?title=Motel&oldid=1063898961"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000584 -cco:ont00000584 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000357 ; - rdfs:comment "An Act of Position Change does not entail a change of location."@en ; - rdfs:label "Act of Position Change"@en ; - skos:definition "An Act of Motion in which the position (i.e. the orientation, alignment, or arrangement) of some Object or of one or more of an Object's parts is changed by some Agent."@en ; - skos:example "a top spinning in place" , - "adjusting your posture" , - "raising your left arm" , - "swivelling your office chair to face the window" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Position Change"@en ; + "An Act of Motion in which the position (i.e. the orientation, alignment, or arrangement) of some Object or of one or more of an Object's parts is changed by some Agent."@en ; + "a top spinning in place" , + "adjusting your posture" , + "raising your left arm" , + "swivelling your office chair to face the window" ; + "An Act of Position Change does not entail a change of location."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000585 -cco:ont00000585 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001286 ; - rdfs:label "Sawtooth Waveform"@en ; - skos:definition "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from minimum to maximum Amplitudes followed by a near-instantaneous transition from the maximum to minimum Amplitudes of the Wave Cycle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sawtooth Waveform"@en ; + "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from minimum to maximum Amplitudes followed by a near-instantaneous transition from the maximum to minimum Amplitudes of the Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000586 -cco:ont00000586 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000238 ; - rdfs:label "Controllable Pitch Propeller"@en ; - skos:altLabel "Variable-Pitch Propeller"@en ; - skos:definition "A Propeller whose blades are designed to be alterable by rotating the blades about their vertical axis by means of mechanical or hydraulic arrangement."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Variable-pitch_propeller&oldid=1041375492"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Controllable Pitch Propeller"@en ; + "Variable-Pitch Propeller"@en ; + "A Propeller whose blades are designed to be alterable by rotating the blades about their vertical axis by means of mechanical or hydraulic arrangement."@en ; + "https://en.wikipedia.org/w/index.php?title=Variable-pitch_propeller&oldid=1041375492"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000587 -cco:ont00000587 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000392 ; - rdfs:label "Ally Role"@en ; - skos:definition "An Allegiance Role that inheres in an Agent in virtue of that Agent's commitment to perform Acts that support the Objectives of a particular Agent or Group of Agents."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ally Role"@en ; + "An Allegiance Role that inheres in an Agent in virtue of that Agent's commitment to perform Acts that support the Objectives of a particular Agent or Group of Agents."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000588 -cco:ont00000588 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000402 ; - rdfs:label "Act of Mass Media Communication"@en ; - skos:definition "An Act of Communication intended to reach a large audience using a medium such as the internet, television, radio, newspaper, and magazine."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Media&oldid=1062799283"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Mass Media Communication"@en ; + "An Act of Communication intended to reach a large audience using a medium such as the internet, television, radio, newspaper, and magazine."@en ; + "https://en.wikipedia.org/w/index.php?title=Media&oldid=1062799283"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000589 -cco:ont00000589 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000973 ; - rdfs:label "Julian Date Fraction"@en ; - skos:altLabel "Julian Date Time Identifier"@en , - "Julian Day Fraction"@en ; - skos:definition "A Decimal Time of Day Identifier that designates an approximate Temporal Instant that is part of some Julian Day."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Julian Date Fraction"@en ; + "Julian Date Time Identifier"@en , + "Julian Day Fraction"@en ; + "A Decimal Time of Day Identifier that designates an approximate Temporal Instant that is part of some Julian Day."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000590 -cco:ont00000590 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Convex Shape"@en ; - skos:definition "A Shape Quality that inheres in a bearer in virtue of the bearer not having a cavity, such that no line connecting a pair of points on the surface of the bearer will lie outside."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Convex Shape"@en ; + "A Shape Quality that inheres in a bearer in virtue of the bearer not having a cavity, such that no line connecting a pair of points on the surface of the bearer will lie outside."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000591 -cco:ont00000591 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000029 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000124 ; - owl:someValuesFrom cco:ont00000995 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf obo:BFO_0000029 ; - rdfs:label "Artifact Location"@en ; - skos:definition "A Site that is the location of some Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Artifact Location"@en ; + "A Site that is the location of some Material Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000592 -cco:ont00000592 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001163 ; - rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en , - "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information ('Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."@en ; - rdfs:label "Veracity Measurement Information Content Entity"@en ; - skos:altLabel "Accuracy of Information"@en , - "Trueness Measurement"@en , - "Veracity Measurement"@en ; - skos:definition "A Measurement Information Content Entity that is a measurement of the extent to which a description conforms to the reality it describes."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Veracity Measurement Information Content Entity"@en ; + "Accuracy of Information"@en , + "Trueness Measurement"@en , + "Veracity Measurement"@en ; + "A Measurement Information Content Entity that is a measurement of the extent to which a description conforms to the reality it describes."@en ; + "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en , + "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information ('Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000593 -cco:ont00000593 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000457 ; - rdfs:label "Portion of Propellant"@en ; - skos:definition "A Portion of Material that is designed to be used as an input in a Propulsion Process to produce Thrust."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Propellant"@en ; + "A Portion of Material that is designed to be used as an input in a Propulsion Process to produce Thrust."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000594 -cco:ont00000594 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000007 ; - rdfs:label "Ignition Process"@en ; - skos:altLabel "Ignition"@en ; - skos:definition "A Natural Process that initiates a Combustion process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ignition Process"@en ; + "Ignition"@en ; + "A Natural Process that initiates a Combustion process."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000595 -cco:ont00000595 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000065 ; - rdfs:label "Act of Cargo Transportation"@en ; - skos:definition "An Act of Location Change wherein some Payload is moved from one location to another."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000596 -cco:ont00000596 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000966 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002027 - ] ; - rdfs:label "Material Copy of a JAN-13 Barcode"@en ; - skos:altLabel "JAN-13 Barcode"@en ; - skos:definition "A Material Copy of an EAN Barcode that consists of 13 numerical digits and is used primarily in Japan to designate products at the point of sale."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Cargo Transportation"@en ; + "An Act of Location Change wherein some Payload is moved from one location to another."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000597 -cco:ont00000597 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 ; - rdfs:label "Material Copy of a Instrument Display Panel"@en ; - skos:altLabel "Instrument Display Panel"@en ; - skos:definition "An Information Bearing Artifact that is designed to carry information about some Material Artifact that is derived by the instrumentation Sensors of that Material Artifact."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flight_instruments&oldid=1062972990"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Material Copy of a Instrument Display Panel"@en ; + "Instrument Display Panel"@en ; + "An Information Bearing Artifact that is designed to carry information about some Material Artifact that is derived by the instrumentation Sensors of that Material Artifact."@en ; + "https://en.wikipedia.org/w/index.php?title=Flight_instruments&oldid=1062972990"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000598 -cco:ont00000598 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000256 ; - rdfs:label "Valve"@en ; - skos:definition "A Fluid Control Artifact that is designed to regulate, direct, or control the flow of fluid by opening, closing, or partially obstructing the fluid from moving along a passageway."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Valve&oldid=1048906126"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Valve"@en ; + "A Fluid Control Artifact that is designed to regulate, direct, or control the flow of fluid by opening, closing, or partially obstructing the fluid from moving along a passageway."@en ; + "https://en.wikipedia.org/w/index.php?title=Valve&oldid=1048906126"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000599 -cco:ont00000599 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Interpersonal Relationship Role"@en ; - skos:definition "A Role that inheres in a Person in virtue of the obligations, expectations, or social norms that govern that Person's Intentional Acts within the context of a relationship with another Person."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Interpersonal Relationship Role"@en ; + "A Role that inheres in a Person in virtue of the obligations, expectations, or social norms that govern that Person's Intentional Acts within the context of a relationship with another Person."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000600 -cco:ont00000600 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Legal Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes of giving legal advice to clients drafting legal documents for clients and representing clients in legal negotiations and court proceedings such as lawsuits."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Law&oldid=1060821734"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Legal Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of giving legal advice to clients drafting legal documents for clients and representing clients in legal negotiations and court proceedings such as lawsuits."@en ; + "https://en.wikipedia.org/w/index.php?title=Law&oldid=1060821734"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000601 -cco:ont00000601 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Imaging Artifact Function"@en ; - skos:definition "An Artifact Function that inheres in Material Artifacts that are designed to create one or more new Images."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000602 -cco:ont00000602 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000258 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002023 - ] ; - rdfs:label "Material Copy of a ITF Barcode"@en ; - skos:altLabel "ITF Barcode"@en ; - skos:definition "A Material Copy of a One-Dimensional Barcode that consists of an even number of numerical characters and is used primarily in packaging and distribution."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Imaging Artifact Function"@en ; + "An Artifact Function that inheres in Material Artifacts that are designed to create one or more new Images."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000603 -cco:ont00000603 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Navigation Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact is used to determine the precise location of itself or another object and plan a route to a specified destination."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Navigation Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact is used to determine the precise location of itself or another object and plan a route to a specified destination."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000604 -cco:ont00000604 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001010 ; - rdfs:label "Maximum Ordinal Measurement Information Content Entity"@en ; - skos:definition "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the largest or having the greatest amount relative to a nominally described set of like entities."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Maximum Ordinal Measurement Information Content Entity"@en ; + "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the largest or having the greatest amount relative to a nominally described set of like entities."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000605 -cco:ont00000605 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000003 ; - rdfs:label "Abbreviated Name"@en ; - skos:definition "A Designative Name that is a shortened form of a Proper Name."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Abbreviated Name"@en ; + "A Designative Name that is a shortened form of a Proper Name."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000606 -cco:ont00000606 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000053 ; - rdfs:comment "Trucks vary greatly in their size and power -- ranging from small ultra-light trucks to enormous heavy trucks. Trucks also vary greatly in their configurations -- ranging from very basic flatbeds or box trucks to highly specialized cargo carriers. Trucks may also be configured to mount specialized equipment, such as in the case of fire trucks, concrete mixers, and suction excavators."@en ; - rdfs:label "Truck"@en ; - skos:definition "A Ground Motor Vehicle that is designed to be used to transport cargo."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Truck&oldid=1060924486"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Truck"@en ; + "A Ground Motor Vehicle that is designed to be used to transport cargo."@en ; + "Trucks vary greatly in their size and power -- ranging from small ultra-light trucks to enormous heavy trucks. Trucks also vary greatly in their configurations -- ranging from very basic flatbeds or box trucks to highly specialized cargo carriers. Trucks may also be configured to mount specialized equipment, such as in the case of fire trucks, concrete mixers, and suction excavators."@en ; + "https://en.wikipedia.org/w/index.php?title=Truck&oldid=1060924486"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000607 -cco:ont00000607 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000892 ; - rdfs:label "Thickness"@en ; - skos:definition "A Depth that inheres in a bearer in virtue of it extending inward through an object."@en ; - cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thickness"@en ; + "A Depth that inheres in a bearer in virtue of it extending inward through an object."@en ; + "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000608 -cco:ont00000608 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Financial Value"@en ; - skos:definition "A quality that inheres in an independent continuant to the degree that that independent continuant can serve as a medium of exchange in an economic system at a particular time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Financial Value"@en ; + "A quality that inheres in an independent continuant to the degree that that independent continuant can serve as a medium of exchange in an economic system at a particular time."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000609 -cco:ont00000609 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000642 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000057 ; - owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom obo:BFO_0000016 - ] - ) ; - rdf:type owl:Class - ] - ] ; - rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the BFO 'occupies temporal region' property) that the Entity bears the Disposition."@en ; - rdfs:label "Gain of Disposition"@en ; - skos:definition "A Gain of Realizable Entity in which some Independent Continuant becomes the bearer of some Disposition."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Disposition"@en ; + "A Gain of Realizable Entity in which some Independent Continuant becomes the bearer of some Disposition."@en ; + "This class should be used to demarcate the start of the temporal interval (through the BFO 'occupies temporal region' property) that the Entity bears the Disposition."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000610 -cco:ont00000610 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000754 ; - rdfs:label "Ultraviolet Light Frequency"@en ; - skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 750 terahertz and 30 petahertz."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ultraviolet Light Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 750 terahertz and 30 petahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000611 -cco:ont00000611 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001214 ; - rdfs:label "Increase of Realizable Entity"@en ; - skos:definition "An Increase of Specifically Dependent Continuant in which some Independent Continuant has an increase of some Realizable Entity that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Realizable Entity"@en ; + "An Increase of Specifically Dependent Continuant in which some Independent Continuant has an increase of some Realizable Entity that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000612 -cco:ont00000612 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000566 ; - rdfs:label "Act of Weapon Use"@en ; - skos:definition "An Act of Artifact Employment in which some Agent uses some Weapon."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Weapon Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Weapon."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000613 -cco:ont00000613 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000250 ; - rdfs:label "Loss of Role"@en ; - skos:definition "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Role."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Role"@en ; + "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Role."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000614 -cco:ont00000614 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:comment "'Matter' here can also refer to the inertial energy of an object."@en , - "Typical unit of measure is the kilogram or pound."@en ; - rdfs:label "Mass"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of the amount of matter in that bearer."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mass"@en ; + "A Quality that inheres in a bearer in virtue of the amount of matter in that bearer."@en ; + "'Matter' here can also refer to the inertial energy of an object."@en , + "Typical unit of measure is the kilogram or pound."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000615 -cco:ont00000615 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000433 ; - rdfs:label "Act of Encounter"@en ; - skos:definition "An Act of Association wherein two or more Persons meet in a casual or unplanned manner."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=encounter (Sense Key: Encounter%2:38:00)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Encounter"@en ; + "An Act of Association wherein two or more Persons meet in a casual or unplanned manner."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=encounter (Sense Key: Encounter%2:38:00)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000616 -cco:ont00000616 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000958 ; - rdfs:label "Religion"@en ; - skos:definition "An Information Content Entity that consists of a collection of claims about the meaning or origin of existence or about the existence or nature of one or more deities, an afterlife, or spiritual or sacred entities, and which is accepted as true by an Agent or Group of Agents."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/religion" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Religion"@en ; + "An Information Content Entity that consists of a collection of claims about the meaning or origin of existence or about the existence or nature of one or more deities, an afterlife, or spiritual or sacred entities, and which is accepted as true by an Agent or Group of Agents."@en ; + "http://www.dictionary.com/browse/religion" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000617 -cco:ont00000617 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000199 ; - rdfs:label "Infrared Camera"@en ; - skos:altLabel "Thermal Imaging Camera"@en , - "Thermographic Camera"@en ; - skos:definition "A Camera that is designed to form and record an image generated from infrared radiation."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Thermographic_camera&oldid=1063916009"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrared Camera"@en ; + "Thermal Imaging Camera"@en , + "Thermographic Camera"@en ; + "A Camera that is designed to form and record an image generated from infrared radiation."@en ; + "https://en.wikipedia.org/w/index.php?title=Thermographic_camera&oldid=1063916009"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000618 -cco:ont00000618 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000713 ; - rdfs:label "Ground Vehicle"@en ; - skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by some form of ground travel."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Category:Land_vehicles&oldid=546083623"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ground Vehicle"@en ; + "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by some form of ground travel."@en ; + "https://en.wikipedia.org/w/index.php?title=Category:Land_vehicles&oldid=546083623"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000619 -cco:ont00000619 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001869 ; - owl:someValuesFrom cco:ont00000225 - ] ; - rdfs:label "Week"@en ; - skos:definition "A Temporal Interval that is equal to seven consecutive Days."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=week" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Week"@en ; + "A Temporal Interval that is equal to seven consecutive Days."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=week" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000620 -cco:ont00000620 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001384 ; - rdfs:label "Radiopacity"@en ; - skos:altLabel "Radiodensity"@en ; - skos:definition "An Opacity that inheres in a bearer in virtue of its capacity to allow or prevent X-rays to pass through it."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radiodensity&oldid=1048274724"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiopacity"@en ; + "Radiodensity"@en ; + "An Opacity that inheres in a bearer in virtue of its capacity to allow or prevent X-rays to pass through it."@en ; + "https://en.wikipedia.org/w/index.php?title=Radiodensity&oldid=1048274724"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000621 -cco:ont00000621 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001286 ; - rdfs:label "Inverse Sawtooth Waveform"@en ; - skos:definition "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from maximum to minimum Amplitudes followed by a near-instantaneous transition from the minimum to maximum Amplitudes of the Wave Cycle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Inverse Sawtooth Waveform"@en ; + "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from maximum to minimum Amplitudes followed by a near-instantaneous transition from the minimum to maximum Amplitudes of the Wave Cycle."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000622 -cco:ont00000622 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001132 ; - rdfs:label "Stasis of Fully Mission Capable"@en ; - skos:definition "A Stasis of Mission Capability during which the participating Continuant is capable of performing all of its primary functions for the specified Mission."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Fully Mission Capable"@en ; + "A Stasis of Mission Capability during which the participating Continuant is capable of performing all of its primary functions for the specified Mission."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000623 -cco:ont00000623 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Impact Shielding Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact reduces the damage caused to the shielded object by an impact with another object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Impact Shielding Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact reduces the damage caused to the shielded object by an impact with another object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000624 -cco:ont00000624 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001298 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002043 - ] ; - rdfs:label "Material Copy of a Report"@en ; - skos:altLabel "Report"@en ; - skos:definition "A Material Copy of a Document that is designed to carry some specific Information Content Entity that conveys an account of some event, situation, or the result of some observation or inquiry."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Report&oldid=1063765657"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Report"@en ; + "Report"@en ; + "A Material Copy of a Document that is designed to carry some specific Information Content Entity that conveys an account of some event, situation, or the result of some observation or inquiry."@en ; + "https://en.wikipedia.org/w/index.php?title=Report&oldid=1063765657"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000625 -cco:ont00000625 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000256 ; - rdfs:label "Nozzle Throat"@en ; - skos:definition "A Fluid Control Artifact that consists of the narrowest portion of a Nozzle that is designed to converge the flow of fluid in order to increase the Velocity of the flow."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nozzle Throat"@en ; + "A Fluid Control Artifact that consists of the narrowest portion of a Nozzle that is designed to converge the flow of fluid in order to increase the Velocity of the flow."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000626 -cco:ont00000626 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000853 ; - rdfs:comment "Since predictions are inherently about not-yet-existant things, the Modal Relation Ontology term 'describes' (i.e. mro:describes) should be used (instead of the standard cco:describes) to relate instances of Predictive Information Content Entity to the entities they are about."@en ; - rdfs:label "Predictive Information Content Entity"@en ; - skos:altLabel "Prediction"@en , - "Prediction Information Content Entity"@en ; - skos:definition "A Descriptive Information Content Entity that describes an uncertain future event."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Predictive Information Content Entity"@en ; + "Prediction"@en , + "Prediction Information Content Entity"@en ; + "A Descriptive Information Content Entity that describes an uncertain future event."@en ; + "Since predictions are inherently about not-yet-existant things, the Modal Relation Ontology term 'describes' (i.e. mro:describes) should be used (instead of the standard cco:describes) to relate instances of Predictive Information Content Entity to the entities they are about."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000627 -cco:ont00000627 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00001141 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf obo:BFO_0000040 ; - rdfs:label "Infrastructure Element"@en ; - skos:definition "A Material Entity that bears an Infrastructure Role."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Infrastructure Element"@en ; + "A Material Entity that bears an Infrastructure Role."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000628 -cco:ont00000628 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000016 ; - rdfs:label "Disposition to Interact with Electromagnetic Radiation"@en ; - skos:definition "A Disposition that inheres in a bearer in virtue of how that bearer interacts with electromagnetic radiation."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Disposition to Interact with Electromagnetic Radiation"@en ; + "A Disposition that inheres in a bearer in virtue of how that bearer interacts with electromagnetic radiation."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000629 -cco:ont00000629 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Deception Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes which misinform or mislead some other entity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Deception&oldid=1061346984"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Deception Artifact Function"@en ; + "An Artifact Function that is realized in processes which misinform or mislead some other entity."@en ; + "https://en.wikipedia.org/w/index.php?title=Deception&oldid=1061346984"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000630 -cco:ont00000630 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000124 ; - rdfs:label "Universal Time Reference System"@en ; - skos:definition "A Solar Time Reference System that is based on the average speed of the Earth's rotation and which uses the prime meridian at 0° longitude as a reference point."@en ; - cco:ont00001753 "UT" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Universal Time Reference System"@en ; + "A Solar Time Reference System that is based on the average speed of the Earth's rotation and which uses the prime meridian at 0° longitude as a reference point."@en ; + "UT" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000631 -cco:ont00000631 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000662 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000171 ; - owl:someValuesFrom cco:ont00000139 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000662 ; - dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; - dcterms:created "2023-02-06T10:14:09-05:00"@en ; - rdfs:label "Material Territory of a Country"@en ; - skos:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a The Domain of a Country."@en ; - skos:prefLabel "Material Territory of a Country"@en ; - cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + "2023-02-06T10:14:09-05:00"@en ; + rdfs:label "Material Territory of a Country"@en ; + "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a The Domain of a Country."@en ; + "Material Territory of a Country"@en ; + "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000632 -cco:ont00000632 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000016 ; - rdfs:label "Magnetism"@en ; - skos:definition "A Disposition that is realized when its bearer exerts a magnetic force on another entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Magnetism"@en ; + "A Disposition that is realized when its bearer exerts a magnetic force on another entity."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000633 -cco:ont00000633 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:comment "When an object is \"weighed\", in the typical case, it is done so by taking into account the local force of gravity to determine the object's mass, whose standard of measure is the kilogram. The actual unit of measure of weight is the newton."@en ; - rdfs:label "Weight"@en ; - skos:definition "A Quality that inheres in some material entity with a mass in virtue of its location in some gravitational field."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Weight"@en ; + "A Quality that inheres in some material entity with a mass in virtue of its location in some gravitational field."@en ; + "When an object is \"weighed\", in the typical case, it is done so by taking into account the local force of gravity to determine the object's mass, whose standard of measure is the kilogram. The actual unit of measure of weight is the newton."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000634 -cco:ont00000634 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000431 ; - rdfs:label "Steam Engine"@en ; - skos:definition "An External Combustion Engine that is designed to use steam as its working fluid."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Steam_engine&oldid=1064097686"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Steam Engine"@en ; + "An External Combustion Engine that is designed to use steam as its working fluid."@en ; + "https://en.wikipedia.org/w/index.php?title=Steam_engine&oldid=1064097686"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000635 -cco:ont00000635 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Refraction Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by a Material Artifact participating in a refraction event in which the Material Artifact causes a change in direction of wave propagation due to a change in its transmission medium."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Refraction Artifact Function"@en ; + "An Artifact Function that is realized by a Material Artifact participating in a refraction event in which the Material Artifact causes a change in direction of wave propagation due to a change in its transmission medium."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000636 -cco:ont00000636 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000345 ; - rdfs:comment "Note that, while most if not all Acts of Appraisal involve some estimating and many Acts of Estimation involve some appraising (i.e. these classes are not disjoint), neither class subsumes the other. For example, some Acts of Appraisal (e.g. a tax assessor appraising the value of a building) impart a normative element to the measured value while others (e.g. a gustatory appraisal that fresh green beans taste better than canned green beans) involve complete information. Furthermore, many Acts of Estimation (e.g. estimating the height of a tree) are concerned solely with determining a numerical value (as opposed to the nature, value, importance, condition, or quality)."@en ; - rdfs:label "Act of Appraisal"@en ; - skos:definition "An Act of Measuring that involves evaluating, assessing, estimating, or judging the nature, value, importance, condition, or quality of something or someone."@en ; - skos:example "a food critic rating the quality of a restaurant's ambiance, service, and food" , - "a mechanic assessing whether a damaged vehicle is repairable" , - "an insurance agent appraising the financial value of a building" ; - skos:scopeNote "In the context of an Act of Appraisal, the terms 'value', 'condition', and 'quality' do not have the same meanings as their counterparts that are defined in the Common Core Ontologies. For example, a knife may be appraised to be of high quality if it is sharp and sturdy or to be of inferior quality if it is dull or fragile."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Appraisal"@en ; + "An Act of Measuring that involves evaluating, assessing, estimating, or judging the nature, value, importance, condition, or quality of something or someone."@en ; + "a food critic rating the quality of a restaurant's ambiance, service, and food" , + "a mechanic assessing whether a damaged vehicle is repairable" , + "an insurance agent appraising the financial value of a building" ; + "In the context of an Act of Appraisal, the terms 'value', 'condition', and 'quality' do not have the same meanings as their counterparts that are defined in the Common Core Ontologies. For example, a knife may be appraised to be of high quality if it is sharp and sturdy or to be of inferior quality if it is dull or fragile."@en , + "Note that, while most if not all Acts of Appraisal involve some estimating and many Acts of Estimation involve some appraising (i.e. these classes are not disjoint), neither class subsumes the other. For example, some Acts of Appraisal (e.g. a tax assessor appraising the value of a building) impart a normative element to the measured value while others (e.g. a gustatory appraisal that fresh green beans taste better than canned green beans) involve complete information. Furthermore, many Acts of Estimation (e.g. estimating the height of a tree) are concerned solely with determining a numerical value (as opposed to the nature, value, importance, condition, or quality)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000637 -cco:ont00000637 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000593 ; - rdfs:label "Portion of Gaseous Propellant"@en ; - skos:definition "A Portion of Propellant that is stored in a gaseous state."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Gaseous Propellant"@en ; + "A Portion of Propellant that is stored in a gaseous state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000638 -cco:ont00000638 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000210 ; - rdfs:label "Heat Engine"@en ; - skos:definition "An Engine that is designed to convert thermal energy into mechanical energy."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heat Engine"@en ; + "An Engine that is designed to convert thermal energy into mechanical energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000639 -cco:ont00000639 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Mine"@en ; - skos:definition "A Facility that is designed to support the extraction of minerals or other geological materials from an orebody, lode, vein, seam, reef, or placer deposit within the earth."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mining&oldid=1062844924"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mine"@en ; + "A Facility that is designed to support the extraction of minerals or other geological materials from an orebody, lode, vein, seam, reef, or placer deposit within the earth."@en ; + "https://en.wikipedia.org/w/index.php?title=Mining&oldid=1062844924"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000640 -cco:ont00000640 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001002 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002012 - ] ; - rdfs:label "Material Copy of a Email Message"@en ; - skos:altLabel "Email Message"@en ; - skos:definition "A Material Copy of a Message that is transmitted to the recipient's Email Box."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Email Message"@en ; + "Email Message"@en ; + "A Material Copy of a Message that is transmitted to the recipient's Email Box."@en ; + "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000641 -cco:ont00000641 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Entertainment Facility"@en ; - skos:definition "A Facility that is designed to host activities that are intended to hold the interest of, or give pleasure or delight to, an audience."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Entertainment Facility"@en ; + "A Facility that is designed to host activities that are intended to hold the interest of, or give pleasure or delight to, an audience."@en ; + "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000642 -cco:ont00000642 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000395 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000057 ; - owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom obo:BFO_0000017 - ] - ) ; - rdf:type owl:Class - ] - ] ; - rdfs:label "Gain of Realizable Entity"@en ; - skos:definition "A Gain of Specifically Dependent Continuant in which some Independent Continuant becomes the bearer of some Realizable Entity."@en ; - skos:example "An informant becomes unreliable (disposition), A person begins to speak French (function), a person becomes a welder (role)." ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Realizable Entity"@en ; + "A Gain of Specifically Dependent Continuant in which some Independent Continuant becomes the bearer of some Realizable Entity."@en ; + "An informant becomes unreliable (disposition), A person begins to speak French (function), a person becomes a welder (role)." ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000643 -cco:ont00000643 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000150 ; - rdfs:comment "The corresponding Wavelength range is 10–1 km"@en ; - rdfs:label "Low Frequency"@en ; - skos:altLabel "ITU Band Number 5"@en ; - skos:definition "A Radio Frequency that is between 30 and 300 kHz."@en ; - cco:ont00001753 "LF" ; - cco:ont00001754 "International Telecommunication Union (ITU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Low Frequency"@en ; + "ITU Band Number 5"@en ; + "A Radio Frequency that is between 30 and 300 kHz."@en ; + "The corresponding Wavelength range is 10–1 km"@en ; + "LF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000644 -cco:ont00000644 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000004 ; - rdfs:comment "Oscillation is often thought of in the sense of motion, e.g., a swinging clock pendulum. However, the repetitive variation in location around a central point is technically a process of vibration, sometimes referred to as mechanical oscillation. Use the term Vibration Motion for those cases."@en ; - rdfs:label "Oscillation Process"@en ; - skos:altLabel "Oscillation"@en ; - skos:definition "A Change in which the dependent entity alternates between two or more stases."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Oscillation&oldid=1002978272"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Oscillation Process"@en ; + "Oscillation"@en ; + "A Change in which the dependent entity alternates between two or more stases."@en ; + "Oscillation is often thought of in the sense of motion, e.g., a swinging clock pendulum. However, the repetitive variation in location around a central point is technically a process of vibration, sometimes referred to as mechanical oscillation. Use the term Vibration Motion for those cases."@en ; + "https://en.wikipedia.org/w/index.php?title=Oscillation&oldid=1002978272"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000645 -cco:ont00000645 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000917 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001262 ; - dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "Permanent Resident"@en ; - skos:definition "A person with a Permanent Resident Role."@en ; - skos:prefLabel "Permanent Resident"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Permanent Resident"@en ; + "A person with a Permanent Resident Role."@en ; + "Permanent Resident"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000646 -cco:ont00000646 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000247 ; - rdfs:label "Highway"@en ; - skos:definition "A Road that is designed to enable Ground Vehicles to travel between relatively major destinations."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Highway&oldid=1063985949"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Highway"@en ; + "A Road that is designed to enable Ground Vehicles to travel on routes that connect relatively major destinations."@en ; + "https://en.wikipedia.org/w/index.php?title=Highway&oldid=1063985949"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000647 -cco:ont00000647 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000175 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001262 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001939 ; - owl:someValuesFrom cco:ont00001180 - ] ; - rdfs:label "Organization Member Person"@en ; - skos:definition "A Person who is affiliated with some Organization by being a member of that Organization."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Organization Member"@en ; + "A Person who is affiliated with some Organization by being a member of that Organization."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000648 -cco:ont00000648 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000784 ; - rdfs:label "Color Brightness"@en ; - skos:altLabel "Color Intensity"@en ; - skos:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect or radiate light."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Color Brightness"@en ; + "Color Intensity"@en ; + "An Optical Property that inheres in a bearer in virtue of its capacity to reflect or radiate light."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000649 -cco:ont00000649 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000686 ; - rdfs:label "Non-Name Identifier"@en ; - skos:altLabel "ID"@en , - "Identifier"@en ; - skos:definition "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified namespace or context, is not a Designative Name, may be automatically or randomly generated, and typically has no preexisting cultural or social significance."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Non-Name Identifier"@en ; + "ID"@en , + "Identifier"@en ; + "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified namespace or context, is not a Designative Name, may be automatically or randomly generated, and typically has no preexisting cultural or social significance."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000650 -cco:ont00000650 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000214 ; - rdfs:label "Ground Moving Target Indication Artifact Function"@en ; - skos:definition "A Moving Target Indication Artifact Function that inheres in Material Artifacts that are designed to identify and track entities moving on or near the ground."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ground Moving Target Indication Artifact Function"@en ; + "A Moving Target Indication Artifact Function that inheres in Material Artifacts that are designed to identify and track entities moving on or near the ground."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000651 -cco:ont00000651 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Containing Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process in which one entity contains another."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/containing" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Containing Artifact Function"@en ; + "An Artifact Function that is realized in a process in which one entity contains another."@en ; + "http://www.dictionary.com/browse/containing" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000652 -cco:ont00000652 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Decoy"@en ; - skos:definition "A Material Artifact that is designed to distract or conceal what an individual or group might be looking for."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Decoy&oldid=1058455081"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decoy"@en ; + "A Material Artifact that is designed to distract or conceal what an individual or group might be looking for."@en ; + "https://en.wikipedia.org/w/index.php?title=Decoy&oldid=1058455081"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000653 -cco:ont00000653 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000965 ; - rdfs:label "Algorithm"@en ; - skos:definition "A Directive Information Content Entity that prescribes some Process and contains a finite sequence of unambiguous instructions in order to achieve some Objective."@en ; - cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000064"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Algorithm"@en ; + "A Prescriptive Information Content Entity that prescribes some Process and contains a finite sequence of unambiguous instructions in order to achieve some Objective."@en ; + "http://purl.obolibrary.org/obo/IAO_0000064"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000654 -cco:ont00000654 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001147 ; - rdfs:label "Act of Terrorism"@en ; - skos:definition "An Act of Violence which creates fear and which is prescribed by religious, political or ideological objectives, and which deliberately target or disregard the safety of civilians and are committed by members of non-government organizations."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Terrorism&oldid=1063471352"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Terrorism"@en ; + "An Act of Violence which creates fear and which is prescribed by religious, political or ideological objectives, and which deliberately target or disregard the safety of civilians and are committed by members of non-government organizations."@en ; + "https://en.wikipedia.org/w/index.php?title=Terrorism&oldid=1063471352"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000655 -cco:ont00000655 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Mailing Facility"@en ; - skos:definition "A Facility that is designed for the systematic physical transportation of documents and packages."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mailing Facility"@en ; + "A Facility that is designed for the systematic physical transportation of documents and packages."@en ; + "https://en.wikipedia.org/w/index.php?title=Mail&oldid=1057401839"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000656 -cco:ont00000656 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000445 ; - rdfs:label "Radiological Weapon"@en ; - skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing radioactive material."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radiological_warfare&oldid=1060817328"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiological Weapon"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing radioactive material."@en ; + "https://en.wikipedia.org/w/index.php?title=Radiological_warfare&oldid=1060817328"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000657 -cco:ont00000657 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001100 ; - rdfs:label "Distance Measurement Artifact Function"@en ; - skos:definition "A Measurement Artifact Function that is realized during events in which a Material Artifact is used to measure the spatial Distance to a specified object or class of objects."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Distance Measurement Artifact Function"@en ; + "A Measurement Artifact Function that is realized during events in which a Material Artifact is used to measure the spatial Distance to a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000658 -cco:ont00000658 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001051 ; - rdfs:label "Missile Launcher"@en ; - skos:definition "A Projectile Launcher that is designed to launch one or more Precision-Guided Missiles."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Missile Launcher"@en ; + "A Projectile Launcher that is designed to launch one or more Precision-Guided Missiles."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000659 -cco:ont00000659 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Torque"@en ; - skos:altLabel "Measurement Unit of Moment of Force"@en , - "Measurement Unit of Rotational Force"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the rate of change of angular momentum of an object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Torque"@en ; + "Measurement Unit of Moment of Force"@en , + "Measurement Unit of Rotational Force"@en ; + "A Measurement Unit that is used as a standard for measurement of the rate of change of angular momentum of an object."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000660 -cco:ont00000660 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000015 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001819 ; - owl:someValuesFrom obo:BFO_0000015 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf obo:BFO_0000015 ; - rdfs:label "Effect"@en ; - skos:altLabel "Consequence"@en ; - skos:definition "A Process that follows and is caused by some previous Process."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=effect" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Effect"@en ; + "Consequence"@en ; + "A Process that follows and is caused by some previous Process."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=effect" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000661 -cco:ont00000661 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Government Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes in which public policy is administered and the actions of its members are directed."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Government Artifact Function"@en ; + "A Service Artifact Function that is realized in processes in which public policy is administered and the actions of its members are directed."@en ; + "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000662 -cco:ont00000662 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001341 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000171 ; - owl:someValuesFrom cco:ont00001152 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001341 ; - dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; - dcterms:created "2023-02-06T10:14:09-05:00"@en ; - rdfs:label "Material Territory of a Government Domain"@en ; - skos:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a Government Domain"@en ; - skos:prefLabel "Material Territory of a Government Domain"@en ; - cco:ont00001754 "https://avalon.law.yale.edu/20th_century/intam03.asp" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; + "2023-02-06T10:14:09-05:00"@en ; + rdfs:label "Material Territory of a Government Domain"@en ; + "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a Government Domain"@en ; + "Material Territory of a Government Domain"@en ; + "https://avalon.law.yale.edu/20th_century/intam03.asp" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000663 -cco:ont00000663 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Power Transmission Artifact"@en ; - skos:definition "A Material Artifact that is designed to transfer and regulate Power flow from a Power Source to an application point."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Transmission Artifact"@en ; + "A Material Artifact that is designed to transfer and regulate Power flow from a Power Source to an application point."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000664 -cco:ont00000664 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000531 ; - rdfs:label "Radio Relay Station"@en ; - skos:definition "A Communications Facility that is designed to support the receiving and re-transmitting of radio signals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Relay Station"@en ; + "A Communications Facility that is designed to support the receiving and re-transmitting of radio signals."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000665 -cco:ont00000665 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Cleaning Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes in which some Material Artifact is used to remove foreign objects from another object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cleaning Artifact Function"@en ; + "An Artifact Function that is realized in processes in which some Material Artifact is used to remove foreign objects from another object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000666 -cco:ont00000666 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000486 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001262 ; - rdfs:label "Neutral Person"@en ; - skos:altLabel "Unallied Person" ; - skos:definition "A Person who is the bearer of some Neutral Role."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Neutral Person"@en ; + "Unallied Person" ; + "A Person who is the bearer of some Neutral Role."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000667 -cco:ont00000667 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001052 ; - rdfs:label "Combat Outpost"@en ; - skos:definition "A Military Facility that is designed to support the conduction of combat operations of limited scope or size."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Outpost_(military)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Combat Outpost"@en ; + "A Military Facility that is designed to support the conduction of combat operations of limited scope or size."@en ; + "https://en.wikipedia.org/wiki/Outpost_(military)" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000668 -cco:ont00000668 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Battery Terminal"@en ; - skos:definition "A Material Artifact that is designed to connect a load or charger to a single or multiple-cell Battery."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Battery_terminal&oldid=1059455659"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Battery Terminal"@en ; + "A Material Artifact that is designed to connect a load or charger to a single or multiple-cell Battery."@en ; + "https://en.wikipedia.org/w/index.php?title=Battery_terminal&oldid=1059455659"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000669 -cco:ont00000669 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001022 ; - rdfs:label "Distance Measurement Information Content Entity"@en ; - skos:definition "A Ratio Measurement Information Content Entity that is a measurement of a One-Dimensional Extent inhering in some Site that is externally connected to two Independent Continuants."@en ; - skos:scopeNote "Displacement (vector) is the shortest possible distance (scalar) between two points. Further thought is needed to adequately handle measurements of distance traveled along a path, e.g., a circuitous path or an arc (such as the surface of a planet), versus the simple case of a direct, straight line between two points."@en , - "Distance is a measure between two reference points, which are located on or in, or in some manner part of, the two obejcts for which the length of the extent between is sought. For exmple, the center point of the indentation of a ball in the sand and the edge of the foul line, the forwardmost point on a car's bumper and the closest point on the 2-dimensional plane that serves as the fiat boundary of a crosswalk, the center of an antenna array and closest point on ground."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Distance Measurement Information Content Entity"@en ; + "A Ratio Measurement Information Content Entity that is a measurement of a One-Dimensional Extent inhering in some Site that is externally connected to two Independent Continuants."@en ; + "Displacement (vector) is the shortest possible distance (scalar) between two points. Further thought is needed to adequately handle measurements of distance traveled along a path, e.g., a circuitous path or an arc (such as the surface of a planet), versus the simple case of a direct, straight line between two points."@en , + "Distance is a measure between two reference points, which are located on or in, or in some manner part of, the two obejcts for which the length of the extent between is sought. For exmple, the center point of the indentation of a ball in the sand and the edge of the foul line, the forwardmost point on a car's bumper and the closest point on the 2-dimensional plane that serves as the fiat boundary of a crosswalk, the center of an antenna array and closest point on ground."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000670 -cco:ont00000670 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001258 ; - rdfs:label "Distribution Port"@en ; - skos:definition "A Port that is designed with the cargo handling equipment necessary for the loading and unloading of Watercraft"@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Distribution Port"@en ; + "A Port that is designed with the cargo handling equipment necessary for the loading and unloading of Watercraft"@en ; + "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000671 -cco:ont00000671 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000415 ; - rdfs:label "Anti-Bacterial Artifact Function"@en ; - skos:definition "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some bacterium."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Antibiotic&oldid=1063633090"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Anti-Bacterial Artifact Function"@en ; + "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some bacterium."@en ; + "https://en.wikipedia.org/w/index.php?title=Antibiotic&oldid=1063633090"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000672 -cco:ont00000672 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000150 ; - rdfs:comment "The corresponding Wavelength range is 10,000–1,000 km"@en ; - rdfs:label "Super Low Frequency"@en ; - skos:altLabel "ITU Band Number 2"@en ; - skos:definition "A Radio Frequency that is between 30 and 300 Hz."@en ; - cco:ont00001753 "SLF" ; - cco:ont00001754 "International Telecommunication Union (ITU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Super Low Frequency"@en ; + "ITU Band Number 2"@en ; + "A Radio Frequency that is between 30 and 300 Hz."@en ; + "The corresponding Wavelength range is 10,000–1,000 km"@en ; + "SLF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000673 -cco:ont00000673 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000715 ; - rdfs:label "Prosthetic Foot"@en ; - skos:definition "A Prosthesis that is designed to replace a missing foot."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prosthetic Foot"@en ; + "A Prosthesis that is designed to replace a missing foot."@en ; + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000674 -cco:ont00000674 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000832 ; - rdfs:label "Calendar Year"@en ; - skos:definition "A Year that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Year."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar Year"@en ; + "A Year that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Year."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000675 -cco:ont00000675 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001028 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00001227 - ] ; - rdfs:label "Sound Wave Process"@en ; - skos:definition "A Mechanical Wave Process of Pressure and displacement that is parallel to the propogation direction of the Wave Process through a medium."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Sound Wave Process"@en ; + "A Mechanical Wave Process of Pressure and displacement that is parallel to the propogation direction of the Wave Process through a medium."@en ; + "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000676 -cco:ont00000676 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Inhabitancy"@en ; - skos:definition "A Planned Act in which a Person lives at a Site for a period of time that may be as short as 1 day/night or as long as the Person's entire life."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/inhabit" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Inhabitancy"@en ; + "A Planned Act in which a Person lives at a Site for a period of time that may be as short as 1 day/night or as long as the Person's entire life."@en ; + "http://www.merriam-webster.com/dictionary/inhabit" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000677 -cco:ont00000677 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Product Transport Facility"@en ; - skos:definition "A Facility that is designed to transport some product."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Product Transport Facility"@en ; + "A Facility that is designed to transport some product."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000678 -cco:ont00000678 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000098 ; - rdfs:label "Voltage Regulating Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by processes in which some Material Artifact is used to cause a change in the voltage magnitude between the sending and receiving end of an electrical component."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Voltage_regulation&oldid=1045628774"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Voltage Regulating Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Material Artifact is used to cause a change in the voltage magnitude between the sending and receiving end of an electrical component."@en ; + "https://en.wikipedia.org/w/index.php?title=Voltage_regulation&oldid=1045628774"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000679 -cco:ont00000679 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Attitude Control Artifact Function"@en ; - skos:altLabel "Orientation Control Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by a Material Artifact participating in an attitude control process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Attitude Control Artifact Function"@en ; + "Orientation Control Artifact Function"@en ; + "An Artifact Function that is realized by a Material Artifact participating in an attitude control process."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000680 -cco:ont00000680 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000881 ; - rdfs:label "Medical Depot"@en ; - skos:definition "A Storage Facility that is designed to store medical supplies."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Medical Depot"@en ; + "A Storage Facility that is designed to store medical supplies."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000681 -cco:ont00000681 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000236 ; - rdfs:label "External Navigation Lighting System"@en ; - skos:definition "A Lighting System that is designed to be attached to some Vehicle and to emit colored light in order to signal that Vehicle's position, heading, and status."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Navigation_light&oldid=1034200601"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "External Navigation Lighting System"@en ; + "A Lighting System that is designed to be attached to some Vehicle and to emit colored light in order to signal that Vehicle's position, heading, and status."@en ; + "https://en.wikipedia.org/w/index.php?title=Navigation_light&oldid=1034200601"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000682 -cco:ont00000682 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000136 ; - rdfs:label "Mirror"@en ; - skos:definition "An Optical Instrument that is designed to reflect light that has a wavelength within a given range and is incident on its relflecting surface such that the reflected light maintains most of the characteristics of the original light."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mirror&oldid=1063296474"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mirror"@en ; + "An Optical Instrument that is designed to reflect light that has a wavelength within a given range and is incident on its relflecting surface such that the reflected light maintains most of the characteristics of the original light."@en ; + "https://en.wikipedia.org/w/index.php?title=Mirror&oldid=1063296474"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000683 -cco:ont00000683 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000605 ; - rdfs:label "Diminutive Name"@en ; - skos:definition "An Abbreviated Name that is a familiar form of a Proper Name."@en ; - skos:example "Alex, Bob, Cathy" ; - skos:scopeNote "\"Familiar form of a Proper Name\" means: that the name is (originally) a short, affectionate version of the fuller name, used (originally) by family or friends."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Diminutive Name"@en ; + "An Abbreviated Name that is a familiar form of a Proper Name."@en ; + "Alex, Bob, Cathy" ; + "\"Familiar form of a Proper Name\" means: that the name is (originally) a short, affectionate version of the fuller name, used (originally) by family or friends."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000684 -cco:ont00000684 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000821 ; - rdfs:label "Act of Contract Formation"@en ; - skos:definition "An Act of Promising having a lawful object entered into voluntarily by two or more agents with legal capacity, each of whom intends to create one or more legal obligations between them."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Contract&oldid=1061365227"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Contract Formation"@en ; + "An Act of Promising having a lawful object entered into voluntarily by two or more agents with legal capacity, each of whom intends to create one or more legal obligations between them."@en ; + "https://en.wikipedia.org/w/index.php?title=Contract&oldid=1061365227"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000685 -cco:ont00000685 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000207 ; - rdfs:label "Government Domain Border"@en ; - skos:definition "A Geospatial Boundary that is a boundary of some Government Domain."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Border&oldid=1061275162"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Government Domain Border"@en ; + "A Geospatial Boundary that is a boundary of some Government Domain."@en ; + "https://en.wikipedia.org/w/index.php?title=Border&oldid=1061275162"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000686 -cco:ont00000686 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom obo:BFO_0000001 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000958 ; - owl:disjointWith cco:ont00000853 , - cco:ont00000965 ; - rdfs:label "Designative Information Content Entity"@en ; - skos:altLabel "Designative ICE"@en ; - skos:definition "An Information Content Entity that consists of a set of symbols that designate some Entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith , + ; + rdfs:label "Designative Information Content Entity"@en ; + "Designative ICE"@en ; + "An Information Content Entity that consists of a set of symbols that designate some Entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000687 -cco:ont00000687 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000234 ; - rdfs:label "Act of Training Acquisition"@en ; - skos:definition "An Act of Training performed by an Agent by acquiring knowledge from another Agent."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Training Acquisition"@en ; + "An Act of Training performed by an Agent by acquiring knowledge from another Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000688 -cco:ont00000688 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000294 ; - rdfs:label "Turbofan Air-Breathing Jet Engine"@en ; - skos:definition "An Air-Breathing Jet Engine that uses a Turbofan, which consists of a Turbine and a Fan."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Turbofan&oldid=1063724215"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Turbofan Air-Breathing Jet Engine"@en ; + "An Air-Breathing Jet Engine that uses a Turbofan, which consists of a Turbine and a Fan."@en ; + "https://en.wikipedia.org/w/index.php?title=Turbofan&oldid=1063724215"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000689 -cco:ont00000689 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Switch Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process of breaking an electric circuit by interrupting the current or diverting it from one conductor to another."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Switch&oldid=1059685800"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Switch Artifact Function"@en ; + "An Artifact Function that is realized in a process of breaking an electric circuit by interrupting the current or diverting it from one conductor to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Switch&oldid=1059685800"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000690 -cco:ont00000690 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000346 ; - rdfs:label "Telecommunication Instrument"@en ; - skos:definition "A Communication Instrument that is designed for use by some Agent in some Act of Communication where the recipient of that communication is potentially a significant distance away from the Agent."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Instrument"@en ; + "A Communication Instrument that is designed for use by some Agent in some Act of Communication where the recipient of that communication is potentially a significant distance away from the Agent."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000691 -cco:ont00000691 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000020 ; - rdfs:label "Fuel Tank"@en ; - skos:definition "A Container that is designed to store a Portion of Fuel."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel Tank"@en ; + "A Container that is designed to store a Portion of Fuel."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000692 -cco:ont00000692 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001163 ; - rdfs:comment "Every probability measurement is made within a particular context given certain background assumptions."@en ; - rdfs:label "Probability Measurement Information Content Entity"@en ; - skos:altLabel "Likelihood Measurement"@en , - "Probability Measurement"@en ; - skos:definition "A Measurement Information Content Entity that is a measurement of the likelihood that a Process or Process Aggregate occurs."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Probability&oldid=1059657543"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Probability Measurement Information Content Entity"@en ; + "Likelihood Measurement"@en , + "Probability Measurement"@en ; + "A Measurement Information Content Entity that is a measurement of the likelihood that a Process or Process Aggregate occurs."@en ; + "Every probability measurement is made within a particular context given certain background assumptions."@en ; + "https://en.wikipedia.org/w/index.php?title=Probability&oldid=1059657543"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000693 -cco:ont00000693 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000575 ; - rdfs:label "Mass Specification"@en ; - skos:definition "A Quality Specification that prescribes the Amount of Mass that a Material Entity should have."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mass Specification"@en ; + "A Quality Specification that prescribes the Amount of Mass that a Material Entity should have."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000694 -cco:ont00000694 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000256 ; - rdfs:label "Nozzle Mouth"@en ; - skos:definition "A Fluid Control Artifact that consists of the portion of a Nozzle at the end that is designed to be where the flow of fluid exits the Nozzle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nozzle Mouth"@en ; + "A Fluid Control Artifact that consists of the portion of a Nozzle at the end that is designed to be where the flow of fluid exits the Nozzle."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000695 -cco:ont00000695 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000620 ; - rdfs:label "Radiolucent"@en ; - skos:altLabel "Hypodense"@en , - "Transradiance"@en ; - skos:definition "A Radiopacity that inheres in a bearer in virtue of its capacity to permit most X-rays to pass through it."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiolucent"@en ; + "Hypodense"@en , + "Transradiance"@en ; + "A Radiopacity that inheres in a bearer in virtue of its capacity to permit most X-rays to pass through it."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000696 -cco:ont00000696 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000958 ; - rdfs:label "Ideology"@en ; - skos:definition "An Information Content Entity that consists of a collection of claims about how some part of the world is or should be and which is accepted as true by an Agent or Group of Agents such that it forms the basis of their beliefs, goals, expectations, and motivations."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ideology"@en ; + "An Information Content Entity that consists of a collection of claims about how some part of the world is or should be and which is accepted as true by an Agent or Group of Agents such that it forms the basis of their beliefs, goals, expectations, and motivations."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000697 -cco:ont00000697 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000279 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001262 ; - rdfs:label "Enemy Person"@en ; - skos:definition "A Person who is the bearer of some Enemy Role."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Enemy Person"@en ; + "A Person who is the bearer of some Enemy Role."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000698 -cco:ont00000698 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000252 ; - rdfs:comment "By increasing the Exhaust Velocity of the gas, the Nozzle increases the Thrust generated."@en ; - rdfs:label "Convergent-Divergent Nozzle"@en ; - skos:altLabel "CD Nozzle"@en , - "de Laval Nozzle"@en ; - skos:definition "A Nozzle that consists of a tube with an asymmetric hourglass shape that is designed to accelerate hot pressurized gas by converting the heat energy of the gas flow into kinetic energy as it passes through the Nozzle Throat to generate increased Exhaust Velocity of the gas as it exits the Nozzle."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=De_Laval_nozzle&oldid=1062746288"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Convergent-Divergent Nozzle"@en ; + "CD Nozzle"@en , + "de Laval Nozzle"@en ; + "A Nozzle that consists of a tube with an asymmetric hourglass shape that is designed to accelerate hot pressurized gas by converting the heat energy of the gas flow into kinetic energy as it passes through the Nozzle Throat to generate increased Exhaust Velocity of the gas as it exits the Nozzle."@en ; + "By increasing the Exhaust Velocity of the gas, the Nozzle increases the Thrust generated."@en ; + "https://en.wikipedia.org/w/index.php?title=De_Laval_nozzle&oldid=1062746288"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000699 -cco:ont00000699 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 ; - rdfs:label "Afternoon"@en ; - skos:definition "A Temporal Interval that consists of the temporal regions between when the sun is at its apex (approximately 12:00pm) and when it sets (approximately 6:00pm)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Afternoon"@en ; + "A Temporal Interval that consists of the temporal regions between when the sun is at its apex (approximately 12:00pm) and when it sets (approximately 6:00pm)."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000700 -cco:ont00000700 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000998 ; - rdfs:label "Computer Network"@en ; - skos:altLabel "Data Network"@en ; - skos:definition "A Telecommunication Network that is designed to allow the exchange of data between two or more computers connected to the network."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Computer_network&oldid=1061571662"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Computer Network"@en ; + "Data Network"@en ; + "A Telecommunication Network that is designed to allow the exchange of data between two or more computers connected to the network."@en ; + "https://en.wikipedia.org/w/index.php?title=Computer_network&oldid=1061571662"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000701 -cco:ont00000701 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001145 ; - rdfs:label "Wire Receiver"@en ; - skos:definition "A Radio Receiver that uses a Wire Antenna to intercept radio signals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wire Receiver"@en ; + "A Radio Receiver that uses a Wire Antenna to intercept radio signals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000702 -cco:ont00000702 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002004 - ] ; - rdfs:label "Material Copy of an Image"@en ; - skos:altLabel "Image"@en ; - skos:definition "An Information Bearing Artifact that is designed to carry an Information Content Entity that represents some entity owing to a visual isomorphism between the carrying artifact and the entity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Image&oldid=1062709732"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of an Image"@en ; + "Image"@en ; + "An Information Bearing Artifact that is designed to carry an Information Content Entity that represents some entity owing to a visual isomorphism between the carrying artifact and the entity."@en ; + "https://en.wikipedia.org/w/index.php?title=Image&oldid=1062709732"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000703 -cco:ont00000703 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000159 ; - rdfs:label "Material Copy of a System Clock"@en ; - skos:altLabel "System Clock"@en ; - skos:definition "A Material Copy of a Timekeeping Instrument that is part of a computer and is designed to issue a steady high-frequency signal that is used to synchronize all of the computer's internal components."@en ; - cco:ont00001754 "http://www.thefreedictionary.com/system+clock" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Material Copy of a System Clock"@en ; + "System Clock"@en ; + "A Material Copy of a Timekeeping Instrument that is part of a computer and is designed to issue a steady high-frequency signal that is used to synchronize all of the computer's internal components."@en ; + "http://www.thefreedictionary.com/system+clock" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000704 -cco:ont00000704 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001326 ; - rdfs:label "Tunnel"@en ; - skos:definition "A Land Transportation Artifact that is designed to enable Ground Vehicles to travel underneath a surrounding soil, earth, or rock formation."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tunnel&oldid=1062456881"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Constructed Tunnel"@en ; + "A Transportation Artifact that is designed to be substantially enclosed, have access constrained to portals, and to enable travel through surrounding soil, earth, or rock formation."@en ; + "This class is not intended to include natural tunnels, such as caves."@en ; + "Federal Highway Administration. Guidance on Structures Subject to the National Tunnel Inspection Standards (NTIS). United States Department of Transportation, 27 Oct. 2015"^^xsd:string ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000705 -cco:ont00000705 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000677 ; - rdfs:label "Power Transmission Line"@en ; - skos:definition "A Product Transport Facility that is designed to transmit electricity over distance via a system of above ground wires including their supports."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electric_power_transmission&oldid=1062551058"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Transmission Line"@en ; + "A Product Transport Facility that is designed to transmit electricity over distance via a system of above ground wires including their supports."@en ; + "https://en.wikipedia.org/w/index.php?title=Electric_power_transmission&oldid=1062551058"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000706 -cco:ont00000706 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Terminal Board"@en ; - skos:definition "A Material Artifact that is designed to join electrical terminations and create an electrical circuit by means of a block which connects individual wires without a splice or physically joining the ends."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electrical_connector&oldid=1061247409"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Terminal Board"@en ; + "A Material Artifact that is designed to join electrical terminations and create an electrical circuit by means of a block which connects individual wires without a splice or physically joining the ends."@en ; + "https://en.wikipedia.org/w/index.php?title=Electrical_connector&oldid=1061247409"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000707 -cco:ont00000707 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Angle"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the angle between two lines or planes in relation to a vertex."@en ; - skos:example "degrees, radians" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Angle"@en ; + "A Measurement Unit that is used as a standard for measurement of the angle between two lines or planes in relation to a vertex."@en ; + "degrees, radians" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000708 -cco:ont00000708 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000881 ; - rdfs:label "Water Tower"@en ; - skos:definition "A Facility that is the bearer of functions realized in processes of storing water in an elevated container."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Water_tower&oldid=1059754959"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Water Tower"@en ; + "A Facility that is the bearer of functions realized in processes of storing water in an elevated container."@en ; + "https://en.wikipedia.org/w/index.php?title=Water_tower&oldid=1059754959"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000709 -cco:ont00000709 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001248 ; - rdfs:label "Visual Prosthesis"@en ; - skos:altLabel "Bionic Eye"@en ; - skos:definition "An Artificial Eye that is designed to replace a missing eye, which performs the function of an eye."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Visual_prosthesis&oldid=1059269261"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Visual Prosthesis"@en ; + "Bionic Eye"@en ; + "An Artificial Eye that is designed to replace a missing eye, which performs the function of an eye."@en ; + "https://en.wikipedia.org/w/index.php?title=Visual_prosthesis&oldid=1059269261"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000710 -cco:ont00000710 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001052 ; - rdfs:label "Command Post Facility"@en ; - skos:definition "A Military Facility that is designed to support the command and control of Military Operations or Forces."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/command-post" ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Command Post Facility"@en ; + "A Military Facility that is designed to support the command and control of Military Operations or Forces."@en ; + "http://www.dictionary.com/browse/command-post" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000711 -cco:ont00000711 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000156 ; - rdfs:label "Semi-automatic Pistol"@en ; - skos:definition "A Hand Gun that has a single fixed firing chamber machined into the rear of the barrel and an ammunition magazine capable of holding multiple Cartridges such that the Hand Gun is designed to automatically reload each time it is fired and to fire a Bullet with each successive pull of the trigger until the stored ammunition is depleted."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Semi-automatic_pistol&oldid=1058568715"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Semi-automatic Pistol"@en ; + "A Hand Gun that has a single fixed firing chamber machined into the rear of the barrel and an ammunition magazine capable of holding multiple Cartridges such that the Hand Gun is designed to automatically reload each time it is fired and to fire a Bullet with each successive pull of the trigger until the stored ammunition is depleted."@en ; + "https://en.wikipedia.org/w/index.php?title=Semi-automatic_pistol&oldid=1058568715"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000712 -cco:ont00000712 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000144 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000763 - ] ; - rdfs:label "Acceleration"@en ; - skos:definition "A Process Profile that is the rate of change of the Velocity of an object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Acceleration&oldid=1062249960"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Acceleration"@en ; + "A Process Profile that is the rate of change of the Velocity of an object."@en ; + "https://en.wikipedia.org/w/index.php?title=Acceleration&oldid=1062249960"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000713 -cco:ont00000713 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Vehicle"@en ; - skos:definition "A Material Artifact that is designed to facilitate the movement of material entities from one location to another by conveying them there."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vehicle"@en ; + "A Material Artifact that is designed to facilitate the movement of material entities from one location to another by conveying them there."@en ; + "https://en.wikipedia.org/w/index.php?title=Vehicle&oldid=1063682179"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000714 -cco:ont00000714 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001192 ; - rdfs:label "Horn Antenna"@en ; - skos:altLabel "Microwave Horn"@en ; - skos:definition "A Radio Antenna that consists of a flaring metal waveguide shaped like a horn to direct radio waves in a beam and can be used on its own or as a feeder for larger antenna structures, such as Parabolic Antennas."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Horn_antenna&oldid=1050375403"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Horn Antenna"@en ; + "Microwave Horn"@en ; + "A Radio Antenna that consists of a flaring metal waveguide shaped like a horn to direct radio waves in a beam and can be used on its own or as a feeder for larger antenna structures, such as Parabolic Antennas."@en ; + "https://en.wikipedia.org/w/index.php?title=Horn_antenna&oldid=1050375403"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000715 -cco:ont00000715 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001381 ; - rdfs:label "Prosthesis"@en ; - skos:definition "A Medical Artifact that is designed to replace a missing body part."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prosthesis"@en ; + "A Medical Artifact that is designed to replace a missing body part."@en ; + "https://en.wikipedia.org/w/index.php?title=Prosthesis&oldid=1063749698"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000716 -cco:ont00000716 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001049 ; - rdfs:label "Electric Battery"@en ; - skos:altLabel "Battery"@en ; - skos:definition "An Electrical Power Source that is designed to produce electric power by converting chemical energy to electrical energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Battery_(electricity)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electric Battery"@en ; + "Battery"@en ; + "An Electrical Power Source that is designed to produce electric power by converting chemical energy to electrical energy."@en ; + "https://en.wikipedia.org/wiki/Battery_(electricity)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000717 -cco:ont00000717 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001076 ; - rdfs:label "Fossil Fuel Power Plant"@en ; - skos:definition "An Electric Power Station that is designed to convert fossil fuels (e.g. coal, natural gas, or petroleum) into electrical energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fossil_fuel&oldid=1062298144"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fossil Fuel Power Plant"@en ; + "An Electric Power Station that is designed to convert fossil fuels (e.g. coal, natural gas, or petroleum) into electrical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Fossil_fuel&oldid=1062298144"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000718 -cco:ont00000718 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000460 ; - rdfs:label "Village"@en ; - skos:definition "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a hamlet but smaller than that of a Town."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/village" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Village"@en ; + "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a hamlet but smaller than that of a Town."@en ; + "http://www.merriam-webster.com/dictionary/village" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000719 -cco:ont00000719 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Counterfeit Instrument"@en ; - skos:definition "A Material Artifact that is designed to be a fake replica of some genuine Material Artifact."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Counterfeit Instrument"@en ; + "A Material Artifact that is designed to be a fake replica of some genuine Material Artifact."@en ; + "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000720 -cco:ont00000720 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000020 ; - rdfs:label "Cryogenic Storage Dewar"@en ; - skos:definition "A Container that is designed to store a Portion of Cryogenic Material (such as liquid helium or liquid oxygen) and which consists of, minimally, walls that are constructed from two or more layers that are separated by a high vacuum to provide thermal insulation between the interior and exterior of the dewar."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cryogenic_storage_dewar&oldid=1021282649"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cryogenic Storage Dewar"@en ; + "A Container that is designed to store a Portion of Cryogenic Material (such as liquid helium or liquid oxygen) and which consists of, minimally, walls that are constructed from two or more layers that are separated by a high vacuum to provide thermal insulation between the interior and exterior of the dewar."@en ; + "https://en.wikipedia.org/w/index.php?title=Cryogenic_storage_dewar&oldid=1021282649"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000721 -cco:ont00000721 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000804 ; - rdfs:label "Polarizing Prism"@en ; - skos:definition "A Prism designed to split a beam of light entering the Prism into components of varying polarization."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Polarizing Prism"@en ; + "A Prism designed to split a beam of light entering the Prism into components of varying polarization."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000722 -cco:ont00000722 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000146 ; - rdfs:label "Sea Level"@en ; - skos:definition "A Fiat Surface that divides the spheroid composed of Earth and its atmosphere at some point that corresponds to the mean level of calm water in the Earth’s oceans."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sea Level"@en ; + "A Fiat Surface that divides the spheroid composed of Earth and its atmosphere at some point that corresponds to the mean level of calm water in the Earth’s oceans."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000723 -cco:ont00000723 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000781 ; - rdfs:label "Vehicle Control System"@en ; - skos:definition "A Control System that is designed to enable some Agent to control some Vehicle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vehicle Control System"@en ; + "A Control System that is designed to enable some Agent to control some Vehicle."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000724 -cco:ont00000724 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001192 ; - rdfs:label "Parabolic Antenna"@en ; - skos:altLabel "Dish Antenna"@en , - "Parabolic Dish"@en ; - skos:definition "A Radio Antenna that uses a parabolic reflector to direct or receive radio waves and has a very high gain."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Parabolic_antenna&oldid=1057213241"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Parabolic Antenna"@en ; + "Dish Antenna"@en , + "Parabolic Dish"@en ; + "A Radio Antenna that uses a parabolic reflector to direct or receive radio waves and has a very high gain."@en ; + "https://en.wikipedia.org/w/index.php?title=Parabolic_antenna&oldid=1057213241"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000725 -cco:ont00000725 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000455 ; - rdfs:label "Wedding"@en ; - skos:altLabel "Act of Wedding Ceremony"@en ; - skos:definition "An Act of Ceremony in which two Persons are united in Marriage or a similar institution."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wedding&oldid=1063857279"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wedding"@en ; + "Act of Wedding Ceremony"@en ; + "An Act of Ceremony in which two Persons are united in Marriage or a similar institution."@en ; + "https://en.wikipedia.org/w/index.php?title=Wedding&oldid=1063857279"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000726 -cco:ont00000726 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000004 ; - rdfs:label "Decrease of Dependent Continuant"@en ; - skos:definition "A Change in which some Independent Continuant has a decrease in the level of some Dependent Continuant that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Dependent Continuant"@en ; + "A Change in which some Independent Continuant has a decrease in the level of some Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000727 -cco:ont00000727 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Communication Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process in which meaningful signs are conveyed from one entity to another."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication Artifact Function"@en ; + "An Artifact Function that is realized in a process in which meaningful signs are conveyed from one entity to another."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000728 -cco:ont00000728 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000215 ; - rdfs:comment "The submillimeter waveband is between the far-infrared and microwave wavebands and is typically taken to have a wavelength of between a few hundred micrometers and a millimeter."@en ; - rdfs:label "Submillimeter Wavelength Radio Telescope"@en ; - skos:altLabel "Microwave Telescope"@en ; - skos:definition "A Radio Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves from the submillimeter waveband (i.e. microwaves) to form an enhanced image of the Object."@en ; - cco:ont00001754 "http://kp12m.as.arizona.edu/docs/what_is_submillimeter.htm, https://en.wikipedia.org/wiki/Submillimetre_astronomy" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Submillimeter Wavelength Radio Telescope"@en ; + "Microwave Telescope"@en ; + "A Radio Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves from the submillimeter waveband (i.e. microwaves) to form an enhanced image of the Object."@en ; + "The submillimeter waveband is between the far-infrared and microwave wavebands and is typically taken to have a wavelength of between a few hundred micrometers and a millimeter."@en ; + "http://kp12m.as.arizona.edu/docs/what_is_submillimeter.htm, https://en.wikipedia.org/wiki/Submillimetre_astronomy" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000729 -cco:ont00000729 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000275 ; - rdfs:label "Spherical Coordinate System"@en ; - skos:definition "A Spatial Reference System for three-dimensional spatial regions that identifies each point using an ordered triple of numerical coordinates that consist of the radial distance of the point of interest from a fixed origin, its polar angle measured from a fixed zenith direction, and the azimuth angle of its orthogonal projection measured from a fixed direction on a reference plane that passes through the origin and is orthogonal to the zenith."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Spherical_coordinate_system&oldid=1061029174"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spherical Coordinate System"@en ; + "A Spatial Reference System for three-dimensional spatial regions that identifies each point using an ordered triple of numerical coordinates that consist of the radial distance of the point of interest from a fixed origin, its polar angle measured from a fixed zenith direction, and the azimuth angle of its orthogonal projection measured from a fixed direction on a reference plane that passes through the origin and is orthogonal to the zenith."@en ; + "https://en.wikipedia.org/w/index.php?title=Spherical_coordinate_system&oldid=1061029174"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000730 -cco:ont00000730 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Hydraulic Power Transfer Unit"@en ; - skos:definition "A Material Artifact that is designed to transfer hydraulic power from one of an Aircraft's hydraulic systems to another in the event that a system has failed or been turned off."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydraulic Power Transfer Unit"@en ; + "A Material Artifact that is designed to transfer hydraulic power from one of an Aircraft's hydraulic systems to another in the event that a system has failed or been turned off."@en ; + "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000731 -cco:ont00000731 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001163 ; - rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en , - "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations ('Deviation Measurement Information Content Entity')."@en ; - rdfs:label "Deviation Measurement Information Content Entity"@en ; - skos:altLabel "Conformance Measurement"@en , - "Degree of Conformance"@en , - "Degree of Deviation"@en , - "Deviation Measurement"@en ; - skos:definition "A Measurement Information Content Entity that is a measurement of the extent to which an entity conforms to how it is expected or supposed to be."@en ; - skos:example "a missile impact deviates from its target location by 100 feet" , - "a satellite deviaties from its predicted orbital path by 5 kilometers" , - "an overweight piece of luggage deviates from an airline's maximum allowed weight by +10 pounds" ; - skos:scopeNote "In order for a Deviation to exist, an entity must first be expected, represented, prescribed, or predicted as being a certain way. Then, at a future time, this value can be compared to its actual, reported, or measured value to determine the Deviation between these values."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Deviation Measurement Information Content Entity"@en ; + "Conformance Measurement"@en , + "Degree of Conformance"@en , + "Degree of Deviation"@en , + "Deviation Measurement"@en ; + "A Measurement Information Content Entity that is a measurement of the extent to which an entity conforms to how it is expected or supposed to be."@en ; + "a missile impact deviates from its target location by 100 feet" , + "a satellite deviaties from its predicted orbital path by 5 kilometers" , + "an overweight piece of luggage deviates from an airline's maximum allowed weight by +10 pounds" ; + "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en , + "In order for a Deviation to exist, an entity must first be expected, represented, prescribed, or predicted as being a certain way. Then, at a future time, this value can be compared to its actual, reported, or measured value to determine the Deviation between these values."@en , + "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations ('Deviation Measurement Information Content Entity')."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000732 -cco:ont00000732 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000150 ; - rdfs:comment "The corresponding Wavelength range is 1,000–1 mm"@en ; - rdfs:label "Microwave Frequency"@en ; - skos:definition "A Radio Frequency that is between 300 MHz and 300 GHz."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Microwave&oldid=1062124842"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Microwave Frequency"@en ; + "A Radio Frequency that is between 300 MHz and 300 GHz."@en ; + "The corresponding Wavelength range is 1,000–1 mm"@en ; + "https://en.wikipedia.org/w/index.php?title=Microwave&oldid=1062124842"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000733 -cco:ont00000733 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001360 ; - rdfs:label "Spherical"@en ; - skos:definition "A Three Dimensional Shape inhering in a bearer in virtue of all of its cross sections being round."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spherical"@en ; + "A Three Dimensional Shape inhering in a bearer in virtue of all of its cross sections being round."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000734 -cco:ont00000734 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002066 ; - rdfs:label "Explosive Land Mine"@en ; - skos:altLabel "Land Mine"@en ; - skos:definition "An Explosive Mine that is designed to be concealed under or on the ground."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Land_mine&oldid=1060289159"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Explosive Land Mine"@en ; + "Land Mine"@en ; + "An Explosive Mine that is designed to be concealed under or on the ground."@en ; + "https://en.wikipedia.org/w/index.php?title=Land_mine&oldid=1060289159"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000735 -cco:ont00000735 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000406 ; - rdfs:label "Geospatial Region Bounding Box Identifier List"@en ; - skos:definition "A Measurement Unit of Geocoordinate that is comprised of 4 pairs of coordinates, one for each of the 4 defining points (North, West, South, East) of a Geospatial Region Bounding Box."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Region Bounding Box Identifier List"@en ; + "A Measurement Unit of Geocoordinate that is comprised of 4 pairs of coordinates, one for each of the 4 defining points (North, West, South, East) of a Geospatial Region Bounding Box."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000736 -cco:ont00000736 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Transducer"@en ; - skos:definition "A Material Artifact that is designed to convert one form of energy to another."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transducer"@en ; + "A Material Artifact that is designed to convert one form of energy to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Transducer&oldid=1053290948"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000737 -cco:ont00000737 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000483 ; - rdfs:label "Forward Operations Base"@en ; - skos:altLabel "Forward Operating Base"@en ; - skos:definition "A Military Base that is located relatively close to an offensive Area of Operations, is supported by the Base of Operations, and is designed to support local strategic objectives and tactical operations."@en ; - cco:ont00001753 "FOB" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Forward_operating_base&oldid=1059263624"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Forward Operations Base"@en ; + "Forward Operating Base"@en ; + "A Military Base that is located relatively close to an offensive Area of Operations, is supported by the Base of Operations, and is designed to support local strategic objectives and tactical operations."@en ; + "FOB" ; + "https://en.wikipedia.org/w/index.php?title=Forward_operating_base&oldid=1059263624"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000738 -cco:ont00000738 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001367 ; - rdfs:label "Length"@en ; - skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's greatest extent in one direction."@en ; - cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Length"@en ; + "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's greatest extent in one direction."@en ; + "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000739 -cco:ont00000739 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000676 ; - rdfs:label "Act of Sojourn"@en ; - skos:definition "An Act of Inhabitancy in which a Person lives in a dwelling temporarily, often during stages of an Act of Travel."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Sojourn"@en ; + "An Act of Inhabitancy in which a Person lives in a dwelling temporarily, often during stages of an Act of Travel."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000740 -cco:ont00000740 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000002 ; - rdfs:comment "This class is designed to group continuants according to a very broad criterion and is not intended to be used as a parent class for entities that can be more specifically represented under another class. Hence, Natural Resource may be an appropriate subtype but Money, Oil, and Gold Mine are not."@en ; - rdfs:label "Resource"@en ; - skos:definition "A Continuant that is owned by, in the possession of, or is otherwise controlled by an Agent such that it could be used by that Agent."@en ; - skos:example "a group of interns" , - "a knowledge base" , - "a plot of land" , - "a software program" , - "a sum of money" , - "a vehicle" ; - skos:scopeNote "Resources are Resources for some Agent. If no instance of Agent existed, no instance of Resource would exist either. It is not a requirement that something be valuable in order for it to be a Resource. Thus the value of something can drastically change without altering whether that thing is a Resource."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Resource"@en ; + "A Continuant that is owned by, in the possession of, or is otherwise controlled by an Agent such that it could be used by that Agent."@en ; + "a group of interns" , + "a knowledge base" , + "a plot of land" , + "a software program" , + "a sum of money" , + "a vehicle" ; + "Resources are Resources for some Agent. If no instance of Agent existed, no instance of Resource would exist either. It is not a requirement that something be valuable in order for it to be a Resource. Thus the value of something can drastically change without altering whether that thing is a Resource."@en , + "This class is designed to group continuants according to a very broad criterion and is not intended to be used as a parent class for entities that can be more specifically represented under another class. Hence, Natural Resource may be an appropriate subtype but Money, Oil, and Gold Mine are not."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000741 -cco:ont00000741 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Targeting"@en ; - skos:definition "A Planned Act wherein some Agent maintains one or more entities as the objects of potential action given some operational requirement."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Targeting"@en ; + "A Planned Act wherein some Agent maintains one or more entities as the objects of potential action given some operational requirement."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000742 -cco:ont00000742 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Ignition System"@en ; - skos:definition "A Material Artifact that is designed to produce an Ignition process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ignition System"@en ; + "A Material Artifact that is designed to produce an Ignition process."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000743 -cco:ont00000743 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000702 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002005 - ] ; - rdfs:label "Material Copy of a Chart"@en ; - skos:altLabel "Chart"@en ; - skos:definition "A Material Copy of an Image that is designed to carry some Representational Information Content Entity that is prescribed by some canonical visual format."@en ; - cco:ont00001754 "Adapted from “Chart.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/chart. Accessed 4 Aug. 2024." ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Chart"@en ; + "Chart"@en ; + "A Material Copy of an Image that is designed to carry some Representational Information Content Entity that is prescribed by some canonical visual format."@en ; + "Adapted from “Chart.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/chart. Accessed 4 Aug. 2024." ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000744 -cco:ont00000744 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000433 ; - rdfs:label "Act of Social Group Membership"@en ; - skos:definition "An Act of Association wherein a Person belongs to some Social Group."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Social Group Membership"@en ; + "An Act of Association wherein a Person belongs to some Social Group."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000745 -cco:ont00000745 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001176 ; - rdfs:label "Point Estimate Information Content Entity"@en ; - skos:altLabel "Best Estimate"@en , - "Point Estimate"@en , - "Point Estimate Measurement Information Content Entity"@en ; - skos:definition "An Estimate Information Content Entity that consists of a single value for the measured entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Point Estimate Information Content Entity"@en ; + "Best Estimate"@en , + "Point Estimate"@en , + "Point Estimate Measurement Information Content Entity"@en ; + "An Estimate Information Content Entity that consists of a single value for the measured entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000746 -cco:ont00000746 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000638 ; - rdfs:label "Combustion Engine"@en ; - skos:definition "A Heat Engine that is designed to convert thermal energy that is generated through a local Combustion process into mechanical energy."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Combustion Engine"@en ; + "A Heat Engine that is designed to convert thermal energy that is generated through a local Combustion process into mechanical energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000747 -cco:ont00000747 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000549 ; - rdfs:label "Canal"@en ; - skos:definition "A Water Transportation Artifact that is an artificial Hydrographic Feature designed to convey water or enable Watercraft to travel inland."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Canal&oldid=1059514223" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Canal"@en ; + "A Water Transportation Artifact that is an artificial Hydrographic Feature designed to convey water or enable Watercraft to travel inland."@en ; + "https://en.wikipedia.org/w/index.php?title=Canal&oldid=1059514223" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000748 -cco:ont00000748 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001150 ; - rdfs:label "Bullet"@en ; - skos:definition "A Portion of Ammunition that is designed to be projected by a Firearm, Sling, Slingshot, or Air Gun, but which does not (typically) contain explosives."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bullet&oldid=1062391591"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bullet"@en ; + "A Portion of Ammunition that is designed to be projected by a Firearm, Sling, Slingshot, or Air Gun, but which does not (typically) contain explosives."@en ; + "https://en.wikipedia.org/w/index.php?title=Bullet&oldid=1062391591"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000749 -cco:ont00000749 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000894 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom cco:ont00000498 - ] ; - rdfs:label "Julian Day Number"@en ; - skos:definition "A Decimal Date Identifier that designates some Julian Day by using a number to indicate the sequential ordering of the Day since the Julian Date epoch."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Julian Day Number"@en ; + "A Decimal Date Identifier that designates some Julian Day by using a number to indicate the sequential ordering of the Day since the Julian Date epoch."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000750 -cco:ont00000750 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000517 ; - rdfs:label "Text Messaging"@en ; - skos:altLabel "Act of Text Messaging"@en , - "Act of Texting"@en ; - skos:definition "An Act of Communication by Media involving the exchange of brief written messages between fixed-line phone or mobile phone and fixed or portable devices over a network."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Text_messaging&oldid=1062261405"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Text Messaging"@en ; + "Act of Text Messaging"@en , + "Act of Texting"@en ; + "An Act of Communication by Media involving the exchange of brief written messages between fixed-line phone or mobile phone and fixed or portable devices over a network."@en ; + "https://en.wikipedia.org/w/index.php?title=Text_messaging&oldid=1062261405"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000751 -cco:ont00000751 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001324 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001910 ; - owl:someValuesFrom obo:BFO_0000015 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001324 ; - rdfs:label "Action Permission"@en ; - skos:altLabel "Authorization"@en , - "License"@en ; - skos:definition "A Process Regulation that permits some Process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Action Permission"@en ; + "Authorization"@en , + "License"@en ; + "A Process Regulation that permits some Process."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000752 -cco:ont00000752 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000144 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001857 ; - owl:someValuesFrom cco:ont00000099 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf obo:BFO_0000144 ; - rdfs:comment "This is a defined class used to group process profiles of Wave Processes. Note that not every relevant process profile can be asserted as a subtype, however, because they (e.g. Frequency and Amplitude) are applicable to other processes as well (e.g. Oscillation Process)."@en ; - rdfs:label "Wave Process Profile"@en ; - skos:definition "A Process Profile of a Wave Process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Wave Process Profile"@en ; + "A Process Profile of a Wave Process."@en ; + "This is a defined class used to group process profiles of Wave Processes. Note that not every relevant process profile can be asserted as a subtype, however, because they (e.g. Frequency and Amplitude) are applicable to other processes as well (e.g. Oscillation Process)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000753 -cco:ont00000753 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000150 ; - rdfs:comment "The corresponding Wavelength range is 1,000–100 km"@en ; - rdfs:label "Ultra Low Frequency"@en ; - skos:altLabel "ITU Band Number 3"@en ; - skos:definition "A Radio Frequency that is between 300 Hz and 3 kHz."@en ; - cco:ont00001753 "ULF" ; - cco:ont00001754 "International Telecommunication Union (ITU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ultra Low Frequency"@en ; + "ITU Band Number 3"@en ; + "A Radio Frequency that is between 300 Hz and 3 kHz."@en ; + "The corresponding Wavelength range is 1,000–100 km"@en ; + "ULF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000754 -cco:ont00000754 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001047 ; - rdfs:comment "Divisions between EM radiation frequencies are fiat and sources vary on where to draw boundaries."@en ; - rdfs:label "Electromagnetic Radiation Frequency"@en ; - skos:definition "A Frequency that is characterized by the rate of Oscillations per second of an Electromagnetic Wave."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Electromagnetic Radiation Frequency"@en ; + "A Frequency that is characterized by the rate of Oscillations per second of an Electromagnetic Wave."@en ; + "Divisions between EM radiation frequencies are fiat and sources vary on where to draw boundaries."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000755 -cco:ont00000755 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000026 ; - rdfs:label "Zenith"@en ; - skos:definition "A One-Dimensional Spatial Region that extends from a given location upward along the local vertical direction pointing in the direction opposite the apparent Gravitational Force at that location."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Zenith&oldid=1052625030"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Zenith"@en ; + "A One-Dimensional Spatial Region that extends from a given location upward along the local vertical direction pointing in the direction opposite the apparent Gravitational Force at that location."@en ; + "https://en.wikipedia.org/w/index.php?title=Zenith&oldid=1052625030"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000756 -cco:ont00000756 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002006 - ] ; - rdfs:label "Material Copy of a Database"@en ; - skos:altLabel "Database"@en ; - skos:definition "An Information Bearing Artifact that is designed to carry some set of specific Information Content Entities and to be rapidly searchable and retrievable."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Database&oldid=1057024641"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Database"@en ; + "Database"@en ; + "An Information Bearing Artifact that is designed to carry some set of specific Information Content Entities and to be rapidly searchable and retrievable."@en ; + "https://en.wikipedia.org/w/index.php?title=Database&oldid=1057024641"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000757 -cco:ont00000757 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000052 ; - rdfs:label "Synagogue"@en ; - skos:definition "A Religious Facility that is designed for Judaic worship and prayer."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Synagogue&oldid=1063773298"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Synagogue"@en ; + "A Religious Facility that is designed for Judaic worship and prayer."@en ; + "https://en.wikipedia.org/w/index.php?title=Synagogue&oldid=1063773298"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000758 -cco:ont00000758 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Component Role"@en ; - skos:definition "A Role that inheres in an entity having a discrete structure in virtue of that entity being part of a system considered at a particular level of analysis."@en ; - cco:ont00001754 "ISO/IEC. 1998. Information Technology ― System and Software Integrity Levels Geneva, Switzerland: International Organization for Standardization (ISO)/International Electrotechnical Commission (IEC). ISO/IEC. 15026:1998. : 3.1"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Component Role"@en ; + "A Role that inheres in an entity having a discrete structure in virtue of that entity being part of a system considered at a particular level of analysis."@en ; + "ISO/IEC. 1998. Information Technology ― System and Software Integrity Levels Geneva, Switzerland: International Organization for Standardization (ISO)/International Electrotechnical Commission (IEC). ISO/IEC. 15026:1998. : 3.1"@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000759 -cco:ont00000759 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000784 ; - rdfs:label "Color Saturation"@en ; - skos:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect high intensity light distributed across fewer wavelengths, typically considered on a continuum of purity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Color Saturation"@en ; + "An Optical Property that inheres in a bearer in virtue of its capacity to reflect high intensity light distributed across fewer wavelengths, typically considered on a continuum of purity."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000760 -cco:ont00000760 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000752 ; - rdfs:label "Surface Wave Profile"@en ; - skos:altLabel "Surface Wave"@en ; - skos:definition "A Wave Process Profile in which the Wave Process propogates along the surface of a medium and which involves both transverse and longitudinal wave profiles such that the motion of the displacement of participating particles is circular or elliptical."@en ; - skos:example "the motion of an ocean wave" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Surface Wave Profile"@en ; + "Surface Wave"@en ; + "A Wave Process Profile in which the Wave Process propogates along the surface of a medium and which involves both transverse and longitudinal wave profiles such that the motion of the displacement of participating particles is circular or elliptical."@en ; + "the motion of an ocean wave" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000761 -cco:ont00000761 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000226 ; - rdfs:label "Pier"@en ; - skos:definition "A Transportation Facility that is designed to partially enclose a harbor and form a landing place for Watercraft."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pier&oldid=1057802753"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pier"@en ; + "A Transportation Facility that is designed to partially enclose a harbor and form a landing place for Watercraft."@en ; + "https://en.wikipedia.org/w/index.php?title=Pier&oldid=1057802753"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000762 -cco:ont00000762 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000415 ; - rdfs:label "Fungicide Artifact Function"@en ; - skos:definition "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some fungus or fungal spore."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fungicide&oldid=1056769271"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fungicide Artifact Function"@en ; + "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some fungus or fungal spore."@en ; + "https://en.wikipedia.org/w/index.php?title=Fungicide&oldid=1056769271"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000763 -cco:ont00000763 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000144 ; - rdfs:label "Velocity"@en ; - skos:definition "A Process Profile of an object's Motion that is characterized by its Speed and direction with respect to a frame of reference."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Velocity&oldid=1063300750"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Velocity"@en ; + "A Process Profile of an object's Motion that is characterized by its Speed and direction with respect to a frame of reference."@en ; + "https://en.wikipedia.org/w/index.php?title=Velocity&oldid=1063300750"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000764 -cco:ont00000764 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000504 ; - rdfs:label "Optical Focusing Artifact Function"@en ; - skos:definition "An Optical Processing Artifact Function that is realized by a Material Artifact participating in a light focusing event in which the Material Artifact causes the light beam to converge on a target spatial point."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Focusing Artifact Function"@en ; + "An Optical Processing Artifact Function that is realized by a Material Artifact participating in a light focusing event in which the Material Artifact causes the light beam to converge on a target spatial point."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000765 -cco:ont00000765 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000007 ; - rdfs:label "Wave Production"@en ; - skos:altLabel "Wave Production Process"@en ; - skos:definition "A Natural Process in which a Wave Process is generated."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wave Production"@en ; + "Wave Production Process"@en ; + "A Natural Process in which a Wave Process is generated."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000766 -cco:ont00000766 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Hardness"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of the degree to which it can be turned, bowed, or twisted without breaking."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hardness"@en ; + "A Quality that inheres in a bearer in virtue of the degree to which it can be turned, bowed, or twisted without breaking."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000767 -cco:ont00000767 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:comment "A Lubrication System typical consists of a reservoir, pump, heat exchanger, filter, regulator, valves, sensors, pipes, and hoses. In some cases it also includes the passageways and openings within the artifact it is designed to lubricate. For example, the oil holes in a bearing and crankshaft."@en ; - rdfs:label "Lubrication System"@en ; - skos:definition "A Material Artifact that is designed to contain, transfer, and regulate the flow of lubricant to multiple locations in a Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lubrication System"@en ; + "A Material Artifact that is designed to contain, transfer, and regulate the flow of lubricant to multiple locations in a Material Artifact."@en ; + "A Lubrication System typical consists of a reservoir, pump, heat exchanger, filter, regulator, valves, sensors, pipes, and hoses. In some cases it also includes the passageways and openings within the artifact it is designed to lubricate. For example, the oil holes in a bearing and crankshaft."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000768 -cco:ont00000768 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Amount"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of the total, aggregate or sum of a number of discrete items or material the entity contains as parts."@en ; - cco:ont00001754 "http://en.wiktionary.org/wiki/amount" ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Amount"@en ; + "A Quality that inheres in a bearer in virtue of the total, aggregate or sum of a number of discrete items or material the entity contains as parts."@en ; + "http://en.wiktionary.org/wiki/amount" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000769 -cco:ont00000769 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000133 ; - rdfs:label "Act of Requesting"@en ; - skos:definition "An Act of Directive Communication performed by asking for something."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/request" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Requesting"@en ; + "An Act of Directive Communication performed by asking for something."@en ; + "http://www.merriam-webster.com/dictionary/request" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000770 -cco:ont00000770 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Density"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the mass of an object per unit of its total volume."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Density"@en ; + "A Measurement Unit that is used as a standard for measurement of the mass of an object per unit of its total volume."@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000771 -cco:ont00000771 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000995 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000601 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Imaging Instrument"@en ; - skos:definition "A Material Artifact that is designed to bear an Imaging Artifact Function."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Imaging Instrument"@en ; + "A Material Artifact that is designed to bear an Imaging Artifact Function."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000772 -cco:ont00000772 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000144 ; - rdfs:comment "An Impulse changes the Momentum (and potentially also the direction of Motion) of the object it is applied to and is typically measured in Newton meters."@en ; - rdfs:label "Impulsive Force"@en ; - skos:altLabel "Imp"@en , - "Impulse"@en , - "J"@en ; - skos:definition "A Process Profile that is the integral of a Force that is applied to a portion of matter over a period of time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Impulsive Force"@en ; + "Imp"@en , + "Impulse"@en , + "J"@en ; + "A Process Profile that is the integral of a Force that is applied to a portion of matter over a period of time."@en ; + "An Impulse changes the Momentum (and potentially also the direction of Motion) of the object it is applied to and is typically measured in Newton meters."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000773 -cco:ont00000773 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000789 ; - rdfs:label "Curvilinear Motion"@en ; - skos:altLabel "Curved Motion"@en ; - skos:definition "A Translational Motion process in which an Object moves along a curved path."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Curvilinear Motion"@en ; + "Curved Motion"@en ; + "A Translational Motion process in which an Object moves along a curved path."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000774 -cco:ont00000774 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000199 ; - rdfs:label "Video Camera"@en ; - skos:definition "A Camera that is designed to form and digitally or physically record a continuous stream of subsequent images of an entity or scene such that the images can be played back in succession as a video."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Video Camera"@en ; + "A Camera that is designed to form and digitally or physically record a continuous stream of subsequent images of an entity or scene such that the images can be played back in succession as a video."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000775 -cco:ont00000775 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000796 ; - rdfs:label "Locomotive"@en ; - skos:definition "A Rail Transport Vehicle that is designed to provide the motive power for a Train."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Locomotive&oldid=1062802629"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Locomotive"@en ; + "A Rail Transport Vehicle that is designed to provide the motive power for a Train."@en ; + "https://en.wikipedia.org/w/index.php?title=Locomotive&oldid=1062802629"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000776 -cco:ont00000776 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Signal Detection Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in the process of discerning between information-bearing patterns and random patterns, or noise, that distract from the information."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Detection_theory&oldid=1049765804"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Signal Detection Artifact Function"@en ; + "An Artifact Function that is realized in the process of discerning between information-bearing patterns and random patterns, or noise, that distract from the information."@en ; + "https://en.wikipedia.org/w/index.php?title=Detection_theory&oldid=1049765804"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000777 -cco:ont00000777 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001221 ; - rdfs:label "Hydraulic Motor"@en ; - skos:definition "A Physically Powered Engine that converts hydraulic pressure and flow into torque and angular displacement."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hydraulic_motor&oldid=1027427666"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydraulic Motor"@en ; + "A Physically Powered Engine that converts hydraulic pressure and flow into torque and angular displacement."@en ; + "https://en.wikipedia.org/w/index.php?title=Hydraulic_motor&oldid=1027427666"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000778 -cco:ont00000778 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000881 ; - rdfs:label "Chemical Depot"@en ; - skos:definition "A Storage Facility that is designed to store chemicals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Chemical Depot"@en ; + "A Storage Facility that is designed to store chemicals."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000779 -cco:ont00000779 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - rdfs:label "Portion of Cryosphere"@en ; - skos:definition "A fiat object part of the frozen part of a natural satellite's hydosphere"@en ; - cco:ont00001754 "https://oceanservice.noaa.gov/facts/cryosphere.html (accessed 03/06/2023)"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Cryosphere"@en ; + "A fiat object part of the frozen part of a natural satellite's hydosphere"@en ; + "NOAA. “What Is the Cryosphere?” National Ocean Service, 16 June 2024, oceanservice.noaa.gov/facts/cryosphere.html. Accessed 24 Mar. 2026."^^xsd:string ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000780 -cco:ont00000780 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Ethnicity"@en ; - skos:definition "A Quality that inheres in its bearers by virtue of a common heritage, often consisting of a common language, a common culture (often including a shared religion) and an ideology that stresses common ancestry or endogamy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ethnicity"@en ; + "A Quality that inheres in its bearers by virtue of a common heritage, often consisting of a common language, a common culture (often including a shared religion) and an ideology that stresses common ancestry or endogamy."@en ; + "https://en.wikipedia.org/w/index.php?title=Ethnic_group&oldid=1063804490"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000781 -cco:ont00000781 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Control System"@en ; - skos:definition "A Material Artifact that is designed to manage, command, direct, or regulate the behavior of at least one other Material Artifact."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Control_system&oldid=1061817176"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Control System"@en ; + "A Material Artifact that is designed to manage, command, direct, or regulate the behavior of at least one other Material Artifact."@en ; + "https://en.wikipedia.org/w/index.php?title=Control_system&oldid=1061817176"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000782 -cco:ont00000782 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Factory"@en ; - skos:definition "A Facility that is designed for manufacturing or refining material products."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Factory&oldid=1064125324"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Factory"@en ; + "A Facility that is designed for manufacturing or refining material products."@en ; + "https://en.wikipedia.org/w/index.php?title=Factory&oldid=1064125324"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000783 -cco:ont00000783 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000557 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001819 ; - owl:someValuesFrom cco:ont00000950 - ] ; - rdfs:label "Stasis of Non-Mission Capable Maintenance"@en ; - skos:definition "A Stasis of Non-Mission Capable during which the participating Continuant is not capable of performing its primary functions for the specified Mission due to participating in an Act Of Maintenance."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Stasis of Non-Mission Capable Maintenance"@en ; + "A Stasis of Non-Mission Capable during which the participating Continuant is not capable of performing its primary functions for the specified Mission due to participating in an Act Of Maintenance."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000784 -cco:ont00000784 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000628 ; - rdfs:label "Optical Property"@en ; - skos:definition "A Disposition to Interact with Electromagnetic Radiation that is realized when its bearer interacts with electromagnetic waves within the visible light spectrum."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Property"@en ; + "A Disposition to Interact with Electromagnetic Radiation that is realized when its bearer interacts with electromagnetic waves within the visible light spectrum."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000785 -cco:ont00000785 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001320 ; - rdfs:label "Radio Repeater"@en ; - skos:definition "A Radio Transceiver that is designed to receive a radio signal, amplify it, and retransmit it (often on another frequency)."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Repeater&oldid=1040047439"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Repeater"@en ; + "A Radio Transceiver that is designed to receive a radio signal, amplify it, and retransmit it (often on another frequency)."@en ; + "https://en.wikipedia.org/w/index.php?title=Repeater&oldid=1040047439"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000786 -cco:ont00000786 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000611 ; - rdfs:label "Increase of Role"@en ; - skos:definition "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Role that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Role"@en ; + "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Role that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000787 -cco:ont00000787 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000967 ; - rdfs:label "Altitude"@en ; - skos:definition "A Height that inheres in a Site that externally connects an Independent Continuant to either the surface of the Earth or the Earth's mean Sea Level."@en ; - cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Altitude"@en ; + "A Height that inheres in a Site that externally connects an Independent Continuant to either the surface of the Earth or the Earth's mean Sea Level."@en ; + "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000788 -cco:ont00000788 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000634 ; - rdfs:label "Turbine Steam Engine"@en ; - skos:altLabel "Steam Turbine"@en ; - skos:definition "A Steam Engine that is designed to extract thermal energy from pressurized steam and use it to do mechanical work on a rotating output shaft."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Steam_turbine&oldid=1060224962"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Turbine Steam Engine"@en ; + "Steam Turbine"@en ; + "A Steam Engine that is designed to extract thermal energy from pressurized steam and use it to do mechanical work on a rotating output shaft."@en ; + "https://en.wikipedia.org/w/index.php?title=Steam_turbine&oldid=1060224962"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000789 -cco:ont00000789 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001133 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000763 - ] ; - rdfs:label "Translational Motion"@en ; - skos:definition "A Motion Process in which the participating Object changes its position from one portion of space to another."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Translational Motion"@en ; + "A Motion Process in which the participating Object changes its position from one portion of space to another."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000790 -cco:ont00000790 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001049 ; - rdfs:label "Direct Current Power Source"@en ; - skos:definition "An Electrical Power Source that is designed to transfer electrical power in the form of direct current."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Direct Current Power Source"@en ; + "An Electrical Power Source that is designed to transfer electrical power in the form of direct current."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000791 -cco:ont00000791 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Chemical Reaction Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process that leads to the transformation of one set of chemical substances to another."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Chemical_reaction&oldid=1063262412"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Chemical Reaction Artifact Function"@en ; + "An Artifact Function that is realized in a process that leads to the transformation of one set of chemical substances to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Chemical_reaction&oldid=1063262412"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000792 -cco:ont00000792 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001009 ; - rdfs:label "Catadioptric Optical Telescope"@en ; - skos:altLabel "Catadioptric Telescope"@en ; - skos:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light through the use of a combination of Lenses and Mirrors to form an enhanced image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Catadioptric_system&oldid=1017210114"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Catadioptric Optical Telescope"@en ; + "Catadioptric Telescope"@en ; + "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light through the use of a combination of Lenses and Mirrors to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Catadioptric_system&oldid=1017210114"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000793 -cco:ont00000793 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000256 ; - rdfs:label "Fuel Ventilation System"@en ; - skos:definition "A Fluid Control Artifact that is designed to allow air into the Fuel Tank to take the place of burned fuel."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel Ventilation System"@en ; + "A Fluid Control Artifact that is designed to allow air into the Fuel Tank to take the place of burned fuel."@en ; + "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000794 -cco:ont00000794 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000207 ; - rdfs:label "Geospatial Ellipse"@en ; - skos:definition "A One-Dimensional Geospatial Boundary that is formed by following a symmetric arc between four vertices which are connected to the center point of the ellipse via a straight line."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Ellipse"@en ; + "A One-Dimensional Geospatial Boundary that is formed by following a symmetric arc between four vertices which are connected to the center point of the ellipse via a straight line."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000795 -cco:ont00000795 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000098 ; - rdfs:label "Electrical Conduction Artifact Function"@en ; - skos:definition "An Electrical Artifact Function that is realized by a Material Artifact being used to conduct an electric current."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Conduction Artifact Function"@en ; + "An Electrical Artifact Function that is realized by a Material Artifact being used to conduct an electric current."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000796 -cco:ont00000796 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000618 ; - rdfs:label "Rail Transport Vehicle"@en ; - skos:definition "A Ground Vehicle that is designed to convey cargo, passengers, or equipment by Railway."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rail Transport Vehicle"@en ; + "A Ground Vehicle that is designed to convey cargo, passengers, or equipment by Railway."@en ; + "https://en.wikipedia.org/w/index.php?title=Rail_transport&oldid=1063793805"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000797 -cco:ont00000797 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Hazel"@en ; - skos:definition "A Color that is a combination of Brown and Green, typically associated with eye color."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hazel"@en ; + "A Color that is a combination of Brown and Green, typically associated with eye color."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000798 -cco:ont00000798 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00000958 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00000893 - ] ; - rdfs:comment "This class continues to use the word ‘bearing’ in its rdfs:label for legacy reasons. It should be understood that all instances of this class are carriers of information content entities and only, strictly speaking, a bearer of their concretizations."@en ; - rdfs:label "Information Bearing Artifact"@en ; - skos:altLabel "Information Carrying Artifact"@en ; - skos:definition "A Material Artifact that carries an Information Content Entity and is designed to do so using a particular format or structure."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Information Bearing Artifact"@en ; + "Information Carrying Artifact"@en ; + "A Material Artifact that carries an Information Content Entity and is designed to do so using a particular format or structure."@en ; + "This class continues to use the word ‘bearing’ in its rdfs:label for legacy reasons. It should be understood that all instances of this class are carriers of information content entities and only, strictly speaking, a bearer of their concretizations."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000799 -cco:ont00000799 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002007 - ] ; - rdfs:label "Material Copy of a List"@en ; - skos:altLabel "List"@en ; - skos:definition "An Information Bearing Artifact that consists of one or more Information Bearing Artifacts that carry Information Content Entities and are the subjects of some Sequence Position Ordinality."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=List_(abstract_data_type)&oldid=1041588680"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a List"@en ; + "List"@en ; + "An Information Bearing Artifact that consists of one or more Information Bearing Artifacts that carry Information Content Entities and are the subjects of some Sequence Position Ordinality."@en ; + "https://en.wikipedia.org/w/index.php?title=List_(abstract_data_type)&oldid=1041588680"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000800 -cco:ont00000800 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001869 ; - owl:someValuesFrom cco:ont00000619 - ] ; - rdfs:label "Day"@en ; - skos:definition "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one rotation around its Rotational Axis as specified relative to a particular Temporal Reference System."@en ; - skos:scopeNote "Unless otherwise specified, a Day is assumed to be relative to the rotational motion of the Earth and is approximately equal to a twenty-four hour temporal region for which the start and end times are specified by the Temporal Reference System used."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=day" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Day"@en ; + "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one rotation around its Rotational Axis as specified relative to a particular Temporal Reference System."@en ; + "Unless otherwise specified, a Day is assumed to be relative to the rotational motion of the Earth and is approximately equal to a twenty-four hour temporal region for which the start and end times are specified by the Temporal Reference System used."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=day" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000801 -cco:ont00000801 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000161 ; - rdfs:label "y-Axis"@en ; - skos:definition "A Coordinate System Axis designated by the variable 'y'."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "y-Axis"@en ; + "A Coordinate System Axis designated by the variable 'y'."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000802 -cco:ont00000802 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000641 ; - rdfs:label "Stage"@en ; - skos:definition "An Entertainment Facility that is designed to provide a space upon which entertaining performances or productions can occur."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Stage_(theatre)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stage"@en ; + "An Entertainment Facility that is designed to provide a space upon which entertaining performances or productions can occur."@en ; + "https://en.wikipedia.org/wiki/Stage_(theatre)" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000803 -cco:ont00000803 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Round"@en ; - skos:altLabel "Circular"@en ; - skos:definition "A Shape Quality that inheres in a bearer in virtue of every point along its circumference being equidistant from the center."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/round" ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Round"@en ; + "Circular"@en ; + "A Shape Quality that inheres in a bearer in virtue of every point along its circumference being equidistant from the center."@en ; + "http://www.merriam-webster.com/dictionary/round" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000804 -cco:ont00000804 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000136 ; - rdfs:label "Prism"@en ; - skos:definition "An Optical Instrument that is designed to refract light and which consists of a transparent material with flat polished surfaces where at least two of these surfaces have an angle between them."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Prism&oldid=1060221124"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Prism"@en ; + "An Optical Instrument that is designed to refract light and which consists of a transparent material with flat polished surfaces where at least two of these surfaces have an angle between them."@en ; + "https://en.wikipedia.org/w/index.php?title=Prism&oldid=1060221124"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000805 -cco:ont00000805 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Coiled"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer being wound in concentric rings or spirals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Coiled"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer being wound in concentric rings or spirals."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000806 -cco:ont00000806 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000581 ; - rdfs:label "Power Tool"@en ; - skos:definition "A Tool that is designed to be actuated by a Power Source and mechanism other than or in addition to manual labor."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_tool&oldid=1057147715"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Tool"@en ; + "A Tool that is designed to be actuated by a Power Source and mechanism other than or in addition to manual labor."@en ; + "https://en.wikipedia.org/w/index.php?title=Power_tool&oldid=1057147715"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000807 -cco:ont00000807 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000394 ; - rdfs:label "Compression Ignition Engine"@en ; - skos:definition "An Internal Combustion Engine that is designed to operate by igniting a portion of Fuel and Oxidizer mixture using heat generated via compression of the mixture."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Compression Ignition Engine"@en ; + "An Internal Combustion Engine that is designed to operate by igniting a portion of Fuel and Oxidizer mixture using heat generated via compression of the mixture."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000808 -cco:ont00000808 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000791 ; - rdfs:label "Reactant Artifact Function"@en ; - skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which a substance or compound is added to a system in order to bring about a chemical reaction and is consumed in the course of the reaction."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reagent&oldid=1017651471"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reactant Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in a process in which a substance or compound is added to a system in order to bring about a chemical reaction and is consumed in the course of the reaction."@en ; + "https://en.wikipedia.org/w/index.php?title=Reagent&oldid=1017651471"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000809 -cco:ont00000809 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Submersible Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes of operating while submerged in water."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Submersible&oldid=1062994844"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Submersible Artifact Function"@en ; + "An Artifact Function that is realized in processes of operating while submerged in water."@en ; + "https://en.wikipedia.org/w/index.php?title=Submersible&oldid=1062994844"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000810 -cco:ont00000810 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000038 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001924 ; - owl:someValuesFrom cco:ont00000619 - ] ; - rdfs:comment "This is a defined class."@en ; - rdfs:label "Multi-Week Temporal Interval"@en ; - skos:definition "A one-dimensional temporal region that is measured in Weeks and spans at least one Week."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Multi-Week Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Weeks and spans at least one Week."@en ; + "This is a defined class."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000811 -cco:ont00000811 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Radio Wave Conversion Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by a Material Artifact being used to convert electric power into radio waves or radio waves into electric power."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Wave Conversion Artifact Function"@en ; + "An Artifact Function that is realized by a Material Artifact being used to convert electric power into radio waves or radio waves into electric power."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000812 -cco:ont00000812 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000951 ; - rdfs:label "Electromagnetic Pulse"@en ; - skos:altLabel "EMP"@en , - "Transient Electromagnetic Disturbance"@en ; - skos:definition "An Electromagnetic Wave Process that consists of a short high-energy burst of electromagnetic energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_pulse&oldid=1060859738"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electromagnetic Pulse"@en ; + "EMP"@en , + "Transient Electromagnetic Disturbance"@en ; + "An Electromagnetic Wave Process that consists of a short high-energy burst of electromagnetic energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_pulse&oldid=1060859738"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000813 -cco:ont00000813 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000457 ; - rdfs:label "Portion of Nuclear Fuel"@en ; - skos:definition "A Portion of Material that is designed to be used in a nuclear fission process to produce energy."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Nuclear Fuel"@en ; + "A Portion of Material that is designed to be used in a nuclear fission process to produce energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000814 -cco:ont00000814 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Water Treatment Facility"@en ; - skos:definition "A Facility that is designed for making water more acceptable for a specific end-use."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Water_treatment&oldid=1061706931"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Water Treatment Facility"@en ; + "A Facility that is designed for making water more acceptable for a specific end-use."@en ; + "https://en.wikipedia.org/w/index.php?title=Water_treatment&oldid=1061706931"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000815 -cco:ont00000815 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Folded"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of one part of the bearer being layered over another connected part."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Folded"@en ; + "A Shape Quality inhering in a bearer in virtue of one part of the bearer being layered over another connected part."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000816 -cco:ont00000816 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000255 ; - rdfs:label "Portion of Liquid Nitrogen"@en ; - skos:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid nitrogen."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Nitrogen"@en ; + "A Portion of Cryogenic Material that is composed (almost) entirely of liquid nitrogen."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000817 -cco:ont00000817 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000207 ; - rdfs:label "Geospatial Line String"@en ; - skos:definition "A One-Dimensional Geospatial Boundary that has two or more Geospatial Positions as vertices, where each vertex is connected to only one other vertex by a straight line."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Line String"@en ; + "A One-Dimensional Geospatial Boundary that has two or more Geospatial Positions as vertices, where each vertex is connected to only one other vertex by a straight line."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000818 -cco:ont00000818 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Orange"@en ; - skos:definition "A Color that is between Red and Yellow with a wavelength in the visible spectrum typically between 590 to 635 nanometers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Orange"@en ; + "A Color that is between Red and Yellow with a wavelength in the visible spectrum typically between 590 to 635 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000819 -cco:ont00000819 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000015 ; - rdfs:label "Stasis"@en ; - skos:definition "A Process in which one or more Independent Continuants endure in an unchanging condition."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis"@en ; + "A Process in which one or more Independent Continuants endure in an unchanging condition."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000820 -cco:ont00000820 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000246 ; - rdfs:label "Stasis of Function"@en ; - skos:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Function that remains unchanged during a Temporal Interval."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Function"@en ; + "A Stasis of Realizable Entity in which some Independent Continuant bears some Function that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000821 -cco:ont00000821 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001162 ; - rdfs:label "Act of Promising"@en ; - skos:definition "An Act of Commissive Communication performed by declaring that the promising agent will do, or refrain from doing, the specified action."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/promise" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Promising"@en ; + "An Act of Commissive Communication performed by declaring that the promising agent will do, or refrain from doing, the specified action."@en ; + "http://www.merriam-webster.com/dictionary/promise" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000822 -cco:ont00000822 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000150 ; - rdfs:comment "The corresponding Wavelength range is 100–10 km"@en ; - rdfs:label "Very Low Frequency"@en ; - skos:altLabel "ITU Band Number 4"@en ; - skos:definition "A Radio Frequency that is between 3 and 30 kHz."@en ; - cco:ont00001753 "VLF" ; - cco:ont00001754 "International Telecommunication Union (ITU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Very Low Frequency"@en ; + "ITU Band Number 4"@en ; + "A Radio Frequency that is between 3 and 30 kHz."@en ; + "The corresponding Wavelength range is 100–10 km"@en ; + "VLF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000823 -cco:ont00000823 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001148 ; - rdfs:label "Optical Communication Artifact Function"@en ; - skos:definition "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of visible light."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Communication Artifact Function"@en ; + "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of visible light."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000824 -cco:ont00000824 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000246 ; - rdfs:label "Stasis of Role"@en ; - skos:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Role that remains unchanged during a Temporal Interval."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Role"@en ; + "A Stasis of Realizable Entity in which some Independent Continuant bears some Role that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000825 -cco:ont00000825 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000346 ; - rdfs:label "Telecommunication Network Line"@en ; - skos:definition "A Communication Artifact that is designed to be the physical transmission medium that connects two or more Telecommunication Network Nodes within a Telecommunication Network to facilitate communication between the Nodes."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications_link&oldid=1062252217"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Network Line"@en ; + "A Communication Artifact that is designed to be the physical transmission medium that connects two or more Telecommunication Network Nodes within a Telecommunication Network to facilitate communication between the Nodes."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications_link&oldid=1062252217"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000826 -cco:ont00000826 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001137 ; - rdfs:label "Refractivity"@en ; - skos:definition "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of that bearer to change the direction of a propagating wave when passing through it."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Refractive_index&oldid=1062519140"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Refractivity"@en ; + "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of that bearer to change the direction of a propagating wave when passing through it."@en ; + "https://en.wikipedia.org/w/index.php?title=Refractive_index&oldid=1062519140"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000827 -cco:ont00000827 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000540 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom cco:ont00000223 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000540 ; - rdfs:label "Time of Day Identifier"@en ; - skos:definition "A Temporal Instant Identifier that designates some Time of Day."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Time of Day Identifier"@en ; + "A Temporal Instant Identifier that designates some Time of Day."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000828 -cco:ont00000828 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001123 ; - rdfs:label "Pesticide Artifact Function"@en ; - skos:definition "A Poison Artifact Function that is realized in a process which causes illness in, or the death of, a living thing that is detrimental to humans or human concerns."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/pesticide" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pesticide Artifact Function"@en ; + "A Poison Artifact Function that is realized in a process which causes illness in, or the death of, a living thing that is detrimental to humans or human concerns."@en ; + "http://www.dictionary.com/browse/pesticide" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000829 -cco:ont00000829 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000390 ; - rdfs:comment """Standards of date, time, and time zone data formats: + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Time Zone Identifier"@en ; + "A Spatial Region Identifier that designates the region associated with some uniform standard time for legal, commercial, or social purposes."@en ; + """Standards of date, time, and time zone data formats: ISO/WD 8601-2 (http://www.loc.gov/standards/datetime/iso-tc154-wg5_n0039_iso_wd_8601-2_2016-02-16.pdf) W3C (https://www.w3.org/TR/NOTE-datetime)"""@en , - "There is no class 'Time Zone' (the region), only 'Time Zone Identifier' (the designator for some region). Instances of 'Time Zone Identifier' should be related to instances of 'Information Bearing Entity' by means of the object properites 'uses time zone identifier' and 'time zone identifier used by' as appropriate. This is supposed to be analogous to the way we represent the relationship between measurement values and measurement units, where the relevant instance of Information Bearing Entity 'uses measurement unit' some instance of Measurement Unit (i.e., an instance of Information Content Entity)."@en ; - rdfs:label "Time Zone Identifier"@en ; - skos:definition "A Spatial Region Identifier that designates the region associated with some uniform standard time for legal, commercial, or social purposes."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + "There is no class 'Time Zone' (the region), only 'Time Zone Identifier' (the designator for some region). Instances of 'Time Zone Identifier' should be related to instances of 'Information Bearing Entity' by means of the object properites 'uses time zone identifier' and 'time zone identifier used by' as appropriate. This is supposed to be analogous to the way we represent the relationship between measurement values and measurement units, where the relevant instance of Information Bearing Entity 'uses measurement unit' some instance of Measurement Unit (i.e., an instance of Information Content Entity)."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000830 -cco:ont00000830 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000144 ; - rdfs:comment "An object's speed is the scalar absolute value of it's Velocity."@en ; - rdfs:label "Speed"@en ; - skos:definition "A Process Profile that is characterized by the magnitude of an object's motion with respect to a frame of reference during some time period."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Speed&oldid=1058949945"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Speed"@en ; + "A Process Profile that is characterized by the magnitude of an object's motion with respect to a frame of reference during some time period."@en ; + "An object's speed is the scalar absolute value of it's Velocity."@en ; + "https://en.wikipedia.org/w/index.php?title=Speed&oldid=1058949945"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000831 -cco:ont00000831 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000828 ; - rdfs:label "Herbicide Artifact Function"@en ; - skos:definition "A Pesticide Artifact Function that is realized in a process which causes harm to, or the death to, unwanted plants."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Herbicide&oldid=1061228045"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Herbicide Artifact Function"@en ; + "A Pesticide Artifact Function that is realized in a process which causes harm to, or the death to, unwanted plants."@en ; + "https://en.wikipedia.org/w/index.php?title=Herbicide&oldid=1061228045"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000832 -cco:ont00000832 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001869 ; - owl:someValuesFrom cco:ont00001088 - ] ; - rdfs:label "Year"@en ; - skos:definition "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one Orbital Revolution around its Primary Body as specified relative to a particular Temporal Reference System."@en ; - skos:scopeNote "Unless otherwise specified, a Year is assumed to be relative to the Orbiting of the Earth around the Sun and is approximately equal to 12 Months or 365 Days."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=year" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Year"@en ; + "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one Orbital Revolution around its Primary Body as specified relative to a particular Temporal Reference System."@en ; + "Unless otherwise specified, a Year is assumed to be relative to the Orbiting of the Earth around the Sun and is approximately equal to 12 Months or 365 Days."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=year" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000833 -cco:ont00000833 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000973 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:someValuesFrom cco:ont00000589 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:someValuesFrom cco:ont00000749 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom cco:ont00000359 - ] ; - rdfs:label "Julian Date Identifier"@en ; - skos:definition "A Decimal Time of Day Identifier that designates a Julian Date and is composed of both a Julian Day Number and a Julian Date Fraction."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Julian Date Identifier"@en ; + "A Decimal Time of Day Identifier that designates a Julian Date and is composed of both a Julian Day Number and a Julian Date Fraction."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000834 -cco:ont00000834 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001337 ; - rdfs:label "Mid Infrared Light Frequency"@en ; - skos:definition "An Infrared Light Frequency that is between 20 and 214 terahertz."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mid Infrared Light Frequency"@en ; + "An Infrared Light Frequency that is between 20 and 214 terahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000835 -cco:ont00000835 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Body Shape"@en ; - skos:definition "A Shape Quality inhering in a Person's body by virtue of the body's general outline or figure."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Body Shape"@en ; + "A Shape Quality inhering in a Person's body by virtue of the body's general outline or figure."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000836 -cco:ont00000836 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000566 ; - rdfs:label "Act of Financial Instrument Use"@en ; - skos:definition "An Act of Artifact Employment in which some Agent uses some Financial Instrument."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Financial Instrument Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Financial Instrument."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000837 -cco:ont00000837 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000914 ; - rdfs:label "Family"@en ; - skos:definition "A Group of Persons related to one another by ancestry or marriage."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Family"@en ; + "A Group of Persons related to one another by ancestry or marriage."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000838 -cco:ont00000838 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000457 ; - rdfs:label "Portion of Fuel"@en ; - skos:definition "A Portion of Material that is designed to release thermal energy when reacted with other substances."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Fuel"@en ; + "A Portion of Material that is designed to release thermal energy when reacted with other substances."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000839 -cco:ont00000839 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000836 ; - rdfs:label "Act of Donating"@en ; - skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is tranfered by an Agent (the Donor) to another Agent (the Recipient) without return consideration."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Donation&oldid=1059373518"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Donating"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is tranfered by an Agent (the Donor) to another Agent (the Recipient) without return consideration."@en ; + "https://en.wikipedia.org/w/index.php?title=Donation&oldid=1059373518"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000840 -cco:ont00000840 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000618 ; - rdfs:label "Bicycle"@en ; - skos:definition "A Ground Vehicle that consists of two wheels, one in front of the other, attached to a frame along with handlebars and pedals such that it is designed to receive its motive power from pedaling."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bicycle&oldid=1063761124"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bicycle"@en ; + "A Ground Vehicle that consists of two wheels, one in front of the other, attached to a frame along with handlebars and pedals such that it is designed to receive its motive power from pedaling."@en ; + "https://en.wikipedia.org/w/index.php?title=Bicycle&oldid=1063761124"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000841 -cco:ont00000841 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001153 ; - rdfs:label "Explosive Artifact Function"@en ; - skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of the rapid increase in volume and release of energy in an extreme manner."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/explosive" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Explosive Artifact Function"@en ; + "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of the rapid increase in volume and release of energy in an extreme manner."@en ; + "http://www.dictionary.com/browse/explosive" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000842 -cco:ont00000842 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000530 ; - rdfs:label "Sub-Bass Frequency"@en ; - skos:definition "A Sonic Frequency that is between 20 and 60 Hz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sub-Bass Frequency"@en ; + "A Sonic Frequency that is between 20 and 60 Hz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000843 -cco:ont00000843 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001049 ; - rdfs:label "Solar Panel"@en ; - skos:definition "An Electrical Power Source that consists in part of one or more photovoltaic (i.e. solar) cells that convert light energy (photons) directly into electricity by means of the photovoltaic effect."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Solar_cell&oldid=1063439932"^^xsd:anyURI , - "https://en.wikipedia.org/w/index.php?title=Solar_panel&oldid=1064397496"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Solar Panel"@en ; + "An Electrical Power Source that consists in part of one or more photovoltaic (i.e. solar) cells that convert light energy (photons) directly into electricity by means of the photovoltaic effect."@en ; + "https://en.wikipedia.org/w/index.php?title=Solar_cell&oldid=1063439932"^^xsd:anyURI , + "https://en.wikipedia.org/w/index.php?title=Solar_panel&oldid=1064397496"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000844 -cco:ont00000844 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Temperature"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the thermal energy in an object."@en ; - skos:example "celsius, fahrenheit, kelvin" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Temperature"@en ; + "A Measurement Unit that is used as a standard for measurement of the thermal energy in an object."@en ; + "celsius, fahrenheit, kelvin" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000845 -cco:ont00000845 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001022 ; - rdfs:comment "A percentage is one way to express a proportional measure where the decimal expression of the proportion is multiplied by 100, thus giving the proportional value with respect to a whole of 100. E.g., the ratio of pigs to cows on a farm is 44 to 79 (44:79 or 44/79). The proportion of pigs to total animals is 44 to 123 or 44/123. The percentage of pigs is the decimal equivalent of the proportion (0.36) multiplied by a 100 (36%). The percentage can be expressed as a proportion where the numerator value is transformed for a denominator of 100, i.e., 36 of a 100 animals are pigs (36/100)."@en , - "We may want to add either a subclass for Percentage or a data property (has percentage value) that links the percentage expression for a proportion to the relevant IBE."@en ; - rdfs:label "Proportional Ratio Measurement Information Content Entity"@en ; - skos:definition "A Ratio Measurement Information Content Entity that is a measurement of a portion of a whole (described by the numerator) compared against that whole (described by the denominator) where the whole is a nominally described set of like entities."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Proportional Ratio Measurement Information Content Entity"@en ; + "A Ratio Measurement Information Content Entity that is a measurement of a portion of a whole (described by the numerator) compared against that whole (described by the denominator) where the whole is a nominally described set of like entities."@en ; + "A percentage is one way to express a proportional measure where the decimal expression of the proportion is multiplied by 100, thus giving the proportional value with respect to a whole of 100. E.g., the ratio of pigs to cows on a farm is 44 to 79 (44:79 or 44/79). The proportion of pigs to total animals is 44 to 123 or 44/123. The percentage of pigs is the decimal equivalent of the proportion (0.36) multiplied by a 100 (36%). The percentage can be expressed as a proportion where the numerator value is transformed for a denominator of 100, i.e., 36 of a 100 animals are pigs (36/100)."@en , + "We may want to add either a subclass for Percentage or a data property (has percentage value) that links the percentage expression for a proportion to the relevant IBE."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000846 -cco:ont00000846 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001076 ; - rdfs:label "Hydroelectric Power Plant"@en ; - skos:definition "An Electric Power Station that is designed to convert hydropower into electrical power."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hydroelectricity&oldid=1062438236"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydroelectric Power Plant"@en ; + "An Electric Power Station that is designed to convert hydropower into electrical power."@en ; + "https://en.wikipedia.org/w/index.php?title=Hydroelectricity&oldid=1062438236"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000847 -cco:ont00000847 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001213 ; - owl:disjointWith cco:ont00000936 ; - rdfs:label "Active Stasis"@en ; - skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when a Material Artifact is realizing one or more of its designed Artifact Functions (especially one of its primary functions)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Active Stasis"@en ; + "A Stasis of Artifact Operationality that holds during a Temporal Interval when a Material Artifact is realizing one or more of its designed Artifact Functions (especially one of its primary functions)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000848 -cco:ont00000848 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000088 ; - rdfs:label "Mounted Gun"@en ; - skos:definition "A Firearm that is designed to be fired while mounted."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mounted Gun"@en ; + "A Firearm that is designed to be fired while mounted."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000849 -cco:ont00000849 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000453 ; - rdfs:label "Heating System"@en ; - skos:definition "An Environment Control System that is designed to heat the air or objects in a Site."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heating System"@en ; + "An Environment Control System that is designed to heat the air or objects in a Site."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000850 -cco:ont00000850 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000135 ; - rdfs:label "Stasis of Quality"@en ; - skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Quality that remains unchanged during a Temporal Interval."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Quality"@en ; + "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Quality that remains unchanged during a Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000851 -cco:ont00000851 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001104 ; - rdfs:label "Light Machine Gun"@en ; - skos:definition "A Long Gun that is designed to fire bullets in quick succession from an ammunition belt or magazine and to be employed by an individual soldier, with or without assistance, and typically weighing 9-22 lbs."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Light_machine_gun&oldid=1063598801"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Light Machine Gun"@en ; + "A Long Gun that is designed to fire bullets in quick succession from an ammunition belt or magazine and to be employed by an individual soldier, with or without assistance, and typically weighing 9-22 lbs."@en ; + "https://en.wikipedia.org/w/index.php?title=Light_machine_gun&oldid=1063598801"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000852 -cco:ont00000852 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Work"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of displacements of points to which Forces have been applied."@en ; - skos:example "joule, erg, kilowatt hour" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Work"@en ; + "A Measurement Unit that is used as a standard for measurement of displacements of points to which Forces have been applied."@en ; + "joule, erg, kilowatt hour" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000853 -cco:ont00000853 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001982 ; - owl:someValuesFrom obo:BFO_0000001 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000958 ; - owl:disjointWith cco:ont00000965 ; - rdfs:label "Descriptive Information Content Entity"@en ; - skos:altLabel "Descriptive ICE"@en ; - skos:definition "An Information Content Entity that consists of a set of propositions that describe some Entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Descriptive Information Content Entity"@en ; + "Descriptive ICE"@en ; + "An Information Content Entity that consists of a set of propositions that describe some Entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000854 -cco:ont00000854 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000290 ; - rdfs:label "Decrease of Realizable Entity"@en ; - skos:definition "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Realizable Entity that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Realizable Entity"@en ; + "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Realizable Entity that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000855 -cco:ont00000855 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000660 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000132 ; - owl:someValuesFrom cco:ont00000065 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001819 ; - owl:someValuesFrom cco:ont00000065 - ] ; - rdfs:label "Effect of Location Change"@en ; - skos:definition "An Effect caused by some Act of Location Change and which results in an Object being located in a different place."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Effect of Location Change"@en ; + "An Effect caused by some Act of Location Change and which results in an Object being located in a different place."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000856 -cco:ont00000856 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000182 ; - rdfs:label "Artifact History"@en ; - skos:definition "A History of a Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Artifact History"@en ; + "A History of a Material Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000857 -cco:ont00000857 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000903 ; - rdfs:label "Ultra High Frequency Communication Instrument"@en ; - skos:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some Ultra High Frequency."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ultra High Frequency Communication Instrument"@en ; + "A Radio Communication Instrument that is designed to participate in some process that has process part some Ultra High Frequency."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000858 -cco:ont00000858 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000552 ; - rdfs:label "Improvised Explosive Device"@en ; - skos:definition "An Explosive Weapon that is designed to be used in non-conventional military action."@en ; - cco:ont00001753 "IED" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Improvised_explosive_device&oldid=1063432318"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Improvised Explosive Device"@en ; + "An Explosive Weapon that is designed to be used in non-conventional military action."@en ; + "IED" ; + "https://en.wikipedia.org/w/index.php?title=Improvised_explosive_device&oldid=1063432318"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000859 -cco:ont00000859 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000517 ; - rdfs:label "Television Broadcast"@en ; - skos:altLabel "Act of Television Broadcasting"@en ; - skos:definition "An Act of Communciation by Media that is transmitted to an audience through a television network."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Television_broadcasting&oldid=1063890047"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Television Broadcast"@en ; + "Act of Television Broadcasting"@en ; + "An Act of Communciation by Media that is transmitted to an audience through a television network."@en ; + "https://en.wikipedia.org/w/index.php?title=Television_broadcasting&oldid=1063890047"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000860 -cco:ont00000860 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001262 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000587 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001262 ; - rdfs:label "Allied Person"@en ; - skos:definition "A Person who is the bearer of some Ally Role."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Allied Person"@en ; + "A Person who is the bearer of some Ally Role."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000861 -cco:ont00000861 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Split"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a linear opening, or having been divided into parts."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Split"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a linear opening, or having been divided into parts."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000862 -cco:ont00000862 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000144 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001857 ; - owl:someValuesFrom cco:ont00000675 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf obo:BFO_0000144 ; - rdfs:label "Sound Process Profile"@en ; - skos:altLabel "Sound Quality"@en ; - skos:definition "A Process Profile that is part of a sound reception process and is characterized by properties of incoming sound waves as they are translated by some sensory system."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI , - "http://www.animations.physics.unsw.edu.au/waves-sound/quantifying/index.html" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Sound Process Profile"@en ; + "Sound Quality"@en ; + "A Process Profile that is part of a sound reception process and is characterized by properties of incoming sound waves as they are translated by some sensory system."@en ; + "http://www.animations.physics.unsw.edu.au/waves-sound/quantifying/index.html" , + "https://en.wikipedia.org/w/index.php?title=Sound&oldid=1050465877"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000863 -cco:ont00000863 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000379 ; - rdfs:label "Act of Confessing"@en ; - skos:definition "An Act of Representative Communication in which a person makes an admission of misdeeds or faults."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Confessing"@en ; + "An Act of Representative Communication in which a person makes an admission of misdeeds or faults."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000864 -cco:ont00000864 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Public Safety Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes of preventing and responding to events that could endanger the safety of the general public from significant danger, injury/harm, or damage, such as crimes or disasters (natural or man-made)."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Public Safety Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of preventing and responding to events that could endanger the safety of the general public from significant danger, injury/harm, or damage, such as crimes or disasters (natural or man-made)."@en ; + "https://en.wikipedia.org/w/index.php?title=Public_security&oldid=1058257389"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000865 -cco:ont00000865 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000876 ; - rdfs:label "Loss of Specifically Dependent Continuant"@en ; - skos:definition "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Specifically Dependent Continuant."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Specifically Dependent Continuant"@en ; + "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Specifically Dependent Continuant."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000866 -cco:ont00000866 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000517 ; - rdfs:label "Radio Broadcast"@en ; - skos:altLabel "Act of Radio Broadcasting"@en ; - skos:definition "An Act of Communciation by Media that is transmitted to an audience through a radio network."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_network&oldid=1037183126"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Broadcast"@en ; + "Act of Radio Broadcasting"@en ; + "An Act of Communciation by Media that is transmitted to an audience through a radio network."@en ; + "https://en.wikipedia.org/w/index.php?title=Radio_network&oldid=1037183126"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000867 -cco:ont00000867 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000677 ; - rdfs:label "Pipeline"@en ; - skos:definition "A Product Transport Facility that is designed to transport goods or materials through a pipe."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Pipeline&oldid=1024308788"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pipeline"@en ; + "A Product Transport Facility that is designed to transport goods or materials through a pipe."@en ; + "https://en.wikipedia.org/w/index.php?title=Pipeline&oldid=1024308788"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000868 -cco:ont00000868 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001173 ; - rdfs:label "Rocket Pod"@en ; - skos:definition "A Rocket Launcher that is designed to contain several Unguided Rockets held in individual tubes and to be used by Aircraft or Helicopters for close air support."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rocket Pod"@en ; + "A Rocket Launcher that is designed to contain several Unguided Rockets held in individual tubes and to be used by Aircraft or Helicopters for close air support."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000869 -cco:ont00000869 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000199 ; - rdfs:label "Optical Camera"@en ; - skos:definition "A Camera that is designed to form and record an image generated from visible light."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Camera&oldid=1063931551"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Camera"@en ; + "A Camera that is designed to form and record an image generated from visible light."@en ; + "https://en.wikipedia.org/w/index.php?title=Camera&oldid=1063931551"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000870 -cco:ont00000870 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000040 ; - rdfs:label "Infrastructure System"@en ; - skos:altLabel "Infrastructure"@en ; - skos:definition "A Material Entity that is composed of elements bearing Infrastructure Roles and is by itself sufficient to provide a planned service or benefit to some organization that maintains its elements."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrastructure System"@en ; + "Infrastructure"@en ; + "A Material Entity that is composed of elements bearing Infrastructure Roles and is by itself sufficient to provide a planned service or benefit to some organization that maintains its elements."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000871 -cco:ont00000871 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000551 ; - rdfs:label "Plant"@en ; - skos:definition "An Organism that is multicellular, eukaryotic, autotrophic, and has cells that contain chloroplasts and walls made of cellulose."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Plant&oldid=1060821100"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Plant"@en ; + "An Organism that is multicellular, eukaryotic, autotrophic, and has cells that contain chloroplasts and walls made of cellulose."@en ; + "https://en.wikipedia.org/w/index.php?title=Plant&oldid=1060821100"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000872 -cco:ont00000872 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Brown"@en ; - skos:definition "A Color that consists of dark orange and red, and of very low intensity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Brown"@en ; + "A Color that consists of dark orange and red, and of very low intensity."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000873 -cco:ont00000873 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001081 ; - rdfs:label "Physiographic Feature"@en ; - skos:definition "A Geographic Feature that is a geomorphological unit characterized by its surface form and location in the landscape."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Landform&oldid=1060439172"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Physiographic Feature"@en ; + "A Geographic Feature that is a geomorphological unit characterized by its surface form and location in the landscape."@en ; + "https://en.wikipedia.org/w/index.php?title=Landform&oldid=1060439172"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000874 -cco:ont00000874 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002009 - ] ; - rdfs:label "Material Copy of a Video"@en ; - skos:altLabel "Video"@en ; - skos:definition "An Information Bearing Artifact that is designed to carry some specific Information Content Entity in the form of a sequence of representations that are presented sufficiently rapidly to create the appearance of motion and continuity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Video&oldid=1049376249"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Video"@en ; + "Video"@en ; + "An Information Bearing Artifact that is designed to carry some specific Information Content Entity in the form of a sequence of representations that are presented sufficiently rapidly to create the appearance of motion and continuity."@en ; + "https://en.wikipedia.org/w/index.php?title=Video&oldid=1049376249"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000875 -cco:ont00000875 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000402 ; - rdfs:label "Act of Personal Communication"@en ; - skos:definition "An Act of Communication having a small audience."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Personal Communication"@en ; + "An Act of Communication having a small audience."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000876 -cco:ont00000876 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000004 ; - rdfs:label "Loss of Dependent Continuant"@en ; - skos:definition "A Change in which some Independent Continuant ceases to be the bearer or carrier of some Dependent Continuant."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Dependent Continuant"@en ; + "A Change in which some Independent Continuant ceases to be the bearer or carrier of some Dependent Continuant."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000877 -cco:ont00000877 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000723 ; - rdfs:label "Brake Control System"@en ; - skos:definition "A Vehicle Control System that is designed to control the process of braking with the aim of preventing rolling, skidding, and hydroplaning."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Brake Control System"@en ; + "A Vehicle Control System that is designed to control the process of braking with the aim of preventing rolling, skidding, and hydroplaning."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000878 -cco:ont00000878 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000325 ; - rdfs:label "Identification Friend or Foe Transponder"@en ; - skos:altLabel "IFF"@en ; - skos:definition "A Radio Transponder that is designed to automatically transmit a predefined signal in response to receiving an appropriate interrogation signal such that the entity it is located on can be positively identified as friendly."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Identification_friend_or_foe&oldid=1055168718"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Identification Friend or Foe Transponder"@en ; + "IFF"@en ; + "A Radio Transponder that is designed to automatically transmit a predefined signal in response to receiving an appropriate interrogation signal such that the entity it is located on can be positively identified as friendly."@en ; + "https://en.wikipedia.org/w/index.php?title=Identification_friend_or_foe&oldid=1055168718"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000879 -cco:ont00000879 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000433 ; - rdfs:label "Act of Religious Group Affiliation"@en ; - skos:definition "An Act of Association wherein some Person belongs to some Religious Demonination or sub-Denomination."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Religious Group Affiliation"@en ; + "An Act of Association wherein some Person belongs to some Religious Demonination or sub-Denomination."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000880 -cco:ont00000880 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Religious Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes related to worship and prayer."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Religious Artifact Function"@en ; + "A Service Artifact Function that is realized in processes related to worship and prayer."@en ; + "https://en.wikipedia.org/w/index.php?title=Religion&oldid=1063431202"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000881 -cco:ont00000881 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Storage Facility"@en ; - skos:definition "A Facility that is designed to store materials or goods."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Storage&oldid=1048222564"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Storage Facility"@en ; + "A Facility that is designed to store materials or goods."@en ; + "https://en.wikipedia.org/w/index.php?title=Storage&oldid=1048222564"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000882 -cco:ont00000882 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001076 ; - rdfs:label "Wind Farm"@en ; - skos:definition "An Electric Power Station that is designed to convert the wind's kinetic energy into electrical power by means of wind turbines."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wind_farm&oldid=1062817899"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wind Farm"@en ; + "An Electric Power Station that is designed to convert the wind's kinetic energy into electrical power by means of wind turbines."@en ; + "https://en.wikipedia.org/w/index.php?title=Wind_farm&oldid=1062817899"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000883 -cco:ont00000883 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001162 ; - rdfs:label "Act of Inviting"@en ; - skos:definition "An Act of Commissive Communication performed by requesting the presence or participation of the audience, and which may include offering an incentive or inducement."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/invite" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Inviting"@en ; + "An Act of Commissive Communication performed by requesting the presence or participation of the audience, and which may include offering an incentive or inducement."@en ; + "http://www.merriam-webster.com/dictionary/invite" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000884 -cco:ont00000884 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000836 ; - rdfs:label "Act of Loaning"@en ; - skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is given by an Agent (the Creditor) to another Agent (the Debtor) in order to receive Repayments from the Debtor which are of greater Financial Value."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Loaning"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is given by an Agent (the Creditor) to another Agent (the Debtor) in order to receive Repayments from the Debtor which are of greater Financial Value."@en ; + "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000885 -cco:ont00000885 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Wavy"@en ; - skos:altLabel "Undulate"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of it having a sinuous or rippled border."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wavy"@en ; + "Undulate"@en ; + "A Shape Quality inhering in a bearer in virtue of it having a sinuous or rippled border."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000886 -cco:ont00000886 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000422 ; - rdfs:label "Wired Communication Reception Artifact Function"@en ; - skos:definition "A Communication Reception Artifact Function that is realized during events in which a Material Artifact receives information transmitted from another Material Artifact, where the transmission of information occurs via a direct connection using an electrical conductor."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wired Communication Reception Artifact Function"@en ; + "A Communication Reception Artifact Function that is realized during events in which a Material Artifact receives information transmitted from another Material Artifact, where the transmission of information occurs via a direct connection using an electrical conductor."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000887 -cco:ont00000887 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000460 ; - rdfs:label "City"@en ; - skos:definition "A Local Administrative Region in which a relatively large human population permanently resides; is designated as a city based on a particular administrative, legal, or historical status; and which delimits a local Government that typically oversees the provision of systems for sanitation, utilities, land usage, housing, and transportation."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=City&oldid=1062635325"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "City"@en ; + "A Local Administrative Region in which a relatively large human population permanently resides; is designated as a city based on a particular administrative, legal, or historical status; and which delimits a local Government that typically oversees the provision of systems for sanitation, utilities, land usage, housing, and transportation."@en ; + "https://en.wikipedia.org/w/index.php?title=City&oldid=1062635325"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000888 -cco:ont00000888 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000903 ; - rdfs:label "High Frequency Communication Instrument"@en ; - skos:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some High Frequency."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "High Frequency Communication Instrument"@en ; + "A Radio Communication Instrument that is designed to participate in some process that has process part some High Frequency."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000889 -cco:ont00000889 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000037 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000558 - ] ; - rdfs:label "Visible Observation"@en ; - skos:definition "An Act of Observation that involves visual perception."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Visible Observation"@en ; + "An Act of Observation that involves visual perception."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000890 -cco:ont00000890 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000065 ; - rdfs:label "Act of Travel"@en ; - skos:definition "An Act of Location Change wherein one or more Persons move between relatively distant geographical locations for any purpose and any duration, with or without any means of transport."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Travel&oldid=1037229469"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Travel"@en ; + "An Act of Location Change wherein one or more Persons move between relatively distant geographical locations for any purpose and any duration, with or without any means of transport."@en ; + "https://en.wikipedia.org/w/index.php?title=Travel&oldid=1037229469"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000891 -cco:ont00000891 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001328 ; - rdfs:label "Calendar System"@en ; - skos:definition "A Temporal Reference System that is designed to organize and identify dates."@en ; - skos:scopeNote "Calendars typically organize dates through the use of naming and temporal conventions based on Days, Weeks, Months, and Years."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar System"@en ; + "A Temporal Reference System that is designed to organize and identify dates."@en ; + "Calendars typically organize dates through the use of naming and temporal conventions based on Days, Weeks, Months, and Years."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000892 -cco:ont00000892 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001367 ; - rdfs:label "Depth"@en ; - skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a downward, backward, or inward direction."@en ; - cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Depth"@en ; + "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a downward, backward, or inward direction."@en ; + "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000893 -cco:ont00000893 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:comment "An empty notebook, when manufactured, is a medium but not yet a carrier of information content. However, a book, in the sense of a novel or collection of philosophical essays or poems, depends necessarily on it carrying some information content. Thus, there are no empty books. Likewise, there are no empty databases, only portions of digital storage that have not yet been configured to carry some information content according to a database software application."@en ; - rdfs:label "Information Medium Artifact"@en ; - skos:definition "A Material Artifact that is designed to have some Information Bearing Artifact as part."@en ; - skos:example "A magnetic hard drive" , - "A notebook" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Information Medium Artifact"@en ; + "A Material Artifact that is designed to have some Information Bearing Artifact as part."@en ; + "A magnetic hard drive" , + "A notebook" ; + "An empty notebook, when manufactured, is a medium but not yet a carrier of information content. However, a book, in the sense of a novel or collection of philosophical essays or poems, depends necessarily on it carrying some information content. Thus, there are no empty books. Likewise, there are no empty databases, only portions of digital storage that have not yet been configured to carry some information content according to a database software application."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000894 -cco:ont00000894 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000529 ; - rdfs:label "Decimal Date Identifier"@en ; - skos:definition "A Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since a specified Reference Time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decimal Date Identifier"@en ; + "A Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since a specified Reference Time."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000895 -cco:ont00000895 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000335 ; - rdfs:label "Married"@en ; - skos:altLabel "Married Stasis"@en ; - skos:definition "A Stasis of Generically Dependent Continuant that consists of a socially, culturally, or ritually recognized union or legal contract between spouses that establishes rights and obligations between them, between them and their children, and between them and their in-laws."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Marriage&oldid=1064076951"^^xsd:anyURI , - "Haviland, William A.; Prins, Harald E. L.; McBride, Bunny; Walrath, Dana (2011). Cultural Anthropology: The Human Challenge (13th ed.). Cengage Learning. ISBN 978-0-495-81178-7" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Married"@en ; + "Married Stasis"@en ; + "A Stasis of Generically Dependent Continuant that consists of a socially, culturally, or ritually recognized union or legal contract between spouses that establishes rights and obligations between them, between them and their children, and between them and their in-laws."@en ; + "Haviland, William A.; Prins, Harald E. L.; McBride, Bunny; Walrath, Dana (2011). Cultural Anthropology: The Human Challenge (13th ed.). Cengage Learning. ISBN 978-0-495-81178-7" , + "https://en.wikipedia.org/w/index.php?title=Marriage&oldid=1064076951"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000896 -cco:ont00000896 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000745 ; - rdfs:label "Mean Point Estimate Information Content Entity"@en ; - skos:altLabel "Arithmetic Mean"@en , - "Average"@en , - "Mean"@en ; - skos:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the sum of all the values in the set divided by the total number of values in the set."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mean Point Estimate Information Content Entity"@en ; + "Arithmetic Mean"@en , + "Average"@en , + "Mean"@en ; + "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the sum of all the values in the set divided by the total number of values in the set."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000897 -cco:ont00000897 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000457 ; - rdfs:comment "Oxidizers are essential participants in many processes including combustion and rusting. Hence, a portion of oxidizer must always be present along with a portion of fuel in order for combustion to occur."@en ; - rdfs:label "Portion of Oxidizer"@en ; - skos:altLabel "Portion of Oxidant"@en , - "Portion of Oxidizing Agent"@en ; - skos:definition "A Portion of Material that is disposed to steal electrons from other substances (i.e. to oxidize other substances) as a participant in a reduction-oxidation process."@en ; - skos:example "oxygen, hydrogen peroxide, chlorine, sulfiric acid, potassium nitrate" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Oxidizer"@en ; + "Portion of Oxidant"@en , + "Portion of Oxidizing Agent"@en ; + "A Portion of Material that is disposed to steal electrons from other substances (i.e. to oxidize other substances) as a participant in a reduction-oxidation process."@en ; + "oxygen, hydrogen peroxide, chlorine, sulfiric acid, potassium nitrate" ; + "Oxidizers are essential participants in many processes including combustion and rusting. Hence, a portion of oxidizer must always be present along with a portion of fuel in order for combustion to occur."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000898 -cco:ont00000898 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000197 ; - owl:someValuesFrom cco:ont00001180 - ] ; - dcterms:bibliographicCitation "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; - dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "Geopolitical Power Role"@en ; - skos:definition "A Role had by an Organization, that is perceived by an International Community as capable of performing influential acts in that community, and which would be realized in performing such acts."@en ; - skos:prefLabel "Geopolitical Power Role"@en ; - cco:ont00001754 "https://chass.usu.edu/international-studies/aggies-go/power" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000899 -cco:ont00000899 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000258 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002024 - ] ; - rdfs:label "Material Copy of a MSI Plessey Barcode"@en ; - skos:altLabel "MSI Plessey Barcode"@en ; - skos:definition "A Material Copy of a One-Dimensional Barcode that consists of an indefinite number of numerical characters and is used for inventory control and marking storage containers and shelves in warehouse environments."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Geopolitical Power Role"@en ; + "A Role had by an Organization, that is perceived by an International Community as capable of performing influential acts in that community, and which would be realized in performing such acts."@en ; + "Geopolitical Power Role"@en ; + "https://chass.usu.edu/international-studies/aggies-go/power" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000900 -cco:ont00000900 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001169 ; - rdfs:label "Radio Communication Relay Artifact Function"@en ; - skos:definition "A Communication Relay Artifact Function that is realized during events in which a Material Artifact is used to first receive and then transmit information without the use of wires from one Material Artifact to another for the purpose of communiction."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Communication Relay Artifact Function"@en ; + "A Communication Relay Artifact Function that is realized during events in which a Material Artifact is used to first receive and then transmit information without the use of wires from one Material Artifact to another for the purpose of communiction."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000901 -cco:ont00000901 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001375 ; - rdfs:label "Decontamination Facility"@en ; - skos:definition "A Washing Facility that is designed to wash personnel or equipment after (potential) contamination by radioactive, biological, or chemical material."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Decontamination&oldid=1049850150"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decontamination Facility"@en ; + "A Washing Facility that is designed to wash personnel or equipment after (potential) contamination by radioactive, biological, or chemical material."@en ; + "https://en.wikipedia.org/w/index.php?title=Decontamination&oldid=1049850150"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000902 -cco:ont00000902 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000566 ; - rdfs:label "Act of Facility Use"@en ; - skos:definition "An Act of Artifact Employment in which an Agent makes use of some Facility."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Facility Use"@en ; + "An Act of Artifact Employment in which an Agent makes use of some Facility."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000903 -cco:ont00000903 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000346 ; - rdfs:label "Radio Communication Instrument"@en ; - skos:definition "A Communication Instrument that is designed to enable communication between two or more entities via the use of radio waves."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Communication Instrument"@en ; + "A Communication Instrument that is designed to enable communication between two or more entities via the use of radio waves."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000904 -cco:ont00000904 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000205 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001855 ; - owl:someValuesFrom cco:ont00000122 - ] ; - rdfs:label "Vehicle Track"@en ; - skos:definition "An Object Track for a Vehicle during some motion."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Vehicle Track"@en ; + "An Object Track for a Vehicle during some motion."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000905 -cco:ont00000905 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000655 ; - rdfs:label "Post Office"@en ; - skos:definition "A Mailing Facility that is designed for serving customers of the national postal system."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Post_office&oldid=1063684373"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Post Office"@en ; + "A Mailing Facility that is designed for serving customers of the national postal system."@en ; + "https://en.wikipedia.org/w/index.php?title=Post_office&oldid=1063684373"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000906 -cco:ont00000906 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000690 ; - rdfs:label "Email Box"@en ; - skos:definition "A Telecommunication Instrument that is designed to be the delivery destination of Email Messages that are addressed to the corresponding Email Address."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Email_box&oldid=1061295368"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Email Box"@en ; + "A Telecommunication Instrument that is designed to be the delivery destination of Email Messages that are addressed to the corresponding Email Address."@en ; + "https://en.wikipedia.org/w/index.php?title=Email_box&oldid=1061295368"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000907 -cco:ont00000907 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000690 ; - rdfs:label "Telephone"@en ; - skos:altLabel "Phone"@en ; - skos:definition "A Telecommunication Instrument that is designed to provide point-to-point communication between agents by means of audio messages."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telephone"@en ; + "Phone"@en ; + "A Telecommunication Instrument that is designed to provide point-to-point communication between agents by means of audio messages."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000908 -cco:ont00000908 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Artifact Processing"@en ; - skos:definition "A Planned Act of performing a series of mechanical or chemical operations on something in order to change or preserve it."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Material Artifact Processing"@en ; + "A Planned Act of performing a series of physical operations on a material artifact in order to change or preserve the artifact."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000909 -cco:ont00000909 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001049 ; - rdfs:label "Emergency AC/DC Power Source"@en ; - skos:definition "An Electrical Power Source that is designed to provide electrical power in an emergency situation by means of both alternating current and direct current."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Emergency AC/DC Power Source"@en ; + "An Electrical Power Source that is designed to provide electrical power in an emergency situation by means of both alternating current and direct current."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000910 -cco:ont00000910 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000144 ; - rdfs:label "Amplitude"@en ; - skos:definition "A Process Profile of an Oscillation Process that is the absolute value of the maximum displacement from a zero, equilibrium, or mean value during one cycle of the Oscillation Process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Amplitude"@en ; + "A Process Profile of an Oscillation Process that is the absolute value of the maximum displacement from a zero, equilibrium, or mean value during one cycle of the Oscillation Process."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000911 -cco:ont00000911 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000026 ; - rdfs:label "Semi-Major Axis"@en ; - skos:definition "A One-Dimensional Spatial Region that is equal to half the length of the Major Axis of an Ellipse."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Semi-Major Axis"@en ; + "A One-Dimensional Spatial Region that is equal to half the length of the Major Axis of an Ellipse."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000912 -cco:ont00000912 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001360 ; - rdfs:label "Pyramidal"@en ; - skos:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having a polygonal base with vertices that all connect to the same apex to form triangular faces."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Pyramid_(geometry)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pyramidal"@en ; + "A Three Dimensional Shape that inheres in a bearer in virtue of it having a polygonal base with vertices that all connect to the same apex to form triangular faces."@en ; + "https://en.wikipedia.org/wiki/Pyramid_(geometry)" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000913 -cco:ont00000913 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Maroon"@en ; - skos:definition "A Color consisting of purple and brown hue."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Maroon"@en ; + "A Color consisting of purple and brown hue."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000914 -cco:ont00000914 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000300 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:someValuesFrom cco:ont00001262 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom cco:ont00001262 - ] ; - rdfs:label "Group of Persons"@en ; - skos:definition "A Group of Agents that has only Persons as parts."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + rdfs:label "Group of Persons"@en ; + "A Group of Agents that has only Persons as member parts."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000915 -cco:ont00000915 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000605 ; - rdfs:label "Acronym"@en ; - skos:definition "An Abbreviated Name that combines the initial letters of a Designative Name and which is pronounced as a word."@en ; - skos:example "Wi-Fi, ASCII, OPSEC" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Acronym"@en ; + "An Abbreviated Name that combines the initial letters of a Designative Name and which is pronounced as a word."@en ; + "Wi-Fi, ASCII, OPSEC" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000916 -cco:ont00000916 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000891 ; - rdfs:label "Lunar Calendar System"@en ; - skos:definition "A Calendar System that is designed to organize and identify dates based on the cycles of the Moon's phases."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lunar_calendar&oldid=1055396837"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lunar Calendar System"@en ; + "A Calendar System that is designed to organize and identify dates based on the cycles of the Moon's phases."@en ; + "https://en.wikipedia.org/w/index.php?title=Lunar_calendar&oldid=1055396837"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000917 -cco:ont00000917 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - dcterms:bibliographicCitation "Permanent Residency - Wikipedia. https://en.wikipedia.org/wiki/Permanent_residency. Accessed 10 Feb. 2023." ; - dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "Permanent Resident Role"@en ; - skos:definition "A role inhering in a Person by virtue of that Person being recognized as having legal resident status in a Government Domain in which that person is not a citizen but where they have the right to reside on a permanent basis."@en ; - skos:prefLabel "Permanent Resident Role"@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Permanent_residency" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + "Permanent Residency - Wikipedia. https://en.wikipedia.org/wiki/Permanent_residency. Accessed 10 Feb. 2023." ; + "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Permanent Resident Role"@en ; + "A role inhering in a Person by virtue of that Person being recognized as having legal resident status in a Government Domain in which that person is not a citizen but where they have the right to reside on a permanent basis."@en ; + "Permanent Resident Role"@en ; + "https://en.wikipedia.org/wiki/Permanent_residency" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000918 -cco:ont00000918 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000346 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00000998 - ] ; - rdfs:label "Telecommunication Network Node"@en ; - skos:definition "A Communication Artifact that consists of a connection point, redistribution point, or endpoint that is designed to be part of a Telecommunication Network and can be either active or passive."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Node_(networking)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Telecommunication Network Node"@en ; + "A Communication Artifact that consists of a connection point, redistribution point, or endpoint that is designed to be part of a Telecommunication Network and can be either active or passive."@en ; + "https://en.wikipedia.org/wiki/Node_(networking)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000919 -cco:ont00000919 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000575 ; - rdfs:label "Parts List"@en ; - skos:definition "A Quality Specification that prescribes the Amount of some type of Material Artifact that are part of or located on another Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Parts List"@en ; + "A Quality Specification that prescribes the Amount of some type of Material Artifact that are part of or located on another Material Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000920 -cco:ont00000920 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000007 ; - rdfs:label "Death"@en ; - skos:definition "A Natural Process in which all biological functions that sustain a living organism cease."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Death&oldid=1064114499"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Death"@en ; + "A Natural Process in which all biological functions that sustain a living organism cease."@en ; + "https://en.wikipedia.org/w/index.php?title=Death&oldid=1064114499"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000921 -cco:ont00000921 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000800 ; - rdfs:label "Calendar Day"@en ; - skos:definition "A Day that begins and ends concurrently with the Seconds specified by a Calendar System to be the first and last Seconds of the Day."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar Day"@en ; + "A Day that begins and ends concurrently with the Seconds specified by a Calendar System to be the first and last Seconds of the Day."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000922 -cco:ont00000922 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000065 ; - rdfs:label "Act of Arrival"@en ; - skos:definition "An Act of Location Change that consists of the participating entity reaching its destination such that the larger Act of Location Change is completed."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Arrival"@en ; + "An Act of Location Change that consists of the participating entity reaching its destination such that the larger Act of Location Change is completed."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000923 -cco:ont00000923 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000649 ; - rdfs:label "Arbitrary Identifier"@en ; - skos:altLabel "Arbitrary ID"@en ; - skos:definition "A Non-Name Identifier that consists of a string of characters that does not follow an encoding system."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Arbitrary Identifier"@en ; + "Arbitrary ID"@en ; + "A Non-Name Identifier that consists of a string of characters that does not follow an encoding system."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000924 -cco:ont00000924 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001191 ; - rdfs:comment "A Beginning of Life Stasis (BoL) is a relatively brief Operational Stasis that is primarily of interest for the purpose of establishing a baseline for operational parameters to be compared to the designed specifications as well as the Material Artifact's performance throughout its operational life."@en ; - rdfs:label "Beginning of Life Stasis"@en ; - skos:definition "A Operational Stasis that holds during a Temporal Interval when a Material Artifact is first put into operational use such that its designed set of Artifact Functions is capable of operating at or near their designed peak performance levels."@en ; - cco:ont00001753 "BOL" , - "BoL" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Beginning of Life Stasis"@en ; + "A Operational Stasis that holds during a Temporal Interval when a Material Artifact is first put into operational use such that its designed set of Artifact Functions is capable of operating at or near their designed peak performance levels."@en ; + "A Beginning of Life Stasis (BoL) is a relatively brief Operational Stasis that is primarily of interest for the purpose of establishing a baseline for operational parameters to be compared to the designed specifications as well as the Material Artifact's performance throughout its operational life."@en ; + "BOL" , + "BoL" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000925 -cco:ont00000925 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000687 ; - rdfs:label "Act of Military Training Acquisition"@en ; - skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of Military Operations from an Agent or communication medium that realizes a capacity derived from its affiliation with a Military Organization."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Military Training Acquisition"@en ; + "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of Military Operations from an Agent or communication medium that realizes a capacity derived from its affiliation with a Military Organization."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000926 -cco:ont00000926 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000123 ; - rdfs:label "Act of Apologizing"@en ; - skos:definition "An Act of Expressive Communication performed by acknowledging and expressing regret for a fault, shortcoming, or failure."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=apologizing" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Apologizing"@en ; + "An Act of Expressive Communication performed by acknowledging and expressing regret for a fault, shortcoming, or failure."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=apologizing" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000927 -cco:ont00000927 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000530 ; - rdfs:label "Bass Frequency"@en ; - skos:definition "A Sonic Frequency that is between 60 and 250 Hz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bass Frequency"@en ; + "A Sonic Frequency that is between 60 and 250 Hz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000928 -cco:ont00000928 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000796 ; - rdfs:label "Train Car"@en ; - skos:altLabel "Railroad Car"@en ; - skos:definition "A Rail Transport Vehicle that consists of a single Vehicle that is not a Train but is designed to be connected to other Train Cars along with at least one Locomotive to form a Train."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Railroad_car&oldid=1063802472"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Train Car"@en ; + "Railroad Car"@en ; + "A Rail Transport Vehicle that consists of a single Vehicle that is not a Train but is designed to be connected to other Train Cars along with at least one Locomotive to form a Train."@en ; + "https://en.wikipedia.org/w/index.php?title=Railroad_car&oldid=1063802472"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000929 -cco:ont00000929 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Part Role"@en ; - skos:definition "A Role that inheres in an entity in virtue of it being part of some other entity without being subject to further subdivision or disassembly without destruction of its designated use."@en ; - cco:ont00001754 "http://origins.sese.asu.edu/ses405/Class%20Notes/Sys-Hier-WBS_Module_V1.0_PAS.pdf"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Part Role"@en ; + "A Role that inheres in an entity in virtue of it being part of some other entity without being subject to further subdivision or disassembly without destruction of its designated use."@en ; + "http://origins.sese.asu.edu/ses405/Class%20Notes/Sys-Hier-WBS_Module_V1.0_PAS.pdf"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000930 -cco:ont00000930 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001105 ; - rdfs:label "Nickel-metal Hydride Electric Battery"@en ; - skos:altLabel "NiMH Battery"@en ; - skos:definition "A Secondary Cell Electric Battery that has a metal-hydride anode and nickel oxide hydroxide cathode."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93metal_hydride_battery&oldid=1061626676"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000931 -cco:ont00000931 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000326 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002035 - ] ; - rdfs:label "Material Copy of a UPC-A Barcode"@en ; - skos:altLabel "UPC-A Barcode"@en ; - skos:definition "A Material Copy of a UPC Barcode that consists of 12 numerical digits."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nickel-metal Hydride Electric Battery"@en ; + "NiMH Battery"@en ; + "A Secondary Cell Electric Battery that has a metal-hydride anode and nickel oxide hydroxide cathode."@en ; + "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93metal_hydride_battery&oldid=1061626676"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000932 -cco:ont00000932 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Computing Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by a Material Artifact participating in a computation process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Computing Artifact Function"@en ; + "An Artifact Function that is realized by a Material Artifact participating in a computation process."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000933 -cco:ont00000933 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000907 ; - rdfs:label "Landline Telephone"@en ; - skos:definition "A Telephone that is connected to a Telephone Network through a pair of wires."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Landline Telephone"@en ; + "A Telephone that is connected to a Telephone Network through a pair of wires."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone&oldid=1060006278"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000934 -cco:ont00000934 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000126 ; - rdfs:label "Constituent State"@en ; - skos:altLabel "State"@en ; - skos:definition "A First-Order Administrative Region that is part of a Country and delimits a centralized regional Government that holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the State."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Constituent_state&oldid=1063662102"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Constituent State"@en ; + "State"@en ; + "A First-Order Administrative Region that is part of a Country and delimits a centralized regional Government that holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the State."@en ; + "https://en.wikipedia.org/w/index.php?title=Constituent_state&oldid=1063662102"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000935 -cco:ont00000935 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000566 ; - rdfs:label "Act of Legal Instrument Use"@en ; - skos:definition "An Act of Artifact Employment in which some Agent uses some Legal Instrument."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Legal Instrument Use"@en ; + "An Act of Artifact Employment in which some Agent uses some Legal Instrument."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000936 -cco:ont00000936 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001213 ; - rdfs:label "Deactivated Stasis"@en ; - skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when a Material Artifact is not realizing any of its designed Artifact Functions (or at least not realizing any of its primary functions)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Deactivated Stasis"@en ; + "A Stasis of Artifact Operationality that holds during a Temporal Interval when a Material Artifact is not realizing any of its designed Artifact Functions (or at least not realizing any of its primary functions)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000937 -cco:ont00000937 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Inhibiting Motion Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by processes in which some Material Artifact is used to inhibit the motion of some object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Inhibiting Motion Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Material Artifact is used to inhibit the motion of some object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000938 -cco:ont00000938 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Financial Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes of managing money."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Financial Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of managing money."@en ; + "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000939 -cco:ont00000939 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000817 ; - rdfs:label "Geospatial Line"@en ; - skos:definition "A Geospatial Line String that has only two vertices."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Line"@en ; + "A Geospatial Line String that has only two vertices."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000940 -cco:ont00000940 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Momentum"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the Momentum of a portion of matter that is in Motion."@en ; - skos:example "kg m/s, slug ft/s, g m/s" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Momentum"@en ; + "A Measurement Unit that is used as a standard for measurement of the Momentum of a portion of matter that is in Motion."@en ; + "kg m/s, slug ft/s, g m/s" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000941 -cco:ont00000941 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001126 ; - rdfs:label "Phosphorescence"@en ; - skos:definition "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light after absorbing shorter wavelength radiation, and to continue emitting after the absorbing process has ceased."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Phosphorescence&oldid=1060815719"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Phosphorescence"@en ; + "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light after absorbing shorter wavelength radiation, and to continue emitting after the absorbing process has ceased."@en ; + "https://en.wikipedia.org/w/index.php?title=Phosphorescence&oldid=1060815719"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000942 -cco:ont00000942 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000204 ; - rdfs:label "Sniper Rifle"@en ; - skos:definition "A Rifle that is designed to be highly accurate for long-range precision tactical shooting."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sniper_rifle&oldid=1061592308"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sniper Rifle"@en ; + "A Rifle that is designed to be highly accurate for long-range precision tactical shooting."@en ; + "https://en.wikipedia.org/w/index.php?title=Sniper_rifle&oldid=1061592308"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000943 -cco:ont00000943 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001248 ; - rdfs:label "Ocular Prosthesis"@en ; - skos:definition "An Artificial Eye that is designed to replace a missing eye, but which does not function as an eye."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ocular_prosthesis&oldid=1061336760"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ocular Prosthesis"@en ; + "An Artificial Eye that is designed to replace a missing eye, but which does not function as an eye."@en ; + "https://en.wikipedia.org/w/index.php?title=Ocular_prosthesis&oldid=1061336760"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000944 -cco:ont00000944 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000601 ; - rdfs:label "Thermal Imaging Artifact Function"@en ; - skos:definition "An Imaging Artifact Function that is realized during events in which a Material Artifact is used to create a visual representation of an entity using radiation from the far infrared region of the electromagnetic spectrum that the entity emits"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thermal Imaging Artifact Function"@en ; + "An Imaging Artifact Function that is realized during events in which a Material Artifact is used to create a visual representation of an entity using radiation from the far infrared region of the electromagnetic spectrum that the entity emits"@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000945 -cco:ont00000945 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000547 ; - rdfs:label "X-ray Telescope"@en ; - skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing X-rays to form an enhanced image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=X-ray_telescope&oldid=1035025593"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "X-ray Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing X-rays to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=X-ray_telescope&oldid=1035025593"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000946 -cco:ont00000946 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Government Building"@en ; - skos:definition "A Facility that is designed for the administration of a community."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Administration_(government)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Government Building"@en ; + "A Facility that is designed for the administration of a community."@en ; + "https://en.wikipedia.org/wiki/Administration_(government)" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000947 -cco:ont00000947 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001100 ; - rdfs:label "Temperature Measurement Artifact Function"@en ; - skos:definition "A Measurement Artifact Function that is realized during events in which a Material Artifact is used to measure the Temperature of a specified object or class of objects."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Temperature Measurement Artifact Function"@en ; + "A Measurement Artifact Function that is realized during events in which a Material Artifact is used to measure the Temperature of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000948 -cco:ont00000948 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000455 ; - rdfs:label "Act of Religious Worship"@en ; - skos:definition "An Act of Ceremony wherein there occurs acts of religious devotion usually directed towards a deity."@en ; - cco:ont00001754 "http://en.wikipedia.org/wiki/Worship (Sense Key: Worship%2:42:00 or Worship%1:04:00::)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Religious Worship"@en ; + "An Act of Ceremony wherein there occurs acts of religious devotion usually directed towards a deity."@en ; + "http://en.wikipedia.org/wiki/Worship (Sense Key: Worship%2:42:00 or Worship%1:04:00::)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000949 -cco:ont00000949 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Consumption"@en ; - skos:definition "A Planned Act in which a resource is ingested or used up."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Consumption"@en ; + "A Planned Act in which a resource is ingested or used up."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000950 -cco:ont00000950 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000970 ; - rdfs:label "Act of Maintenance"@en ; - skos:definition "An Act of Artifact Modification in which a Material Artifact is modified in order to preserve or restore one or more of its designed Qualities or Functions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Maintenance"@en ; + "An Act of Artifact Modification in which a Material Artifact is modified in order to preserve or restore one or more of its designed Qualities or Functions."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000951 -cco:ont00000951 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000099 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000514 - ] ; - rdfs:label "Electromagnetic Wave Process"@en ; - skos:altLabel "Electromagnetic Radiation"@en ; - skos:definition "A Wave Process that is produced by charged particles, involves the periodic Oscillation of electric and magnetic fields at right angles to each other and the direction of wave propogation such that it has a Transverse Wave Profile, and which transfers electromagnetic radiant energy through a portion of space or matter."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Electromagnetic Wave Process"@en ; + "Electromagnetic Radiation"@en ; + "A Wave Process that is produced by charged particles, involves the periodic Oscillation of electric and magnetic fields at right angles to each other and the direction of wave propogation such that it has a Transverse Wave Profile, and which transfers electromagnetic radiant energy through a portion of space or matter."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000952 -cco:ont00000952 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000210 ; - rdfs:label "Electric Motor"@en ; - skos:altLabel "Electric Engine"@en ; - skos:definition "An Engine that is designed to convert electrical energy into mechanical energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electric_motor&oldid=1063829856"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electric Motor"@en ; + "Electric Engine"@en ; + "An Engine that is designed to convert electrical energy into mechanical energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Electric_motor&oldid=1063829856"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000953 -cco:ont00000953 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000862 ; - rdfs:label "Pitch"@en ; - skos:definition "A Sound Process Profile that is characterized by the frequency of translated sound waves, typically on a continuum from low to high."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pitch"@en ; + "A Sound Process Profile that is characterized by the frequency of translated sound waves, typically on a continuum from low to high."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000954 -cco:ont00000954 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000870 ; - rdfs:label "Telecommunication Infrastructure"@en ; - skos:definition "An Infrastructure System that is designed to support the use of Telecommunication Instruments to communicate."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Category:Telecommunications_infrastructure&oldid=989151314"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Infrastructure"@en ; + "An Infrastructure System that is designed to support the use of Telecommunication Instruments to communicate."@en ; + "https://en.wikipedia.org/w/index.php?title=Category:Telecommunications_infrastructure&oldid=989151314"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000955 -cco:ont00000955 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000278 ; - rdfs:label "Angular Momentum"@en ; - skos:definition "A Momentum that is the product of an object's moment of inertia and its Angular Velocity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Angular_momentum&oldid=1063992505"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Angular Momentum"@en ; + "A Momentum that is the product of an object's moment of inertia and its Angular Velocity."@en ; + "https://en.wikipedia.org/w/index.php?title=Angular_momentum&oldid=1063992505"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000956 -cco:ont00000956 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001086 ; - rdfs:label "Highway Interchange"@en ; - skos:definition "A Road Junction that is designed to enable Ground Vehicles to exit one or more Highways and enter another Highway without directly crossing any other traffic stream."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Interchange_(road)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Highway Interchange"@en ; + "A Road Junction that is designed to enable Ground Vehicles to exit one or more Highways and enter another Highway without directly crossing any other traffic stream."@en ; + "https://en.wikipedia.org/wiki/Interchange_(road)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000957 -cco:ont00000957 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000881 ; - rdfs:label "Reservoir"@en ; - skos:definition "A Storage Facility that is designed to store water in a man-made open enclosure or area."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Reservoir&oldid=1055068000"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reservoir"@en ; + "A Storage Facility that is designed to store water in a man-made open enclosure or area."@en ; + "https://en.wikipedia.org/w/index.php?title=Reservoir&oldid=1055068000"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000958 -cco:ont00000958 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000031 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001808 ; - owl:someValuesFrom obo:BFO_0000001 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf obo:BFO_0000031 ; - rdfs:label "Information Content Entity"@en ; - skos:altLabel "ICE"@en ; - skos:definition "A Generically Dependent Continuant that generically depends on some Information Bearing Entity and stands in relation of aboutness to some Entity."@en ; - skos:scopeNote "Information Content Entity is here intended to be a class of Entities whose instances are the informational content of Information Bearing Entities. For example, three instances of information bearers -- such as a bar chart, color-coded map, and a written report -- each of which lists the GDP of Countries for the year 2010 are each different carriers of the same information content. It is this content that is generically dependent upon its carrier. This treatment of Informational Content Entity (cf. the Information Artifact Ontology) leads to a principle of subtyping based upon the relationship that ICE's have with the Entity they are about rather than characteristics such as format, language, measurement scale, or media. The latter are treated here as being Qualities of bearers."@en ; - cco:ont00001754 "http://purl.obolibrary.org/obo/IAO_0000030" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Information Content Entity"@en ; + "ICE"@en ; + "A Generically Dependent Continuant that generically depends on some Information Bearing Entity and stands in relation of aboutness to some Entity."@en ; + "Information Content Entity is here intended to be a class of Entities whose instances are the informational content of Information Bearing Entities. For example, three instances of information bearers -- such as a bar chart, color-coded map, and a written report -- each of which lists the GDP of Countries for the year 2010 are each different carriers of the same information content. It is this content that is generically dependent upon its carrier. This treatment of Informational Content Entity (cf. the Information Artifact Ontology) leads to a principle of subtyping based upon the relationship that ICE's have with the Entity they are about rather than characteristics such as format, language, measurement scale, or media. The latter are treated here as being Qualities of bearers."@en ; + "http://purl.obolibrary.org/obo/IAO_0000030" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000959 -cco:ont00000959 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Frequency"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the number of times an event repeats per unit of time."@en ; - skos:example "hertz, revolutions per minute" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Frequency"@en ; + "A Measurement Unit that is used as a standard for measurement of the number of times an event repeats per unit of time."@en ; + "hertz, revolutions per minute" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000960 -cco:ont00000960 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001190 ; - rdfs:label "Fixed Line Network Telephone Call"@en ; - skos:definition "A Telephone Call transmitted over a telephone network where the telephones are wired into a single telephone exchange."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fixed Line Network Telephone Call"@en ; + "A Telephone Call transmitted over a telephone network where the telephones are wired into a single telephone exchange."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000961 -cco:ont00000961 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000098 ; - rdfs:label "Current Conversion Artifact Function"@en ; - skos:definition "An Electrical Artifact Function that is realized by processes in which some Material Artifact is used to convert some electrical current."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Current Conversion Artifact Function"@en ; + "An Electrical Artifact Function that is realized by processes in which some Material Artifact is used to convert some electrical current."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000962 -cco:ont00000962 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000593 ; - rdfs:label "Portion of Liquid Propellant"@en ; - skos:definition "A Portion of Propellant that is stored in a liquid state."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Propellant"@en ; + "A Portion of Propellant that is stored in a liquid state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000963 -cco:ont00000963 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000256 ; - rdfs:label "Fuel Transfer System"@en ; - skos:definition "A Fluid Control Artifact that is designed to facilitate the transfer of some Portion of Fuel from the Fuel Tank for use in some Engine."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel Transfer System"@en ; + "A Fluid Control Artifact that is designed to facilitate the transfer of some Portion of Fuel from the Fuel Tank for use in some Engine."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000964 -cco:ont00000964 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000150 ; - rdfs:comment "The corresponding Wavelength range is 1,000–100 m"@en ; - rdfs:label "Medium Frequency"@en ; - skos:altLabel "ITU Band Number 6"@en ; - skos:definition "A Radio Frequency that is between 300 kHz and 3 MHz."@en ; - cco:ont00001753 "MF" ; - cco:ont00001754 "International Telecommunication Union (ITU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Medium Frequency"@en ; + "ITU Band Number 6"@en ; + "A Radio Frequency that is between 300 kHz and 3 MHz."@en ; + "The corresponding Wavelength range is 1,000–100 m"@en ; + "MF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000965 -cco:ont00000965 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001942 ; - owl:someValuesFrom obo:BFO_0000001 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000958 ; - rdfs:label "Prescriptive Information Content Entity"@en ; - skos:altLabel "Directive ICE"@en ; - skos:definition "An Information Content Entity that consists of a set of propositions or images (as in the case of a blueprint) that prescribe some Entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000966 -cco:ont00000966 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000258 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002025 - ] ; - rdfs:label "Material Copy of a EAN Barcode"@en ; - skos:altLabel "EAN Barcode"@en ; - skos:definition "A Material Copy of a One-Dimensional Barcode that consists of 8 or 13 numerical digits and is used to scan consumer goods."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Prescriptive Information Content Entity"@en ; + "Directive ICE"@en ; + "An Information Content Entity that consists of a set of propositions or images (as in the case of a blueprint) that prescribe some Entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000967 -cco:ont00000967 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001367 ; - rdfs:label "Height"@en ; - skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a vertical direction."@en ; - cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Height"@en ; + "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a vertical direction."@en ; + "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000968 -cco:ont00000968 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000204 ; - rdfs:label "Assault Rifle"@en ; - skos:definition "A Rifle that is designed to have selective-fire functionality and use an intermediate Cartridge and a detachable magazine."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Assault_rifle&oldid=1063774380"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Assault Rifle"@en ; + "A Rifle that is designed to have selective-fire functionality and use an intermediate Cartridge and a detachable magazine."@en ; + "https://en.wikipedia.org/w/index.php?title=Assault_rifle&oldid=1063774380"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000969 -cco:ont00000969 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Speed"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the rates at which objects traverse distance."@en ; - skos:example "miles per hour, kilometers per hour, knot, mach" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Speed"@en ; + "A Measurement Unit that is used as a standard for measurement of the rates at which objects traverse distance."@en ; + "miles per hour, kilometers per hour, knot, mach" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000970 -cco:ont00000970 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000908 ; - rdfs:comment "Excluded from this class are instances of role change or role creation such as the introduction of an artifact as a piece of evidence in a trial or the loading of artifacts onto a ship for transport."@en ; - rdfs:label "Act of Artifact Modification"@en ; - skos:definition "An Act of Artifact Processing in which an existing Material Artifact is acted upon in a manner that changes, adds, or removes one or more of its Qualities, Dispositions, or Functions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Artifact Modification"@en ; + "An Act of Material Artifact Processing in which an existing Material Artifact is acted upon in a manner that changes, adds, or removes one or more of its Qualities, Dispositions, or Functions."@en ; + "Excluded from this class are instances of role change or role creation such as the introduction of an artifact as a piece of evidence in a trial or the loading of artifacts onto a ship for transport."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000971 -cco:ont00000971 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000402 ; - rdfs:label "Act of Deceptive Communication"@en ; - skos:definition "Ac Act of Communication intended to mislead the audience by distortion or falsification of evidence and induce a reaction that is prejudicial to the interests of the audience."@en ; - cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00000972 -cco:ont00000972 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000966 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002028 - ] ; - rdfs:label "Material Copy of a EAN-13 Barcode"@en ; - skos:altLabel "EAN-13 Barcode"@en ; - skos:definition "A Material Copy of an EAN Barcode that consists of 13 numerical digits and is used to designate products at the point of sale."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Deceptive Communication"@en ; + "Ac Act of Communication intended to mislead the audience by distortion or falsification of evidence and induce a reaction that is prejudicial to the interests of the audience."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000973 -cco:ont00000973 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000827 ; - rdfs:label "Decimal Time of Day Identifier"@en ; - skos:altLabel "Fractional Time of Day Identifier"@en ; - skos:definition "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using a decimal value for the portion of the Day that preceded the Temporal Instant."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decimal Time of Day Identifier"@en ; + "Fractional Time of Day Identifier"@en ; + "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using a decimal value for the portion of the Day that preceded the Temporal Instant."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000974 -cco:ont00000974 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000965 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:someValuesFrom cco:ont00000476 - ] ; - rdfs:label "Plan"@en ; - skos:definition "A Directive Information Content Entity that prescribes some set of intended Intentional Acts through which some Agent expects to achieve some Objective."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Plan&oldid=1047320560"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Plan"@en ; + "A Prescriptive Information Content Entity that prescribes some set of intended Intentional Acts through which some Agent expects to achieve some Objective."@en ; + "https://en.wikipedia.org/w/index.php?title=Plan&oldid=1047320560"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000975 -cco:ont00000975 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Cyan"@en ; - skos:definition "A Color that is between Green and Blue with a wavelength in the visible spectrum typically between 490 and 520 nanometers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cyan"@en ; + "A Color that is between Green and Blue with a wavelength in the visible spectrum typically between 490 and 520 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000976 -cco:ont00000976 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000696 ; - rdfs:label "Political Orientation"@en ; - skos:definition "An Ideology that characterizes the political thinking of an Agent or Group of Agents, usually with respect to the political environment within a particular nation."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Political Orientation"@en ; + "An Ideology that characterizes the political thinking of an Agent or Group of Agents, usually with respect to the political environment within a particular nation."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000977 -cco:ont00000977 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000588 ; - rdfs:label "Act of Publishing Mass Media Documentary"@en ; - skos:definition "An Act of Mass Media Communication involving the preparation and public issuance of information that provides a factual record or report."@en ; - cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Publishing Mass Media Documentary"@en ; + "An Act of Mass Media Communication involving the preparation and public issuance of information that provides a factual record or report."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000978 -cco:ont00000978 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000015 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001803 ; - owl:someValuesFrom obo:BFO_0000015 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf obo:BFO_0000015 ; - rdfs:label "Cause"@en ; - skos:definition "A Process that is the cause of or one of the causes of some other Process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Cause"@en ; + "A Process that is the cause of or one of the causes of some other Process."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000979 -cco:ont00000979 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Closure"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of the degree to which that bearer affords passage or sightline through it via an opening, aperture, orifice, or vent."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Closure"@en ; + "A Quality that inheres in a bearer in virtue of the degree to which that bearer affords passage or sightline through it via an opening, aperture, orifice, or vent."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000980 -cco:ont00000980 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001084 ; - rdfs:label "Portion of Waste Material"@en ; - skos:definition "A Portion of Processed Material that serves no further use in terms of the initial user's own purposes of production, transformation, or consumption such that the Agent wants to dispose of it."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Waste Material"@en ; + "A Portion of Processed Material that serves no further use in terms of the initial user's own purposes of production, transformation, or consumption such that the Agent wants to dispose of it."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000981 -cco:ont00000981 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000566 ; - rdfs:label "Act of Portion of Material Consumption"@en ; - skos:definition "An Act of Artifact Employment in which a Portion of Material is expended."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Portion of Material Consumption"@en ; + "An Act of Artifact Employment in which a Portion of Material is expended."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000982 -cco:ont00000982 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000543 ; - rdfs:label "Decrease of Function"@en ; - skos:definition "A Decrease of Disposition in which some Independent Continuant has a decrease of some Function that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Function"@en ; + "A Decrease of Disposition in which some Independent Continuant has a decrease of some Function that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000983 -cco:ont00000983 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001028 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000514 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001028 ; - rdfs:label "Shear Wave Process"@en ; - skos:definition "A Mechanical Wave that has a Transverse Wave Profile."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Shear Wave Process"@en ; + "A Mechanical Wave that has a Transverse Wave Profile."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000984 -cco:ont00000984 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Occupation Role"@en ; - skos:definition "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill within the context of some Act of Employment."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Occupation Role"@en ; + "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill within the context of some Act of Employment."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000985 -cco:ont00000985 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001350 ; - rdfs:label "Thermal Insulation Artifact Function"@en ; - skos:definition "A Thermal Control Artifact Function that is realized during events in which a Material Artifact prevents or reduces the transfer of heat between objects that are in thermal contact or in range of radiative influence."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Thermal_insulation&oldid=1059273300"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thermal Insulation Artifact Function"@en ; + "A Thermal Control Artifact Function that is realized during events in which a Material Artifact prevents or reduces the transfer of heat between objects that are in thermal contact or in range of radiative influence."@en ; + "https://en.wikipedia.org/w/index.php?title=Thermal_insulation&oldid=1059273300"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000986 -cco:ont00000986 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000084 ; - rdfs:label "Scar"@en ; - skos:definition "A Bodily Component that consists of a portion of fibrous connective tissue on skin or within body tissue and which was formed due to an injury that has not healed completely."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Scar&oldid=1057179533"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Scar"@en ; + "A Bodily Component that consists of a portion of fibrous connective tissue on skin or within body tissue and which was formed due to an injury that has not healed completely."@en ; + "https://en.wikipedia.org/w/index.php?title=Scar&oldid=1057179533"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000987 -cco:ont00000987 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Citizen Role"@en ; - skos:definition "A Role that inheres in a Person by virtue of that Person being legally recognized as a member of a particular state, with associated rights and obligations."@en ; - cco:ont00001754 "http://en.wikitionary.org/wiki/citizen" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Citizen Role"@en ; + "A Role that inheres in a Person by virtue of that Person being legally recognized as a member of a particular state, with associated rights and obligations."@en ; + "http://en.wikitionary.org/wiki/citizen" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000988 -cco:ont00000988 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000804 ; - rdfs:label "Reflective Prism"@en ; - skos:definition "A Prism designed to reflect light in order to flip, invert, rotate, deviate, or displace a beam of light entering the Prism."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reflective Prism"@en ; + "A Prism designed to reflect light in order to flip, invert, rotate, deviate, or displace a beam of light entering the Prism."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000989 -cco:ont00000989 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000732 ; - rdfs:comment "The corresponding Wavelength range is 100–10 mm"@en ; - rdfs:label "Super High Frequency"@en ; - skos:altLabel "ITU Band Number 10"@en ; - skos:definition "A Microwave Frequency that is between 3 and 30 GHz."@en ; - cco:ont00001753 "SHF" ; - cco:ont00001754 "International Telecommunication Union (ITU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Super High Frequency"@en ; + "ITU Band Number 10"@en ; + "A Microwave Frequency that is between 3 and 30 GHz."@en ; + "The corresponding Wavelength range is 100–10 mm"@en ; + "SHF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000990 -cco:ont00000990 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000003 ; - rdfs:label "Nickname"@en ; - skos:definition "A Designative Name that is a familiar or humorous substitute for an entity's Proper Name."@en ; - skos:example "Ike, Chief, P-Fox" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nickname"@en ; + "A Designative Name that is a familiar or humorous substitute for an entity's Proper Name."@en ; + "Ike, Chief, P-Fox" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000991 -cco:ont00000991 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Bent"@en ; - skos:altLabel "Angular"@en , - "Kinked"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having one or more angles along its border."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bent"@en ; + "Angular"@en , + "Kinked"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having one or more angles along its border."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000992 -cco:ont00000992 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001869 ; - owl:someValuesFrom cco:ont00000085 - ] ; - rdfs:comment "The Second is used as the basic SI unit of time."@en ; - rdfs:label "Second"@en ; - skos:definition "A Temporal Interval that is equal to the duration of 9,192,631,770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom."@en ; - cco:ont00001754 "https://physics.nist.gov/cuu/Units/second.html" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Second"@en ; + "A Temporal Interval that is equal to the duration of 9,192,631,770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom."@en ; + "The Second is used as the basic SI unit of time."@en ; + "https://physics.nist.gov/cuu/Units/second.html" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000993 -cco:ont00000993 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000961 ; - rdfs:label "Power Rectifying Artifact Function"@en ; - skos:definition "A Current Conversion Artifact Function that is realized by processes in which some Material Artifact is used to convert alternating current (AC) to direct current (DC)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Power Rectifying Artifact Function"@en ; + "A Current Conversion Artifact Function that is realized by processes in which some Material Artifact is used to convert alternating current (AC) to direct current (DC)."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000994 -cco:ont00000994 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000098 ; - rdfs:label "Electrical Power Production Artifact Function"@en ; - skos:definition "An Electrical Artifact Function that is realized during events in which a Material Artifact is used to generate electrical power."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Power Production Artifact Function"@en ; + "An Electrical Artifact Function that is realized during events in which a Material Artifact is used to generate electrical power."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000995 -cco:ont00000995 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000040 ; - rdfs:label "Material Artifact"@en ; - skos:definition "A Material Entity that was designed by some Agent to realize a certain Function."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Material Artifact"@en ; + "A Material Entity that was designed by some Agent to realize a certain Function."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000996 -cco:ont00000996 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000294 ; - rdfs:label "Ramjet Engine"@en ; - skos:altLabel "Ramjet"@en ; - skos:definition "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air (without the use of an axial compressor) and decelerate it to subsonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ramjet&oldid=1062836331"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ramjet Engine"@en ; + "Ramjet"@en ; + "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air (without the use of an axial compressor) and decelerate it to subsonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + "https://en.wikipedia.org/w/index.php?title=Ramjet&oldid=1062836331"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000997 -cco:ont00000997 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000016 ; - dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "Disrupting Disposition"@en ; - skos:definition "A disposition the realization of which would disrupt a process some entity has an interest in."@en ; - skos:editorialNote "This is a defined class. A Disrupting Disposition is indexed by the interest_in object property. A disposition can be a Disrupting Disposition according to one index and not a Disrupting Disposition according to another index." ; - skos:prefLabel "Threat"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Disrupting Disposition"@en ; + "A disposition the realization of which would disrupt a process some entity has an interest in."@en ; + "This is a defined class. A Disrupting Disposition is indexed by the interest_in object property. A disposition can be a Disrupting Disposition according to one index and not a Disrupting Disposition according to another index." ; + "Threat"@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000998 -cco:ont00000998 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001036 ; - rdfs:label "Telecommunication Network"@en ; - skos:definition "A Communication System that is designed to enable the transmission of information over significant distances between Telecommunication Endpoints via Telecommunication Network Nodes and Lines."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Network"@en ; + "A Communication System that is designed to enable the transmission of information over significant distances between Telecommunication Endpoints via Telecommunication Network Nodes and Lines."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications_network&oldid=1063347482"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00000999 -cco:ont00000999 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001213 ; - owl:disjointWith cco:ont00001191 ; - rdfs:label "Defunct Stasis"@en ; - skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when a Material Artifact no longer maintains its designed set of Artifact Functions (or at least no longer maintains its primary functions)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Defunct Stasis"@en ; + "A Stasis of Artifact Operationality that holds during a Temporal Interval when a Material Artifact no longer maintains its designed set of Artifact Functions (or at least no longer maintains its primary functions)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001000 -cco:ont00001000 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000252 ; - rdfs:label "Spray Nozzle"@en ; - skos:definition "A Nozzle that is designed to facilitate a conversion of the flow of a portion of liquid into a dynamic collection of drops dispersed in a portion of gas."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spray Nozzle"@en ; + "A Nozzle that is designed to facilitate a conversion of the flow of a portion of liquid into a dynamic collection of drops dispersed in a portion of gas."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001001 -cco:ont00001001 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Drooping"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a border that hangs downwards."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Drooping"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a border that hangs downwards."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001002 -cco:ont00001002 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002010 - ] ; - rdfs:label "Material Copy of a Message"@en ; - skos:altLabel "Message"@en ; - skos:definition "An Information Bearing Artifact that is designed to carry some specific Information Content Entity that is relatively brief and to be transmitted from a sender to a recipient."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Message&oldid=1060098631"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Message"@en ; + "Message"@en ; + "An Information Bearing Artifact that is designed to carry some specific Information Content Entity that is relatively brief and to be transmitted from a sender to a recipient."@en ; + "https://en.wikipedia.org/w/index.php?title=Message&oldid=1060098631"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001003 -cco:ont00001003 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001150 ; - rdfs:label "Cartridge"@en ; - skos:definition "A Portion of Ammunition that is designed to package a Bullet, a propellant substance, and a primer within a case that is designed to fit within the firing chamber of a Firearm."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Cartridge_(firearms)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cartridge"@en ; + "A Portion of Ammunition that is designed to package a Bullet, a propellant substance, and a primer within a case that is designed to fit within the firing chamber of a Firearm."@en ; + "https://en.wikipedia.org/wiki/Cartridge_(firearms)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001004 -cco:ont00001004 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Electromagnetic Force"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the electromagnetic force between electrically charged entities."@en ; - skos:example "volt, ampere, coulomb" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Electromagnetic Force"@en ; + "A Measurement Unit that is used as a standard for measurement of the electromagnetic force between electrically charged entities."@en ; + "volt, ampere, coulomb" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001005 -cco:ont00001005 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000294 ; - rdfs:label "Turbojet Air-Breathing Jet Engine"@en ; - skos:definition "An Air-Breathing Jet Engine that uses a Turbojet, which consists of a Turbine with a Propelling Nozzle."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Turbojet&oldid=1060948529"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Turbojet Air-Breathing Jet Engine"@en ; + "An Air-Breathing Jet Engine that uses a Turbojet, which consists of a Turbine with a Propelling Nozzle."@en ; + "https://en.wikipedia.org/w/index.php?title=Turbojet&oldid=1060948529"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001006 -cco:ont00001006 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:label "Operator Role"@en ; - skos:definition "A Role that inheres in an Agent by virtue of that Agent's responsibilities to operate or control some Material Artifact."@en ; - skos:example "the role of driving a car" , - "the role of flying an airplane" , - "the role of operating a crane" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Operator Role"@en ; + "A Role that inheres in an Agent by virtue of that Agent's responsibilities to operate or control some Material Artifact."@en ; + "the role of driving a car" , + "the role of flying an airplane" , + "the role of operating a crane" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001007 -cco:ont00001007 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000928 ; - rdfs:label "Passenger Train Car"@en ; - skos:definition "A Train Car that is designed to transport passengers."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Passenger_car_(rail)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Passenger Train Car"@en ; + "A Train Car that is designed to transport passengers."@en ; + "https://en.wikipedia.org/wiki/Passenger_car_(rail)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001008 -cco:ont00001008 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000445 ; - rdfs:label "Biological Weapon"@en ; - skos:definition "A Weapon that is designed to inflict harm, incapacity, or death by means of releasing disease-producing agents—such as bacteria, viruses, or fungi."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Biological_warfare&oldid=1062972883"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Biological Weapon"@en ; + "A Weapon that is designed to inflict harm, incapacity, or death by means of releasing disease-producing agents—such as bacteria, viruses, or fungi."@en ; + "https://en.wikipedia.org/w/index.php?title=Biological_warfare&oldid=1062972883"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001009 -cco:ont00001009 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000547 ; - rdfs:label "Optical Telescope"@en ; - skos:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light to form an enhanced image of the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Optical_telescope&oldid=1062201329"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Telescope"@en ; + "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light to form an enhanced image of the Object."@en ; + "https://en.wikipedia.org/w/index.php?title=Optical_telescope&oldid=1062201329"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001010 -cco:ont00001010 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001811 ; - owl:someValuesFrom obo:BFO_0000001 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001163 ; - owl:disjointWith cco:ont00001022 , - cco:ont00001364 ; - rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; - rdfs:label "Ordinal Measurement Information Content Entity"@en ; - skos:definition "A Measurement Information Content Entity that consists of a symbol that places an Entity into some rank order."@en ; - skos:example "The sentence \"The coldest day in history in Chicago, IL. is January 20, 1985.\" is the carrier of an ordinal measurment."@en , - "a measurement that places Geospatial Regions into a rank order of small, medium, large" , - "a measurement that places military units onto a readiness rank order of red, yellow, green" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith , + ; + rdfs:label "Ordinal Measurement Information Content Entity"@en ; + "A Measurement Information Content Entity that consists of a symbol that places an Entity into some rank order."@en ; + "The sentence \"The coldest day in history in Chicago, IL. is January 20, 1985.\" is the carrier of an ordinal measurment."@en , + "a measurement that places Geospatial Regions into a rank order of small, medium, large" , + "a measurement that places military units onto a readiness rank order of red, yellow, green" ; + "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001011 -cco:ont00001011 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000053 ; - rdfs:label "Automobile"@en ; - skos:definition "A Ground Motor Vehicle that is designed to transport a small number of passengers while traveling on four tired wheels."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Car&oldid=1064116950"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001012 -cco:ont00001012 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000258 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002031 - ] ; - rdfs:comment "Further variants of GS1 DataBar have not been defined here."@en ; - rdfs:label "Material Copy of a GS1 DataBar Barcode"@en ; - skos:altLabel "GS1 DataBar Barcode"@en ; - skos:definition "A Material Copy of a One-Dimensional Barcode that consists of 12-14 numerical digits and is used in retail and healthcare."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Automobile"@en ; + "A Ground Motor Vehicle that is designed to transport a small number of passengers while traveling on four tired wheels."@en ; + "https://en.wikipedia.org/w/index.php?title=Car&oldid=1064116950"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001013 -cco:ont00001013 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Heating Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process in which the thermal energy of a system increases."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heating Artifact Function"@en ; + "An Artifact Function that is realized in a process in which the thermal energy of a system increases."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001014 -cco:ont00001014 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000003 ; - rdfs:label "Proper Name"@en ; - skos:definition "A Designative Name that is an official name for a particular entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Proper Name"@en ; + "A Designative Name that is an official name for a particular entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001015 -cco:ont00001015 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000646 ; - rdfs:label "Controlled-Access Highway"@en ; - skos:altLabel "Expressway"@en , - "Freeway"@en , - "Motorway"@en ; - skos:definition "A Highway that is designed for high-speed vehicular traffic, with all traffic flow and ingress/egress regulated."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Controlled-access_highway&oldid=1063655601"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Controlled-Access Highway"@en ; + "Expressway"@en , + "Freeway"@en , + "Motorway"@en ; + "A Highway that is designed for high-speed vehicular traffic, with traffic flow and ingress/egress regulated."@en ; + "https://en.wikipedia.org/w/index.php?title=Controlled-access_highway&oldid=1063655601"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001016 -cco:ont00001016 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - rdfs:label "Portion of Lithosphere"@en ; - skos:definition "A fiat object part of the rigid, outermost rocky shell of a natural satellite."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lithosphere&oldid=1143215085"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Lithosphere"@en ; + "A fiat object part of the rigid, outermost rocky shell of a natural satellite."@en ; + "https://en.wikipedia.org/w/index.php?title=Lithosphere&oldid=1143215085"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001017 -cco:ont00001017 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00001379 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf obo:BFO_0000040 ; - rdfs:label "Agent"@en ; - skos:definition "A Material Entity that bears an Agent Capability."@en ; - cco:ont00001754 "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Agent"@en ; + "A Material Entity that bears an Agent Capability."@en ; + "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001018 -cco:ont00001018 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000350 ; - rdfs:label "Equipment Cooling System"@en ; - skos:definition "A Cooling System that is designed to cool some piece of equipment."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Equipment Cooling System"@en ; + "A Cooling System that is designed to cool some piece of equipment."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001019 -cco:ont00001019 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000723 ; - rdfs:label "Steering Control System"@en ; - skos:definition "A Vehicle Control System that is designed to control the direction some Vehicle is traveling."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Steering Control System"@en ; + "A Vehicle Control System that is designed to control the direction some Vehicle is traveling."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001020 -cco:ont00001020 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000838 ; - rdfs:label "Portion of Gaseous Fuel"@en ; - skos:definition "A Portion of Fuel that is stored in a gaseous state."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Gaseous Fuel"@en ; + "A Portion of Fuel that is stored in a gaseous state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001021 -cco:ont00001021 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000379 ; - rdfs:label "Act of Denying"@en ; - skos:definition "An Act of Representative Communication performed by either asserting that something is not true or real or refusing to satisfy a request or desire."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/denial" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Denying"@en ; + "An Act of Representative Communication performed by either asserting that something is not true or real or refusing to satisfy a request or desire."@en ; + "http://www.merriam-webster.com/dictionary/denial" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001022 -cco:ont00001022 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001983 ; - owl:someValuesFrom obo:BFO_0000001 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001163 ; - owl:disjointWith cco:ont00001364 ; - rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; - rdfs:label "Ratio Measurement Information Content Entity"@en ; - skos:definition "A Measurement Information Content Entity that consists of a symbol that places a Quality of an Entity onto an interval scale having a true zero value."@en ; - skos:example "The sentence \"The temperature reached 240.372 degrees Kelvin on January 20, 1985 in Chicago, IL.\" is the carrier of a ratio measurement as 0 degrees on the Kelvin scale does describe absolute zero."@en , - "a measurement of the barometric pressure at 1,000 feet above sea level" , - "a measurement of the measure of air temperature on the Kelvin scale" , - "a measurement of the number of members in an Organization" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Ratio Measurement Information Content Entity"@en ; + "A Measurement Information Content Entity that consists of a symbol that places a Quality of an Entity onto an interval scale having a true zero value."@en ; + "The sentence \"The temperature reached 240.372 degrees Kelvin on January 20, 1985 in Chicago, IL.\" is the carrier of a ratio measurement as 0 degrees on the Kelvin scale does describe absolute zero."@en , + "a measurement of the barometric pressure at 1,000 feet above sea level" , + "a measurement of the measure of air temperature on the Kelvin scale" , + "a measurement of the number of members in an Organization" ; + "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001023 -cco:ont00001023 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000619 ; - rdfs:label "Calendar Week"@en ; - skos:definition "A Week that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Week."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=calendar+week" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar Week"@en ; + "A Week that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Week."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=calendar+week" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001024 -cco:ont00001024 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000394 ; - rdfs:label "Spark Ignition Engine"@en ; - skos:definition "An Internal Combustion Engine that is designed to operate by generating a spark to ignite a portion of Fuel and Oxidizer mixture."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spark Ignition Engine"@en ; + "An Internal Combustion Engine that is designed to operate by generating a spark to ignite a portion of Fuel and Oxidizer mixture."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001025 -cco:ont00001025 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001049 ; - rdfs:label "Electric Generator"@en ; - skos:definition "An Electrical Power Source that is designed to convert mechanical energy to electrical energy for use in an external circuit."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electric_generator&oldid=1057805035"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electric Generator"@en ; + "An Electrical Power Source that is designed to convert mechanical energy to electrical energy for use in an external circuit."@en ; + "https://en.wikipedia.org/w/index.php?title=Electric_generator&oldid=1057805035"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001026 -cco:ont00001026 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000119 ; - rdfs:label "Pointing Orientation"@en ; - skos:altLabel "Facing Orientation"@en ; - skos:definition "A Spatial Orientation of a Material Entity in which one or more of its designated components are oriented toward a specified direction."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pointing Orientation"@en ; + "Facing Orientation"@en ; + "A Spatial Orientation of a Material Entity in which one or more of its designated components are oriented toward a specified direction."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001027 -cco:ont00001027 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000095 ; - rdfs:label "Trim Tab"@en ; - skos:definition "A Control Surface that is designed to counteract hydro-, aerodynamic, or other forces in order to stabilize the Vehicle it is part of in the desired Attitude."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Trim_tab&oldid=1054550485"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Trim Tab"@en ; + "A Control Surface that is designed to counteract hydro-, aerodynamic, or other forces in order to stabilize the Vehicle it is part of in the desired Attitude."@en ; + "https://en.wikipedia.org/w/index.php?title=Trim_tab&oldid=1054550485"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001028 -cco:ont00001028 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000099 ; - rdfs:label "Mechanical Wave Process"@en ; - skos:definition "A Wave Process that involves Oscillation of a portion of matter such that energy is transferred through the material medium."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Mechanical_wave&oldid=1057233679"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Mechanical Wave Process"@en ; + "A Wave Process that involves Oscillation of a portion of matter such that energy is transferred through the material medium."@en ; + "https://en.wikipedia.org/w/index.php?title=Mechanical_wave&oldid=1057233679"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001029 -cco:ont00001029 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001150 ; - rdfs:label "Unguided Rocket"@en ; - skos:altLabel "Rocket"@en ; - skos:definition "A Portion of Ammunition that is designed to be a self-propelled, but unguided, projectile that delivers some payload (explosive or other) over relatively long distances through the use of a Rocket Engine."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Rocket_(weapon)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Unguided Rocket"@en ; + "Rocket"@en ; + "A Portion of Ammunition that is designed to be a self-propelled, but unguided, projectile that delivers some payload (explosive or other) over relatively long distances through the use of a Rocket Engine."@en ; + "https://en.wikipedia.org/wiki/Rocket_(weapon)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001030 -cco:ont00001030 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000796 ; - rdfs:label "Train"@en ; - skos:altLabel "Railroad Train"@en , - "Railway Train"@en ; - skos:definition "A Rail Transport Vehicle that consists of a series of connected Train Cars or Railcars."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Train&oldid=1064071492"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Train"@en ; + "Railroad Train"@en , + "Railway Train"@en ; + "A Rail Transport Vehicle that consists of a series of connected Train Cars or Railcars."@en ; + "https://en.wikipedia.org/w/index.php?title=Train&oldid=1064071492"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001031 -cco:ont00001031 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001162 ; - rdfs:label "Act of Volunteering"@en ; - skos:definition "An Act of Commissive Communication performed by voluntarily undertaking or expressing a willingness to undertake a service."@en ; - skos:example "entering into military service voluntarily" , - "rendering a service voluntarily" ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/volunteer" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Volunteering"@en ; + "An Act of Commissive Communication performed by voluntarily undertaking or expressing a willingness to undertake a service."@en ; + "entering into military service voluntarily" , + "rendering a service voluntarily" ; + "http://www.merriam-webster.com/dictionary/volunteer" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001032 -cco:ont00001032 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001374 ; - rdfs:label "Act of Assignment"@en ; - skos:definition "An Act of Declarative Communication in which rights held by one party (the assignor) are transferred to another party (the assignee) with regard to a particular entity as specified by the details of the assignment, which is often prescribed by a contract."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Assignment_(law)&oldid=1056101591"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Assignment"@en ; + "An Act of Declarative Communication in which rights held by one party (the assignor) are transferred to another party (the assignee) with regard to a particular entity as specified by the details of the assignment, which is often prescribed by a contract."@en ; + "https://en.wikipedia.org/w/index.php?title=Assignment_(law)&oldid=1056101591"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001033 -cco:ont00001033 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Biological Sex"@en ; - skos:definition "A Quality inhering in a bearer by virtue of the bearer's ability to undergo sexual reproduction in order to differentiate the individuals or types involved."@en ; - cco:ont00001754 "http://purl.org/obo/owl/PATO#PATO_0000047" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Biological Sex"@en ; + "A Quality inhering in a bearer by virtue of the bearer's ability to undergo sexual reproduction in order to differentiate the individuals or types involved."@en ; + "http://purl.org/obo/owl/PATO#PATO_0000047" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001034 -cco:ont00001034 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000774 ; - rdfs:label "Full Motion Video Camera"@en ; - skos:definition "A Video Camera that is designed to capture and record images of sufficiently high quality and in rapid enough succession that the resulting video supports smooth playback."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Full Motion Video Camera"@en ; + "A Video Camera that is designed to capture and record images of sufficiently high quality and in rapid enough succession that the resulting video supports smooth playback."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001035 -cco:ont00001035 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000387 ; - rdfs:label "Pitch Axis"@en ; - skos:altLabel "Lateral Axis"@en ; - skos:definition "An Axis of Rotation that passes through the center of an object's Mass and is perpendicular both to the direction of the object's motion and to the object's Yaw Axis."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pitch Axis"@en ; + "Lateral Axis"@en ; + "An Axis of Rotation that passes through the center of an object's Mass and is perpendicular both to the direction of the object's motion and to the object's Yaw Axis."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001036 -cco:ont00001036 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Communication System"@en ; - skos:definition "A Material Artifact that is designed to enable some Act of Communication by means of transmission systems, relay stations, tributary stations, and data terminal equipment, usually capable of interconnection and interoperation to form an integrated whole."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Communications_system&oldid=1058600948"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication System"@en ; + "A Material Artifact that is designed to enable some Act of Communication by means of transmission systems, relay stations, tributary stations, and data terminal equipment, usually capable of interconnection and interoperation to form an integrated whole."@en ; + "https://en.wikipedia.org/w/index.php?title=Communications_system&oldid=1058600948"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001037 -cco:ont00001037 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001197 ; - rdfs:label "Constructed Feature"@en ; - skos:definition "An Anthropogenic Feature that has been constructed by deliberate human effort."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Constructed Feature"@en ; + "An Anthropogenic Feature that has been constructed by deliberate human effort."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001038 -cco:ont00001038 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001105 ; - rdfs:label "Nickel Cadmium Electric Battery"@en ; - skos:altLabel "NiCad Battery"@en ; - skos:definition "A Secondary Cell Electric Battery that has a cadmium anode and nickel oxide hydroxide cathode."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93cadmium_battery&oldid=1061809659"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nickel Cadmium Electric Battery"@en ; + "NiCad Battery"@en ; + "A Secondary Cell Electric Battery that has a cadmium anode and nickel oxide hydroxide cathode."@en ; + "https://en.wikipedia.org/w/index.php?title=Nickel%E2%80%93cadmium_battery&oldid=1061809659"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001039 -cco:ont00001039 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000836 ; - rdfs:label "Act of Repayment"@en ; - skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Debtor) to another Agent (the Creditor) to decrease the amount the Debtor owes to the Creditor from an earlier Act of Loaning."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Repayment"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Debtor) to another Agent (the Creditor) to decrease the amount the Debtor owes to the Creditor from an earlier Act of Loaning."@en ; + "https://en.wikipedia.org/w/index.php?title=Loan&oldid=1063513958"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001040 -cco:ont00001040 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000026 ; - rdfs:label "Nadir"@en ; - skos:definition "A One-Dimensional Spatial Region that extends from a given location downward along the local vertical direction pointing in the direction of the apparent Gravitational Force at that location."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Nadir&oldid=1057007248"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nadir"@en ; + "A One-Dimensional Spatial Region that extends from a given location downward along the local vertical direction pointing in the direction of the apparent Gravitational Force at that location."@en ; + "https://en.wikipedia.org/w/index.php?title=Nadir&oldid=1057007248"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001041 -cco:ont00001041 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001010 ; - rdfs:label "Sequence Position Ordinality"@en ; - skos:definition "An Ordinal Measurement Information Content Entity that is about the position of some entity in some ordered sequence."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sequence Position Ordinality"@en ; + "An Ordinal Measurement Information Content Entity that is about the position of some entity in some ordered sequence."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001042 -cco:ont00001042 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Equipment Mount"@en ; - skos:definition "A Material Artifact that is designed to support a Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Equipment Mount"@en ; + "A Material Artifact that is designed to support a Material Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001043 -cco:ont00001043 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000713 ; - rdfs:label "Aircraft"@en ; - skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by air travel."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aircraft&oldid=1063924562"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Aircraft"@en ; + "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by air travel."@en ; + "https://en.wikipedia.org/w/index.php?title=Aircraft&oldid=1063924562"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001044 -cco:ont00001044 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Nuclear Radiation Detection Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact is used to detect the presence of nuclear radiation particles."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Radiation Detection Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact is used to detect the presence of nuclear radiation particles."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001045 -cco:ont00001045 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000319 ; - rdfs:label "Artifact Model"@en ; - skos:definition "A Directive Information Content Entity that prescribes a common set of Functions and Qualities to inhere in a set of artifact instances."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Artifact Model"@en ; + "A Prescriptive Information Content Entity that prescribes a common set of Functions and Qualities to inhere in a set of artifact instances."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001046 -cco:ont00001046 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001002 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002013 - ] ; - rdfs:label "Material Copy of a Notification Message"@en ; - skos:altLabel "Notification Message"@en ; - skos:definition "A Material Copy of a Message that is designed to carry an Information Content Entity that describes a scenario that has been determined to merit attention by the recipient."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Notification Message"@en ; + "Notification Message"@en ; + "A Material Copy of a Message that is designed to carry an Information Content Entity that describes a scenario that has been determined to merit attention by the recipient."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001047 -cco:ont00001047 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000144 ; - rdfs:label "Frequency"@en ; - skos:altLabel "Temporal Frequency"@en ; - skos:definition "A Process Profile that is characterized by the number of repetitive processes during a particular time period."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Frequency&oldid=1062800545"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Frequency"@en ; + "Temporal Frequency"@en ; + "A Process Profile that is characterized by the number of repetitive processes during a particular time period."@en ; + "https://en.wikipedia.org/w/index.php?title=Frequency&oldid=1062800545"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001048 -cco:ont00001048 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000004 ; - rdfs:label "Increase of Dependent Continuant"@en ; - skos:definition "A Change in which some Independent Continuant has an increase in the level of some Dependent Continuant that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Dependent Continuant"@en ; + "A Change in which some Independent Continuant has an increase in the level of some Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001049 -cco:ont00001049 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000288 ; - rdfs:label "Electrical Power Source"@en ; - skos:definition "A Power Source that is designed to generate, control, and transfer power in the form of electrical energy."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Power Source"@en ; + "A Power Source that is designed to generate, control, and transfer power in the form of electrical energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001050 -cco:ont00001050 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000716 ; - rdfs:label "Primary Cell Electric Battery"@en ; - skos:altLabel "Primary Cell Battery"@en ; - skos:definition "A Electric Battery that is designed for one-time use and not to be recharged."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Primary_cell&oldid=1047226932"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Primary Cell Electric Battery"@en ; + "Primary Cell Battery"@en ; + "A Electric Battery that is designed for one-time use and not to be recharged."@en ; + "https://en.wikipedia.org/w/index.php?title=Primary_cell&oldid=1047226932"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001051 -cco:ont00001051 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000445 ; - rdfs:label "Projectile Launcher"@en ; - skos:definition "A Weapon that is designed to inflict damage or harm by means of launching a high-velocity projectile at a target."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Projectile&oldid=1062048285"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Projectile Launcher"@en ; + "A Weapon that is designed to inflict damage or harm by means of launching a high-velocity projectile at a target."@en ; + "https://en.wikipedia.org/w/index.php?title=Projectile&oldid=1062048285"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001052 -cco:ont00001052 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Military Facility"@en ; - skos:definition "A Facility that is designed to support a Military Force."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Facility"@en ; + "A Facility that is designed to support a Military Force."@en ; + "https://en.wikipedia.org/w/index.php?title=Military&oldid=1063431234"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001053 -cco:ont00001053 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000065 ; - rdfs:label "Act of Collision"@en ; - skos:definition "An Act of Location Change involving the movement of one object such that it collides with another object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Collision"@en ; + "An Act of Location Change involving the movement of one object such that it collides with another object."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001054 -cco:ont00001054 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000499 ; - rdfs:label "Helical Antenna"@en ; - skos:definition "A Wire Antenna that consists of a conducting wire wound in the form of a helix that is typically mounted over a ground plane with a feed line connected between the bottom of the helix and the ground plane."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Helical_antenna&oldid=1062343033"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Helical Antenna"@en ; + "A Wire Antenna that consists of a conducting wire wound in the form of a helix that is typically mounted over a ground plane with a feed line connected between the bottom of the helix and the ground plane."@en ; + "https://en.wikipedia.org/w/index.php?title=Helical_antenna&oldid=1062343033"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001055 -cco:ont00001055 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Branched"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having subdivisions or offshoots."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Branched"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having subdivisions or offshoots."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001056 -cco:ont00001056 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000754 ; - rdfs:comment "Visible light overlaps with near infrared and near ultraviolet."@en ; - rdfs:label "Visible Light Frequency"@en ; - skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 400 and 800 terahertz."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Light&oldid=1062630851"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Visible Light Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 400 and 800 terahertz."@en ; + "Visible light overlaps with near infrared and near ultraviolet."@en ; + "https://en.wikipedia.org/w/index.php?title=Light&oldid=1062630851"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001057 -cco:ont00001057 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000588 ; - rdfs:label "Act of Issuing Mass Media Press Release"@en ; - skos:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ; - cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Issuing Mass Media Press Release"@en ; + "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001058 -cco:ont00001058 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001869 ; - owl:someValuesFrom cco:ont00000800 - ] ; - rdfs:label "Hour"@en ; - skos:definition "A Temporal Interval that is equal to sixty consecutive Minutes."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=hour" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Hour"@en ; + "A Temporal Interval that is equal to sixty consecutive Minutes."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=hour" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001059 -cco:ont00001059 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Shape Quality"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of the ratios between dimensions of external features of that bearer."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Shape Quality"@en ; + "A Quality that inheres in a bearer in virtue of the ratios between dimensions of external features of that bearer."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001060 -cco:ont00001060 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Fuel System"@en ; - skos:definition "A Material Artifact that is designed to pump, manage, and deliver some Portion of Fuel to the Propulsion System and Auxiliary Power Unit of some Vehicle."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel System"@en ; + "A Material Artifact that is designed to pump, manage, and deliver some Portion of Fuel to the Propulsion System and Auxiliary Power Unit of some Vehicle."@en ; + "https://en.wikipedia.org/w/index.php?title=Aircraft_fuel_system&oldid=1003132173"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001061 -cco:ont00001061 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000053 ; - rdfs:label "Motorcycle"@en ; - skos:altLabel "Motorbike"@en ; - skos:definition "A Ground Motor Vehicle that is designed to transport a very small number of passengers (usually 1 or 2) while traveling on two or three tired wheels."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Motorcycle&oldid=1063743553"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motorcycle"@en ; + "Motorbike"@en ; + "A Ground Motor Vehicle that is designed to transport a very small number of passengers (usually 1 or 2) while traveling on two or three tired wheels."@en ; + "https://en.wikipedia.org/w/index.php?title=Motorcycle&oldid=1063743553"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001062 -cco:ont00001062 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000300 ; - dcterms:bibliographicCitation "The International Community. 5 Apr. 2023, https://dictionary.cambridge.org/us/dictionary/english/international-community." ; - dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "International Community"@en ; - skos:definition "A maximal Group of Geopolitical Organizations engaged in geopolitics with one another."@en ; - skos:prefLabel "International Community"@en ; - cco:ont00001754 "https://dictionary.cambridge.org/us/dictionary/english/international-community" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + "The International Community. 5 Apr. 2023, https://dictionary.cambridge.org/us/dictionary/english/international-community." ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "International Community"@en ; + "A maximal Group of Geopolitical Organizations engaged in geopolitics with one another."@en ; + "International Community"@en ; + "https://dictionary.cambridge.org/us/dictionary/english/international-community" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001063 -cco:ont00001063 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Straight"@en ; - skos:altLabel "Linear"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer not having curves, bends, or angles along its borders."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Straight"@en ; + "Linear"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer not having curves, bends, or angles along its borders."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001064 -cco:ont00001064 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002014 - ] ; - rdfs:comment "For information on types of barcodes, see: https://www.scandit.com/types-barcodes-choosing-right-barcode/"@en ; - rdfs:label "Material Copy of a Barcode"@en ; - skos:altLabel "Barcode"@en ; - skos:definition "An Information Bearing Artifact that is designed to carry one or more geometric shapes that concretize some Directive Information Content Entity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Barcode&oldid=1059844765"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Barcode"@en ; + "Barcode"@en ; + "An Information Bearing Artifact that is designed to carry one or more geometric shapes that concretize some Prescriptive Information Content Entity."@en ; + "For information on types of barcodes, see: https://www.scandit.com/types-barcodes-choosing-right-barcode/"@en ; + "https://en.wikipedia.org/w/index.php?title=Barcode&oldid=1059844765"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001065 -cco:ont00001065 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001202 ; - rdfs:label "Two Dimensional Extent"@en ; - skos:altLabel "Area"@en ; - skos:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in two dimensions."@en ; - cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Two Dimensional Extent"@en ; + "Area"@en ; + "A Size Quality that inheres in a bearer in virtue of the bearer's extension in two dimensions."@en ; + "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001066 -cco:ont00001066 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000250 ; - rdfs:label "Loss of Disposition"@en ; - skos:definition "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Disposition."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Disposition"@en ; + "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Disposition."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001067 -cco:ont00001067 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Laser"@en ; - skos:definition "A Material Artifact that is designed to emit light coherently through a process of optical amplification based on the stimulated emission of electromagnetic radiation."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Laser&oldid=1059215159"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Laser"@en ; + "A Material Artifact that is designed to emit light coherently through a process of optical amplification based on the stimulated emission of electromagnetic radiation."@en ; + "https://en.wikipedia.org/w/index.php?title=Laser&oldid=1059215159"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001068 -cco:ont00001068 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000395 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000057 ; - owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom obo:BFO_0000019 - ] - ) ; - rdf:type owl:Class - ] - ] ; - rdfs:label "Gain of Quality"@en ; - skos:definition "A Gain of Specifically Dependent Continuant in which an Independent Continuant becomes the bearer of some Quality."@en ; - skos:example "A person becoming pregnant." ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Quality"@en ; + "A Gain of Specifically Dependent Continuant in which an Independent Continuant becomes the bearer of some Quality."@en ; + "A person becoming pregnant." ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001069 -cco:ont00001069 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000958 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001938 ; - owl:someValuesFrom obo:BFO_0000001 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000958 ; - owl:disjointWith cco:ont00001163 ; - rdfs:label "Representational Information Content Entity"@en ; - skos:definition "An Information Content Entity that represents some Entity."@en ; - skos:example "the content of a court transcript represents a courtroom proceeding" , - "the content of a photograph of the Statue of Liberty represents the Statue of Liberty" , - "the content of a video of a sporting event represents that sporting event" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + owl:disjointWith ; + rdfs:label "Representational Information Content Entity"@en ; + "An Information Content Entity that represents some Entity."@en ; + "the content of a court transcript represents a courtroom proceeding" , + "the content of a photograph of the Statue of Liberty represents the Statue of Liberty" , + "the content of a video of a sporting event represents that sporting event" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001070 -cco:ont00001070 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Fluid Control Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes in which some Material Artifact is used to control the direction or flow of some fluid."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fluid Control Artifact Function"@en ; + "An Artifact Function that is realized in processes in which some Material Artifact is used to control the direction or flow of some fluid."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001071 -cco:ont00001071 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000197 ; - owl:someValuesFrom cco:ont00000713 - ] ; - rdfs:label "Payload Capacity"@en ; - skos:definition "An Artifact Function that inheres in a Vehicle that is designed to transport Payload, and which is typically characterized by the maximum Weight, Mass, or Volume of Payload that the Vehicle can transport."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Payload Capacity"@en ; + "An Artifact Function that inheres in a Vehicle that is designed to transport Payload, and which is typically characterized by the maximum Weight, Mass, or Volume of Payload that the Vehicle can transport."@en ; + "https://en.wikipedia.org/w/index.php?title=Payload&oldid=1035953573"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001072 -cco:ont00001072 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000169 ; - rdfs:label "FM Radio Broadcast Frequency"@en ; - skos:altLabel "Frequency Modulation Radio Broadcast Frequency"@en ; - skos:definition "A Very High Frequency that is between 88 and 108 MHz."@en ; - cco:ont00001754 "International Telecommunication Union (ITU) Region 2" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "FM Radio Broadcast Frequency"@en ; + "Frequency Modulation Radio Broadcast Frequency"@en ; + "A Very High Frequency that is between 88 and 108 MHz."@en ; + "International Telecommunication Union (ITU) Region 2" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001073 -cco:ont00001073 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000608 ; - rdfs:label "Financial Value of Property"@en ; - skos:altLabel "Property Value"@en ; - skos:definition "Financial Value that inheres in an material entity that is the object of an Act of Ownership."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Financial Value of Property"@en ; + "Property Value"@en ; + "Financial Value that inheres in an material entity that is the object of an Act of Ownership."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001074 -cco:ont00001074 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000687 ; - rdfs:label "Act of Educational Training Acquisition"@en ; - skos:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of a curriculum from an Agent or communication medium that realizes a capacity derived from its affiliation with some Educational Organization."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Educational Training Acquisition"@en ; + "An Act of Training Acquisition performed by an Agent by acquiring knowledge of a curriculum from an Agent or communication medium that realizes a capacity derived from its affiliation with some Educational Organization."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001075 -cco:ont00001075 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000234 ; - rdfs:label "Act of Training Instruction"@en ; - skos:definition "An Act of Training performed by an Agent by imparting knowledge to another Agent."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Training Instruction"@en ; + "An Act of Training performed by an Agent by imparting knowledge to another Agent."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001076 -cco:ont00001076 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Electric Power Station"@en ; - skos:altLabel "Power Plant"@en ; - skos:definition "A Facility that is designed to generate electrical power."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_station&oldid=1052973815"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electric Power Station"@en ; + "Power Plant"@en ; + "A Facility that is designed to generate electrical power."@en ; + "https://en.wikipedia.org/w/index.php?title=Power_station&oldid=1052973815"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001077 -cco:ont00001077 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000848 ; - rdfs:label "Heavy Machine Gun"@en ; - skos:definition "A Mounted Gun that is designed to fire ammunition greater than .50 caliber or 12.7mm ammunition in quick succession from an ammunition belt, and which typically weighs more than 30lbs."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Heavy_machine_gun&oldid=1047303735"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Heavy Machine Gun"@en ; + "A Mounted Gun that is designed to fire ammunition greater than .50 caliber or 12.7mm ammunition in quick succession from an ammunition belt, and which typically weighs more than 30lbs."@en ; + "https://en.wikipedia.org/w/index.php?title=Heavy_machine_gun&oldid=1047303735"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001078 -cco:ont00001078 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000226 ; - rdfs:label "Airport"@en ; - skos:definition "A Transportation Facility that is designed for launching, receiving, and housing Aircraft."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Airport&oldid=1063243963"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Airport"@en ; + "A Transportation Facility that is designed for launching, receiving, and housing Aircraft."@en ; + "https://en.wikipedia.org/w/index.php?title=Airport&oldid=1063243963"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001079 -cco:ont00001079 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Blond"@en ; - skos:definition "A Color that ranges from nearly white to a light greyish yellow"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Blond"@en ; + "A Color that ranges from nearly white to a light greyish yellow"@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001080 -cco:ont00001080 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001337 ; - rdfs:label "Far Infrared Light Frequency"@en ; - skos:definition "An Infrared Light Frequency that is between 300 gigahertz and 20 terahertz."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Far Infrared Light Frequency"@en ; + "An Infrared Light Frequency that is between 300 gigahertz and 20 terahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_spectrum&oldid=1063851392"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001081 -cco:ont00001081 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000574 ; - rdfs:label "Geographic Feature"@en ; - skos:definition "An Environmental Feature that is a natural (i.e. not human made) topographical feature having a (relatively) stable location in some Geospatial Region which can be designated by location-specific data."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geographic Feature"@en ; + "An Environmental Feature that is a natural (i.e. not human made) topographical feature having a (relatively) stable location in some Geospatial Region which can be designated by location-specific data."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001082 -cco:ont00001082 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001145 ; - rdfs:label "Patch Receiver"@en ; - skos:definition "A Radio Receiver that uses a Patch Antenna to intercept radio signals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Patch Receiver"@en ; + "A Radio Receiver that uses a Patch Antenna to intercept radio signals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001083 -cco:ont00001083 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000056 ; - rdfs:label "Air-Breathing Combustion Engine"@en ; - skos:definition "A Reaction Engine that functions by drawing a continuous stream of air into and through the Engine where it is compressed, mixed with a Portion of Fuel, ignited, and then expelled as exhaust gas."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Air-Breathing Combustion Engine"@en ; + "A Reaction Engine that functions by drawing a continuous stream of air into and through the Engine where it is compressed, mixed with a Portion of Fuel, ignited, and then expelled as exhaust gas."@en ; + "https://en.wikipedia.org/w/index.php?title=Engine&oldid=1063879193"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001084 -cco:ont00001084 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Portion of Processed Material"@en ; - skos:definition "A Material Artifact that is the output of an Act of Artifact Processing."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Processed Material"@en ; + "A Material Artifact that is the output of an Act of Material Artifact Processing."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001085 -cco:ont00001085 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Reflection Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by a Material Artifact participating in a reflection event in which the Material Artifact causes a change in a wavefront at an interface between the reflecting medium and the transmission medium such that the wavefront returns into the transmission medium."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reflection Artifact Function"@en ; + "An Artifact Function that is realized by a Material Artifact participating in a reflection event in which the Material Artifact causes a change in a wavefront at an interface between the reflecting medium and the transmission medium such that the wavefront returns into the transmission medium."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001086 -cco:ont00001086 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001326 ; - rdfs:label "Road Junction"@en ; - skos:definition "A Land Transportation Artifact that is designed to enable Ground Vehicles to exit one Road and enter another."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Junction_(road)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Road Junction"@en ; + "A Land Transportation Artifact that is designed to enable Ground Vehicles to exit one Road and enter another."@en ; + "https://en.wikipedia.org/wiki/Junction_(road)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001087 -cco:ont00001087 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001306 ; - rdfs:label "Orientation Observation Artifact Function"@en ; - skos:altLabel "Attitude Observation Artifact Function"@en ; - skos:definition "An Observation Artifact Function that is realized during events in which a Material Artifact is used to collect information about the Orientation of a specified object or class of objects."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Orientation Observation Artifact Function"@en ; + "Attitude Observation Artifact Function"@en ; + "An Observation Artifact Function that is realized during events in which a Material Artifact is used to collect information about the Orientation of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001088 -cco:ont00001088 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 ; - rdfs:label "Decade"@en ; - skos:definition "A Temporal Interval that is equal to a period of ten consecutive Years."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=decade" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decade"@en ; + "A Temporal Interval that is equal to a period of ten consecutive Years."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=decade" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001089 -cco:ont00001089 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001283 ; - rdfs:label "Petrochemical Refinery"@en ; - skos:definition "A Refinery that is designed for refining crude oil, intermediate petroleum products, or synthetic petroleum into products of value."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Petrochemical&oldid=1060574535"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Petrochemical Refinery"@en ; + "A Refinery that is designed for refining crude oil, intermediate petroleum products, or synthetic petroleum into products of value."@en ; + "https://en.wikipedia.org/w/index.php?title=Petrochemical&oldid=1060574535"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001090 -cco:ont00001090 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Pressure"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of Force applied perpendicular to a surface per unit area."@en ; - skos:example "pascal, atmosphere, pound-force per square inch" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Pressure"@en ; + "A Measurement Unit that is used as a standard for measurement of Force applied perpendicular to a surface per unit area."@en ; + "pascal, atmosphere, pound-force per square inch" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001091 -cco:ont00001091 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001052 ; - rdfs:label "Fort"@en ; - skos:definition "A Military Facility that is designed to support the defense of or solidification of rule over some Geospatial Region and its inhabitants."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fortification&oldid=1060156408"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fort"@en ; + "A Military Facility that is designed to support the defense of or solidification of rule over some Geospatial Region and its inhabitants."@en ; + "https://en.wikipedia.org/w/index.php?title=Fortification&oldid=1060156408"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001092 -cco:ont00001092 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000098 ; - rdfs:label "Electrical Power Storage Artifact Function"@en ; - skos:altLabel "Capacitance"@en ; - skos:definition "An Electrical Artifact Function that is realized during events in which a Material Artifact is used to store electrical power to be released at a later time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electrical Power Storage Artifact Function"@en ; + "Capacitance"@en ; + "An Electrical Artifact Function that is realized during events in which a Material Artifact is used to store electrical power to be released at a later time."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001093 -cco:ont00001093 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000475 ; - rdfs:label "Coin"@en ; - skos:definition "A Portion of Cash that consists of a flat, portable, round pieces of metal designed to bear some specified Financial Value."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Coin"@en ; + "A Portion of Cash that consists of a flat, portable, round pieces of metal designed to bear some specified Financial Value."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001094 -cco:ont00001094 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001251 ; - rdfs:label "Act of Espionage"@en ; - skos:definition "An Act of Intelligence Gathering involving the obtaining of information that is considered secret or confidential without the permission of the holder of the information."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Espionage&oldid=1062702647"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Espionage"@en ; + "An Act of Intelligence Gathering involving the obtaining of information that is considered secret or confidential without the permission of the holder of the information."@en ; + "https://en.wikipedia.org/w/index.php?title=Espionage&oldid=1062702647"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001095 -cco:ont00001095 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000363 ; - rdfs:label "Cellular Telecommunication Network"@en ; - skos:altLabel "Cellular Network"@en , - "Mobile Telecommunication Network"@en ; - skos:definition "A Wireless Telecommunication Network where the last link between the network and the end user is wireless and is distributed over service areas called cells."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cellular_network&oldid=1061429562"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cellular Telecommunication Network"@en ; + "Cellular Network"@en , + "Mobile Telecommunication Network"@en ; + "A Wireless Telecommunication Network where the last link between the network and the end user is wireless and is distributed over service areas called cells."@en ; + "https://en.wikipedia.org/w/index.php?title=Cellular_network&oldid=1061429562"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001096 -cco:ont00001096 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001104 ; - rdfs:label "Submachine Gun"@en ; - skos:definition "An Long Gun that is designed to be have automatic-fire functionality, fire pistol-caliber ammunition that is magazine-fed, and which is usually smaller than other automatic firearms."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Submachine_gun&oldid=1063939013"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Submachine Gun"@en ; + "An Long Gun that is designed to be have automatic-fire functionality, fire pistol-caliber ammunition that is magazine-fed, and which is usually smaller than other automatic firearms."@en ; + "https://en.wikipedia.org/w/index.php?title=Submachine_gun&oldid=1063939013"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001097 -cco:ont00001097 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001278 ; - rdfs:label "Common Stock"@en ; - skos:definition "Stock that entitles its holder to voting on corporate decisions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Common Stock"@en ; + "Stock that entitles its holder to voting on corporate decisions."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001098 -cco:ont00001098 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000055 ; - rdfs:label "Hospital"@en ; - skos:definition "A Healthcare Facility that is designed to provide patient treatment with specialized staff and equipment."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hospital&oldid=1063047817"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hospital"@en ; + "A Healthcare Facility that is designed to provide patient treatment with specialized staff and equipment."@en ; + "https://en.wikipedia.org/w/index.php?title=Hospital&oldid=1063047817"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001099 -cco:ont00001099 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001326 ; - rdfs:label "Bridge"@en ; - skos:definition "A Land Transportation Artifact that is designed to span physical obstacles without closing the way underneath to enable Persons or Ground Vehicles to pass over the obstacles."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bridge&oldid=1061858310" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bridge"@en ; + "A Land Transportation Artifact that is designed to span physical obstacles without closing the way underneath to enable Persons or Ground Vehicles to pass over the obstacles."@en ; + "https://en.wikipedia.org/w/index.php?title=Bridge&oldid=1061858310" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001100 -cco:ont00001100 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Measurement Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact is used to measure one or more features of a specified object or class of objects."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact is used to measure one or more features of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001101 -cco:ont00001101 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001176 ; - rdfs:label "Interval Estimate Information Content Entity"@en ; - skos:altLabel "Interval Estimate"@en , - "Interval Estimate Measurement Information Content Entity"@en ; - skos:definition "An Estimate Information Content Entity that consists of an interval of possible (or probable) values for the measured entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Interval Estimate Information Content Entity"@en ; + "Interval Estimate"@en , + "Interval Estimate Measurement Information Content Entity"@en ; + "An Estimate Information Content Entity that consists of an interval of possible (or probable) values for the measured entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001102 -cco:ont00001102 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Commercial Facility"@en ; - skos:definition "A Facility that is designed for buying and selling goods and services, especially on a large scale."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Commerce&oldid=1063120985"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Commercial Facility"@en ; + "A Facility that is designed for buying and selling goods and services, especially on a large scale."@en ; + "https://en.wikipedia.org/w/index.php?title=Commerce&oldid=1063120985"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001103 -cco:ont00001103 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000686 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001916 ; - owl:someValuesFrom cco:ont00001045 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000686 ; - rdfs:label "Artifact Model Name"@en ; - skos:definition "A Designative Information Content Entity that designates some Material Artifact Model."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Artifact Model Name"@en ; + "A Designative Information Content Entity that designates some Material Artifact Model."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001104 -cco:ont00001104 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000088 ; - rdfs:label "Long Gun"@en ; - skos:definition "A Firearm that is designed to have a longer barrel than a Hand Gun and to be fired while braced against the shoulder."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Long_gun&oldid=1063715506"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Long Gun"@en ; + "A Firearm that is designed to have a longer barrel than a Hand Gun and to be fired while braced against the shoulder."@en ; + "https://en.wikipedia.org/w/index.php?title=Long_gun&oldid=1063715506"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001105 -cco:ont00001105 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000716 ; - rdfs:label "Secondary Cell Electric Battery"@en ; - skos:altLabel "Rechargeable Battery"@en , - "Secondary Cell Battery"@en ; - skos:definition "An Electric Battery that is designed to be recharged."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rechargeable_battery&oldid=1064096406"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Secondary Cell Electric Battery"@en ; + "Rechargeable Battery"@en , + "Secondary Cell Battery"@en ; + "An Electric Battery that is designed to be recharged."@en ; + "https://en.wikipedia.org/w/index.php?title=Rechargeable_battery&oldid=1064096406"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001106 -cco:ont00001106 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000387 ; - rdfs:label "Roll Axis"@en ; - skos:altLabel "Longitudinal Axis"@en ; - skos:definition "An Axis of Rotation that passes through the center of an object's Mass from the front to the back of the object as defined by the direction of the object's motion."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Roll Axis"@en ; + "Longitudinal Axis"@en ; + "An Axis of Rotation that passes through the center of an object's Mass from the front to the back of the object as defined by the direction of the object's motion."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001107 -cco:ont00001107 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001315 ; - rdfs:label "Landfill"@en ; - skos:definition "A Waste Management Facility that is designed for disposing of waste by burial."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Landfill&oldid=1058364420"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Landfill"@en ; + "A Waste Management Facility that is designed for disposing of waste by burial."@en ; + "https://en.wikipedia.org/w/index.php?title=Landfill&oldid=1058364420"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001108 -cco:ont00001108 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000732 ; - rdfs:comment """The corresponding Wavelength range is 1–0.1 m. + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ultra High Frequency"@en ; + "ITU Band Number 9"@en ; + "A Microwave Frequency that is between 300 MHz and 3 GHz."@en ; + """The corresponding Wavelength range is 1–0.1 m. Note that the ITU definition of UHF is broader than the definition given by IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands, which sets the frequency range at 300 MHz to 1 GHz."""@en ; - rdfs:label "Ultra High Frequency"@en ; - skos:altLabel "ITU Band Number 9"@en ; - skos:definition "A Microwave Frequency that is between 300 MHz and 3 GHz."@en ; - cco:ont00001753 "UHF" ; - cco:ont00001754 "International Telecommunication Union (ITU)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + "UHF" ; + "International Telecommunication Union (ITU)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001109 -cco:ont00001109 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000368 ; - rdfs:label "Counter-Clockwise Rotational Motion"@en ; - skos:altLabel "Anti-Clockwise Rotation"@en , - "CCW Rotational Motion"@en , - "Counter-Clockwise Rotation"@en ; - skos:definition "A Rotational Motion in which the direction of rotation is toward the left as seen relative to the designated side of the plane of rotation."@en ; - skos:example "the axial rotation of the Earth as seen from above the North Pole" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Counter-Clockwise Rotational Motion"@en ; + "Anti-Clockwise Rotation"@en , + "CCW Rotational Motion"@en , + "Counter-Clockwise Rotation"@en ; + "A Rotational Motion in which the direction of rotation is toward the left as seen relative to the designated side of the plane of rotation."@en ; + "the axial rotation of the Earth as seen from above the North Pole" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001110 -cco:ont00001110 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 ; - rdfs:label "Evening"@en ; - skos:definition "A Temporal Interval that consists of the temporal regions between when the sun sets (approximately 6:00pm) and when people typically retire to sleep (approximately 9:00pm)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Evening"@en ; + "A Temporal Interval that consists of the temporal regions between when the sun sets (approximately 6:00pm) and when people typically retire to sleep (approximately 9:00pm)."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001111 -cco:ont00001111 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000530 ; - rdfs:label "Low Midrange Frequency"@en ; - skos:definition "A Sonic Frequency that is between 250 and 500 Hz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Low Midrange Frequency"@en ; + "A Sonic Frequency that is between 250 and 500 Hz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001112 -cco:ont00001112 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000712 ; - rdfs:label "Proper Acceleration"@en ; - skos:definition "An Acceleration of an object relative to a free-fall, or inertial, observer who is momentarily at rest relative to the object being measured (hence, gravity does not cause Proper Acceleration)."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Proper_acceleration&oldid=1058169867"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Proper Acceleration"@en ; + "An Acceleration of an object relative to a free-fall, or inertial, observer who is momentarily at rest relative to the object being measured (hence, gravity does not cause Proper Acceleration)."@en ; + "https://en.wikipedia.org/w/index.php?title=Proper_acceleration&oldid=1058169867"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001113 -cco:ont00001113 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Magenta"@en ; - skos:definition "A Color consisting of red and blue hues."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Magenta"@en ; + "A Color consisting of red and blue hues."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001114 -cco:ont00001114 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000472 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00001203 - ] ; - owl:disjointWith cco:ont00001203 ; - rdfs:comment "Instances of this class are not proper Delimiting Domains, but in some cases may have an organization that exercises some control over the region, such as the homeowners' association for a neighborhood."@en ; - rdfs:label "Division of Delimiting Domain"@en ; - skos:definition "A Geospatial Region that is a fiat division of a Delimiting Domain and not a Delimiting Domain."@en ; - skos:example "Flatbush, French Quarter, Western New York, Texas Panhandle, Greater Montreal Area of Quebec, Pacific Northwest, southwest area of Al Anbar Province, Northern Iraq." ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + owl:disjointWith ; + rdfs:label "Division of Delimiting Domain"@en ; + "A Geospatial Region that is a fiat division of a Delimiting Domain and not a Delimiting Domain."@en ; + "Flatbush, French Quarter, Western New York, Texas Panhandle, Greater Montreal Area of Quebec, Pacific Northwest, southwest area of Al Anbar Province, Northern Iraq." ; + "Instances of this class are not proper Delimiting Domains, but in some cases may have an organization that exercises some control over the region, such as the homeowners' association for a neighborhood."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001115 -cco:ont00001115 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001190 ; - rdfs:label "Private Network Telephone Call"@en ; - skos:definition "A Telephone Call transmitted over a network where a closed group of telephones are connected primarily to each other and use a gateway to reach the outside world, usually used inside companies and call centers (a.k.a. private branch exchange (PBX))."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Private Network Telephone Call"@en ; + "A Telephone Call transmitted over a network where a closed group of telephones are connected primarily to each other and use a gateway to reach the outside world, usually used inside companies and call centers (a.k.a. private branch exchange (PBX))."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001116 -cco:ont00001116 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000203 ; - rdfs:label "Reference Time"@en ; - skos:altLabel "Epoch"@en , - "Epoch Time"@en , - "Reference Date"@en ; - skos:definition "A Temporal Instant specified as the origin for which other Temporal Regions are measured or identified."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Epoch_(reference_date)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reference Time"@en ; + "Epoch"@en , + "Epoch Time"@en , + "Reference Date"@en ; + "A Temporal Instant specified as the origin for which other Temporal Regions are measured or identified."@en ; + "https://en.wikipedia.org/wiki/Epoch_(reference_date)" ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001117 -cco:ont00001117 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000252 ; - rdfs:label "Propelling Nozzle"@en ; - skos:altLabel "Jet Nozzle"@en ; - skos:definition "A Nozzle that is used to convert a propulsion Engine into a Jet Engine and functions by using its narrowest part, the throat, to increase Pressure within the Engine by constricting flow, usually until the flow chokes, then expanding the exhaust stream to, or near to, atmospheric pressure, while forming it into a high speed jet to propel the Vehicle."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propelling_nozzle&oldid=1061239812"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propelling Nozzle"@en ; + "Jet Nozzle"@en ; + "A Nozzle that is used to convert a propulsion Engine into a Jet Engine and functions by using its narrowest part, the throat, to increase Pressure within the Engine by constricting flow, usually until the flow chokes, then expanding the exhaust stream to, or near to, atmospheric pressure, while forming it into a high speed jet to propel the Vehicle."@en ; + "https://en.wikipedia.org/w/index.php?title=Propelling_nozzle&oldid=1061239812"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001118 -cco:ont00001118 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000016 ; - rdfs:label "Surface Tension"@en ; - skos:definition "A Disposition that inheres in a liquid and is realized when the cohesive forces of the molecules in the bearer at the surface are greater than the adhesive forces of the molecules in the surrounding air."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Surface_tension&oldid=1062753527"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Surface Tension"@en ; + "A Disposition that inheres in a liquid and is realized when the cohesive forces of the molecules in the bearer at the surface are greater than the adhesive forces of the molecules in the surrounding air."@en ; + "https://en.wikipedia.org/w/index.php?title=Surface_tension&oldid=1062753527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001119 -cco:ont00001119 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001298 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002044 - ] ; - rdfs:label "Material Copy of a Form Document"@en ; - skos:altLabel "Document Form"@en ; - skos:definition "A Material Copy of a Document that has one or more Material Copy of a Document Field as parts in which to write or select prescribed content."@en ; - skos:example "A spreadsheet template" , - "A survey" ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Form_(document)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Form Document"@en ; + "Document Form"@en ; + "A Material Copy of a Document that has one or more Material Copy of a Document Field as parts in which to write or select prescribed content."@en ; + "A spreadsheet template" , + "A survey" ; + "https://en.wikipedia.org/wiki/Form_(document)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001120 -cco:ont00001120 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001075 ; - rdfs:label "Act of Religious Training Instruction"@en ; - skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Religious Organization by imparting knowledge of the tenets and/or practices of a religion to an Agent either directly or indirectly through some communication medium."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Religious Training Instruction"@en ; + "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Religious Organization by imparting knowledge of the tenets and/or practices of a religion to an Agent either directly or indirectly through some communication medium."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001121 -cco:ont00001121 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000294 ; - rdfs:label "Scramjet Engine"@en ; - skos:altLabel "Scramjet"@en , - "Supersonic Combusting Ramjet"@en ; - skos:definition "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air at supersonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Scramjet&oldid=1062429697"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Scramjet Engine"@en ; + "Scramjet"@en , + "Supersonic Combusting Ramjet"@en ; + "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air at supersonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."@en ; + "https://en.wikipedia.org/w/index.php?title=Scramjet&oldid=1062429697"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001122 -cco:ont00001122 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000007 ; - rdfs:label "Radio Interference"@en ; - skos:definition "A Natural Process in which a radio signal is disrupted, whether unintentionally or as the result of an Act of Radio Jamming, Act of Radio Spoofing, or similar Planned Act."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Interference"@en ; + "A Natural Process in which a radio signal is disrupted, whether unintentionally or as the result of an Act of Radio Jamming, Act of Radio Spoofing, or similar Planned Act."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001123 -cco:ont00001123 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001153 ; - rdfs:label "Poison Artifact Function"@en ; - skos:definition "A Damaging Artifact Function that is realized in a process which causes illness in, or the death of, a living thing."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/poison" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Poison Artifact Function"@en ; + "A Damaging Artifact Function that is realized in a process which causes illness in, or the death of, a living thing."@en ; + "http://www.dictionary.com/browse/poison" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001124 -cco:ont00001124 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001150 ; - rdfs:label "Precision-Guided Missile"@en ; - skos:definition "A Portion of Ammunition that is designed to be a self-propelled and precision-guided projectile that delivers some payload (explosive or other) over relatively long distances."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Missile&oldid=1062028589"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Precision-Guided Missile"@en ; + "A Portion of Ammunition that is designed to be a self-propelled and precision-guided projectile that delivers some payload (explosive or other) over relatively long distances."@en ; + "https://en.wikipedia.org/w/index.php?title=Missile&oldid=1062028589"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001125 -cco:ont00001125 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000084 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:someValuesFrom cco:ont00000500 - ] ; - rdfs:label "Set of Eyes"@en ; - skos:definition "A Bodily Component that consists of two or more Eyes that are part of a single Agent."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Set of Eyes"@en ; + "A Bodily Component that consists of two or more Eyes that are part of a single Agent."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001126 -cco:ont00001126 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000784 ; - rdfs:comment "There are a variety of photometric measurements, such as luminous flux/power or luminous intensity, whose units are lumen and candela respectively, which attempt to describe properties associated with the perception of light. These are weighted measurements, typically by the luminosity function, as thus exist on the side of information content. It is a point of further development to add the needed intrinsic properties of radiation that such measurements are about."@en ; - rdfs:label "Luminescent Property"@en ; - skos:definition "An Optical Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light, but which isn't the result of the bearer being heated."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Luminescence&oldid=1050169944"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Luminescent Property"@en ; + "An Optical Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light, but which isn't the result of the bearer being heated."@en ; + "There are a variety of photometric measurements, such as luminous flux/power or luminous intensity, whose units are lumen and candela respectively, which attempt to describe properties associated with the perception of light. These are weighted measurements, typically by the luminosity function, as thus exist on the side of information content. It is a point of further development to add the needed intrinsic properties of radiation that such measurements are about."@en ; + "https://en.wikipedia.org/w/index.php?title=Luminescence&oldid=1050169944"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001127 -cco:ont00001127 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000865 ; - rdfs:label "Loss of Quality"@en ; - skos:definition "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Quality."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Quality"@en ; + "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Quality."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001128 -cco:ont00001128 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000676 ; - rdfs:label "Act of Residing"@en ; - skos:definition "An Act of Inhabitancy in which a Person lives in a dwelling permanently or for an extended period of time."@en ; - cco:ont00001754 "http://www.thefreedictionary.com/reside" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Residing"@en ; + "An Act of Inhabitancy in which a Person lives in a dwelling permanently or for an extended period of time."@en ; + "http://www.thefreedictionary.com/reside" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001129 -cco:ont00001129 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000113 ; - rdfs:label "Pressurization Control Artifact Function"@en ; - skos:definition "A Ventilation Control Artifact Function that is realized by processes in which some Material Artifact is used to control the partial pressure of air in some space."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pressurization Control Artifact Function"@en ; + "A Ventilation Control Artifact Function that is realized by processes in which some Material Artifact is used to control the partial pressure of air in some space."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001130 -cco:ont00001130 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000817 ; - rdfs:label "Geospatial Polygon"@en ; - skos:definition "A Geospatial Line String that has at least three vertices where the connecting lines form a closed loop."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001131 -cco:ont00001131 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000966 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002029 - ] ; - rdfs:label "Material Copy of a EAN-8 Barcode"@en ; - skos:altLabel "EAN-8 Barcode"@en ; - skos:definition "A Material Copy of an EAN Barcode that consists of 8 numerical digits and is used to designate products at the point of sale."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Polygon"@en ; + "A Geospatial Line String that has at least three vertices where the connecting lines form a closed loop."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001132 -cco:ont00001132 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000246 ; - rdfs:label "Stasis of Mission Capability"@en ; - skos:definition "A Stasis of Realizable Entity that holds during a temporal interval when a Continuant's capability (or lack thereof) to perform its intended Functions, tasks, or Objectives remains at a relatively constant level."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Mission Capability"@en ; + "A Stasis of Realizable Entity that holds during a temporal interval when a Continuant's capability (or lack thereof) to perform its intended Functions, tasks, or Objectives remains at a relatively constant level."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001133 -cco:ont00001133 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000007 ; - rdfs:label "Motion"@en ; - skos:definition "A Natural Process in which a Continuant changes its Location or Spatial Orientation over some Temporal Interval."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motion"@en ; + "A Natural Process in which a Continuant changes its Location or Spatial Orientation over some Temporal Interval."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001134 -cco:ont00001134 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Vehicle Frame"@en ; - skos:definition "A Material Artifact that is designed to be the main supporting structure of some Vehicle."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Vehicle_frame&oldid=1054003530"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vehicle Frame"@en ; + "A Material Artifact that is designed to be the main supporting structure of some Vehicle."@en ; + "https://en.wikipedia.org/w/index.php?title=Vehicle_frame&oldid=1054003530"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001135 -cco:ont00001135 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000838 ; - rdfs:label "Portion of Liquid Fuel"@en ; - skos:definition "A Portion of Fuel that is stored in a liquid state."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Liquid Fuel"@en ; + "A Portion of Fuel that is stored in a liquid state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001136 -cco:ont00001136 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000008 ; - rdfs:label "Ultrasonic Frequency"@en ; - skos:definition "A Sound Frequency that is greater than 20 kHz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Ultrasonic Frequency"@en ; + "A Sound Frequency that is greater than 20 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001137 -cco:ont00001137 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000628 ; - rdfs:label "Radiation Reflectivity"@en ; - skos:definition "A Disposition to Interact with Electromagnetic Radiation that inheres in a bearer in virtue of the capacity of that bearer to scatter or reflect electromagnetic radiation of a given frequency."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiation Reflectivity"@en ; + "A Disposition to Interact with Electromagnetic Radiation that inheres in a bearer in virtue of the capacity of that bearer to scatter or reflect electromagnetic radiation of a given frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001138 -cco:ont00001138 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000499 ; - rdfs:label "Beverage Antenna"@en ; - skos:definition "A Wire Antenna that consists of a horizontal wire one-half to two wavelengths long that is suspended above the ground with one end attached to the receiver feedline and the other grounded and which is typically used in the low and medium frequency radio bands."@en ; - cco:ont00001754 "Adapted from: https://en.wikipedia.org/wiki/Beverage_antenna" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Beverage Antenna"@en ; + "A Wire Antenna that consists of a horizontal wire one-half to two wavelengths long that is suspended above the ground with one end attached to the receiver feedline and the other grounded and which is typically used in the low and medium frequency radio bands."@en ; + "Adapted from: https://en.wikipedia.org/wiki/Beverage_antenna" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001139 -cco:ont00001139 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000713 ; - rdfs:label "Spacecraft"@en ; - skos:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by Spaceflight."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Spacecraft&oldid=1062102614"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spacecraft"@en ; + "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by Spaceflight."@en ; + "https://en.wikipedia.org/w/index.php?title=Spacecraft&oldid=1062102614"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001140 -cco:ont00001140 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Flywheel"@en ; - skos:definition "A Material Artifact that is designed to store rotational energy such that it has a significant moment of inertia which enables it to resist changes in rotational speed."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Flywheel&oldid=1061360783"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Flywheel"@en ; + "A Material Artifact that is designed to store rotational energy such that it has a significant moment of inertia which enables it to resist changes in rotational speed."@en ; + "https://en.wikipedia.org/w/index.php?title=Flywheel&oldid=1061360783"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001141 -cco:ont00001141 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; - rdfs:comment "The disposition will typically be a function of an artifact, which is often designed to be part of some Infrastructure system. But not always. In some cases an entity may be repurposed to be an element of some Infrastructure. In those cases it is a capability of that entity that supports the functioning of the system."@en ; - rdfs:label "Infrastructure Role"@en ; - skos:definition "A Role that inheres in the bearer of a Disposition and has been assigned to an Infrastructure System such that the realization of that Disposition is sometimes part of the functioning of the Infrastructure System."@en ; - cco:ont00001754 "https://archive.org/details/economicsprincip00osul/page/n489/mode/2up"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrastructure Role"@en ; + "A Role that inheres in the bearer of a Disposition and has been assigned to an Infrastructure System such that the realization of that Disposition is sometimes part of the functioning of the Infrastructure System."@en ; + "The disposition will typically be a function of an artifact, which is often designed to be part of some Infrastructure system. But not always. In some cases an entity may be repurposed to be an element of some Infrastructure. In those cases it is a capability of that entity that supports the functioning of the system."@en ; + "https://archive.org/details/economicsprincip00osul/page/n489/mode/2up"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001142 -cco:ont00001142 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Violet"@en ; - skos:definition "A Color that is lower than Blue with a wavelength in the visible spectrum typically between 400 and 450 nanometers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Violet"@en ; + "A Color that is lower than Blue with a wavelength in the visible spectrum typically between 400 and 450 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001143 -cco:ont00001143 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000517 ; - rdfs:label "Facsimile Transmission"@en ; - skos:altLabel "Act of Facsimile Transmission"@en , - "Act of Faxing"@en ; - skos:definition "An Act of Communication by Media in which the Information Content Entity that inheres in a Document is transmitted over a Telephone Network."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fax&oldid=1054674158"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Facsimile Transmission"@en ; + "Act of Facsimile Transmission"@en , + "Act of Faxing"@en ; + "An Act of Communication by Media in which the Information Content Entity that inheres in a Document is transmitted over a Telephone Network."@en ; + "https://en.wikipedia.org/w/index.php?title=Fax&oldid=1054674158"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001144 -cco:ont00001144 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Entertainment"@en ; - skos:definition "A Planned Act consisting of any activity which provides a diversion or permits people to amuse themselves."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Entertainment"@en ; + "A Planned Act consisting of any activity which provides a diversion or permits people to amuse themselves."@en ; + "https://en.wikipedia.org/w/index.php?title=Entertainment&oldid=1061851778"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001145 -cco:ont00001145 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000903 ; - rdfs:label "Radio Receiver"@en ; - skos:definition "A Radio Communication Instrument that is an electronic device that is designed to extract information from radio waves intercepted by a Radio Antenna by using electronic filters to separate the desired radio frequency signal from other signals, an electronic amplifier to increase the power of the signal, and demodulation to recover the desired information."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Radio_receiver&oldid=1060111342"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Receiver"@en ; + "A Radio Communication Instrument that is an electronic device that is designed to extract information from radio waves intercepted by a Radio Antenna by using electronic filters to separate the desired radio frequency signal from other signals, an electronic amplifier to increase the power of the signal, and demodulation to recover the desired information."@en ; + "https://en.wikipedia.org/w/index.php?title=Radio_receiver&oldid=1060111342"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001146 -cco:ont00001146 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001328 ; - rdfs:comment "Sidereal Time is the angle measured from an observer's meridian along the celestial equator to the Great Circle that passes through the March equinox and both poles. This angle is usually expressed in Hours, Minutes, and Seconds."@en ; - rdfs:label "Sidereal Time Reference System"@en ; - skos:definition "A Temporal Reference System that is based on Earth's rate of rotation measured relative to one or more fixed Stars (rather than the Sun)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sidereal Time Reference System"@en ; + "A Temporal Reference System that is based on Earth's rate of rotation measured relative to one or more fixed Stars (rather than the Sun)."@en ; + "Sidereal Time is the angle measured from an observer's meridian along the celestial equator to the Great Circle that passes through the March equinox and both poles. This angle is usually expressed in Hours, Minutes, and Seconds."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001147 -cco:ont00001147 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Violence"@en ; - skos:definition "A Planned Act of causing harm to oneself or to another through the use of physical or verbal force."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Violence&oldid=1063681926"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Violence"@en ; + "A Planned Act of causing harm to oneself or to another through the use of physical or verbal force."@en ; + "https://en.wikipedia.org/w/index.php?title=Violence&oldid=1063681926"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001148 -cco:ont00001148 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000727 ; - rdfs:label "Electromagnetic Communication Artifact Function"@en ; - skos:definition "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of electromagnetic radiation."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electromagnetic Communication Artifact Function"@en ; + "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of electromagnetic radiation."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001149 -cco:ont00001149 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001101 ; - rdfs:label "Data Range Interval Estimate Information Content Entity"@en ; - skos:definition "A Ratio Measurement Information Content Entity that is a measurement of a set of values and is equal to the absolute difference between the largest value and the smallest value in the set."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Data Range Interval Estimate Information Content Entity"@en ; + "A Ratio Measurement Information Content Entity that is a measurement of a set of values and is equal to the absolute difference between the largest value and the smallest value in the set."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001150 -cco:ont00001150 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000445 ; - rdfs:label "Portion of Ammunition"@en ; - skos:definition "A Weapon that is designed to inflict harm, damage, or incapacity by being projected toward its target at a significant Velocity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ammunition&oldid=1062875850"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Ammunition"@en ; + "A Weapon that is designed to inflict harm, damage, or incapacity by being projected toward its target at a significant Velocity."@en ; + "https://en.wikipedia.org/w/index.php?title=Ammunition&oldid=1062875850"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001151 -cco:ont00001151 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000893 ; - rdfs:label "Portion of Paper"@en ; - skos:definition "An Information Medium Artifact that is designed to bear some Information Content Entity by means of pressing together moist fibres of cellulose pulp derived from wood, rags, or grasses, and drying them into flexible sheets."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Paper&oldid=1057624743"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Paper"@en ; + "An Information Medium Artifact that is designed to bear some Information Content Entity by means of pressing together moist fibres of cellulose pulp derived from wood, rags, or grasses, and drying them into flexible sheets."@en ; + "https://en.wikipedia.org/w/index.php?title=Paper&oldid=1057624743"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001152 -cco:ont00001152 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001203 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001864 ; - owl:someValuesFrom cco:ont00001335 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001203 ; - rdfs:label "Government Domain"@en ; - skos:definition "A Delimiting Domain that delimits the authority of a Government to exercise its control within the bounded area."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Government Domain"@en ; + "A Delimiting Domain that delimits the authority of a Government to exercise its control within the bounded area."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001153 -cco:ont00001153 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Damaging Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process in which the structural integrity of an entity is impaired."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Damaging Artifact Function"@en ; + "An Artifact Function that is realized in a process in which the structural integrity of an entity is impaired."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001154 -cco:ont00001154 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000038 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001924 ; - owl:someValuesFrom cco:ont00000992 - ] ; - rdfs:comment "This is a defined class."@en ; - rdfs:label "Multi-Second Temporal Interval"@en ; - skos:definition "A one-dimensional temporal region that is measured in Seconds and spans at least one Second."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Multi-Second Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Seconds and spans at least one Second."@en ; + "This is a defined class."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001155 -cco:ont00001155 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000601 ; - rdfs:label "Full Motion Video Imaging Artifact Function"@en ; - skos:definition "An Imaging Artifact Function that inheres in Material Artifacts that are designed to produce video of entities that is of high enough quality to make the represented motion appear continuous to human viewers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Full Motion Video Imaging Artifact Function"@en ; + "An Imaging Artifact Function that inheres in Material Artifacts that are designed to produce video of entities that is of high enough quality to make the represented motion appear continuous to human viewers."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001156 -cco:ont00001156 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002037 - ] ; - rdfs:label "Material Copy of a Information Line"@en ; - skos:altLabel "Information Line"@en ; - skos:definition "An Information Bearing Artifact that consists of a single line or row of some larger Information Bearing Artifact of which it is a part."@en ; - skos:example "a line in a computer file that bears a portion of code for some computer program" , - "a line of data in a database" , - "a line of text in a book" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Information Line"@en ; + "Information Line"@en ; + "An Information Bearing Artifact that consists of a single line or row of some larger Information Bearing Artifact of which it is a part."@en ; + "a line in a computer file that bears a portion of code for some computer program" , + "a line of data in a database" , + "a line of text in a book" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001157 -cco:ont00001157 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000288 ; - rdfs:label "Hydraulic Power Source"@en ; - skos:definition "A Power Source that is designed to generate, control, or transmit power by means of pressurized liquid."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydraulic Power Source"@en ; + "A Power Source that is designed to generate, control, or transmit power by means of pressurized liquid."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001158 -cco:ont00001158 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000366 ; - rdfs:label "Act of Data Transformation"@en ; - skos:definition "An Act of Information Processing in which an algorithm is executed to act upon one or more input Information Content Entities into one or more output Information Content Entities."@en ; - skos:scopeNote "It is not a requirement that the output Information Content Entity(ies) be qualitatively distinct from the input(s) as a result of an Act of Data Transformation, though doing so is typically the goal of performing this Act. Consider, for example, selecting a column in an Excel spreadsheet then executing the \\\"Remove Duplicates\\\" Algorithm on it. The intent is to remove rows in that column containing duplicate content. If no duplicate values are present, the information in the column remains unchanged but an Act of Data Transformation was nonetheless performed."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Data Transformation"@en ; + "An Act of Information Processing in which an algorithm is executed to act upon one or more input Information Content Entities into one or more output Information Content Entities."@en ; + "It is not a requirement that the output Information Content Entity(ies) be qualitatively distinct from the input(s) as a result of an Act of Data Transformation, though doing so is typically the goal of performing this Act. Consider, for example, selecting a column in an Excel spreadsheet then executing the \\\"Remove Duplicates\\\" Algorithm on it. The intent is to remove rows in that column containing duplicate content. If no duplicate values are present, the information in the column remains unchanged but an Act of Data Transformation was nonetheless performed."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001159 -cco:ont00001159 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000537 ; - rdfs:label "Bond"@en ; - skos:definition "A Financial Instrument that is designed to secure an Agent's debt for the holders of that debt."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Bond_(finance)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bond"@en ; + "A Financial Instrument that is designed to secure an Agent's debt for the holders of that debt."@en ; + "https://en.wikipedia.org/wiki/Bond_(finance)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001160 -cco:ont00001160 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000791 ; - rdfs:label "Solvent Artifact Function"@en ; - skos:definition "A Chemical Reaction Artifact Function that is realized in the dissolving of other substances (namely, solutes) without change in the former's chemical structure."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Solvent&oldid=1062572314"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Solvent Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in the dissolving of other substances (namely, solutes) without change in the former's chemical structure."@en ; + "https://en.wikipedia.org/w/index.php?title=Solvent&oldid=1062572314"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001161 -cco:ont00001161 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000719 ; - rdfs:label "Counterfeit Legal Instrument"@en ; - skos:definition "A Counterfeit Instrument that is designed to be a fake replica of some genuine Legal Instrument."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Counterfeit Legal Instrument"@en ; + "A Counterfeit Instrument that is designed to be a fake replica of some genuine Legal Instrument."@en ; + "https://en.wikipedia.org/w/index.php?title=Counterfeit&oldid=1063493600"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001162 -cco:ont00001162 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000402 ; - rdfs:comment "Examples: agreeing, betting, guaranteeing, inviting, offering, promising, swearing, volunteering"@en ; - rdfs:label "Act of Commissive Communication"@en ; - skos:definition "An Act of Communication in which an Agent commits themselves to doing, or refraining from doing, some future action."@en ; - cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Commissive Communication"@en ; + "An Act of Communication in which an Agent commits themselves to doing, or refraining from doing, some future action."@en ; + "Examples: agreeing, betting, guaranteeing, inviting, offering, promising, swearing, volunteering"@en ; + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001163 -cco:ont00001163 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000853 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001966 ; - owl:someValuesFrom obo:BFO_0000001 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000853 ; - rdfs:label "Measurement Information Content Entity"@en ; - skos:altLabel "Measurement ICE"@en ; - skos:definition "A Descriptive Information Content Entity that describes the extent, dimensions, quantity, or quality of an Entity relative to some standard."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Measurement Information Content Entity"@en ; + "Measurement ICE"@en ; + "A Descriptive Information Content Entity that describes the extent, dimensions, quantity, or quality of an Entity relative to some standard."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001164 -cco:ont00001164 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001152 ; - rdfs:label "County"@en ; - skos:definition "A Government Domain that is part of either a First-Order or Second-Order Administrative Region."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=County&oldid=1062817834"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "County"@en ; + "A Government Domain that is part of either a First-Order or Second-Order Administrative Region."@en ; + "https://en.wikipedia.org/w/index.php?title=County&oldid=1062817834"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001165 -cco:ont00001165 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000332 ; - rdfs:label "Terrorist Training Camp"@en ; - skos:definition "A Training Camp designed to teach students methods of terrorism."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Terrorist_training_camp&oldid=1037856600"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Terrorist Training Camp"@en ; + "A Training Camp designed to teach students methods of terrorism."@en ; + "https://en.wikipedia.org/w/index.php?title=Terrorist_training_camp&oldid=1037856600"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001166 -cco:ont00001166 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000038 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001924 ; - owl:someValuesFrom cco:ont00000085 - ] ; - rdfs:comment "This is a defined class."@en ; - rdfs:label "Multi-Minute Temporal Interval"@en ; - skos:definition "A one-dimensional temporal region that is measured in Minutes and spans at least one Minute."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Multi-Minute Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Minutes and spans at least one Minute."@en ; + "This is a defined class."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001167 -cco:ont00001167 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000530 ; - rdfs:label "Midrange Frequency"@en ; - skos:definition "A Sonic Frequency that is between 500 Hz and 2 kHz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Midrange Frequency"@en ; + "A Sonic Frequency that is between 500 Hz and 2 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001168 -cco:ont00001168 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000040 ; - rdfs:label "Reaction Mass"@en ; - skos:altLabel "Working Mass"@en ; - skos:definition "A Material Entity against which a Propulsion System operates in order to produce Acceleration."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Working_mass&oldid=1057126114"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reaction Mass"@en ; + "Working Mass"@en ; + "A Material Entity against which a Propulsion System operates in order to produce Acceleration."@en ; + "https://en.wikipedia.org/w/index.php?title=Working_mass&oldid=1057126114"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001169 -cco:ont00001169 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Communication Relay Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact is used to first receive and then transmit information from one Material Artifact to another for the purpose of communiction."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Communication Relay Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact is used to first receive and then transmit information from one Material Artifact to another for the purpose of communiction."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001170 -cco:ont00001170 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000490 ; - rdfs:label "Hard X-ray Frequency"@en ; - skos:definition "An X-Ray Frequency that is between 3 and 30 exahertz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hard X-ray Frequency"@en ; + "An X-Ray Frequency that is between 3 and 30 exahertz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001171 -cco:ont00001171 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001190 ; - rdfs:label "Wireless Network Telephone Call"@en ; - skos:definition "A Telephone Call transmitted over a network where the telephones are mobile and can move anywhere within the coverage area."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wireless Network Telephone Call"@en ; + "A Telephone Call transmitted over a network where the telephones are mobile and can move anywhere within the coverage area."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001172 -cco:ont00001172 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000593 ; - rdfs:label "Portion of Gelatinous Propellant"@en ; - skos:definition "A Portion of Propellant that is stored in a gelatinous state."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Gelatinous Propellant"@en ; + "A Portion of Propellant that is stored in a gelatinous state."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001173 -cco:ont00001173 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001051 ; - rdfs:label "Rocket Launcher"@en ; - skos:definition "A Projectile Launcher that is designed to launch one or more Unguided Rockets."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket_launcher&oldid=1049900727"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rocket Launcher"@en ; + "A Projectile Launcher that is designed to launch one or more Unguided Rockets."@en ; + "https://en.wikipedia.org/w/index.php?title=Rocket_launcher&oldid=1049900727"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001174 -cco:ont00001174 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Electromagnetic Shielding Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process in which an electromagnetic field is blocked by barriers made of conductive or magnetic materials."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_shielding&oldid=1063432544"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electromagnetic Shielding Artifact Function"@en ; + "An Artifact Function that is realized in a process in which an electromagnetic field is blocked by barriers made of conductive or magnetic materials."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_shielding&oldid=1063432544"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001175 -cco:ont00001175 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000965 ; - rdfs:label "Language"@en ; - skos:definition "A Directive Information Content Entity that prescribes a canonical format for communication."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Language"@en ; + "A Prescriptive Information Content Entity that prescribes a canonical format for communication."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001176 -cco:ont00001176 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001163 ; - rdfs:label "Estimate Information Content Entity"@en ; - skos:altLabel "Estimate"@en , - "Estimate Measurement Information Content Entity"@en , - "Estimated Value"@en ; - skos:definition "A Measurement Information Content Entity that is a measurement of an entity based on partial information about that entity or an appropriately similar entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Estimate Information Content Entity"@en ; + "Estimate"@en , + "Estimate Measurement Information Content Entity"@en , + "Estimated Value"@en ; + "A Measurement Information Content Entity that is a measurement of an entity based on partial information about that entity or an appropriately similar entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001177 -cco:ont00001177 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000119 ; - rdfs:label "Roll Orientation"@en ; - skos:altLabel "Roll"@en ; - skos:definition "A Spatial Orientation of an Object relative to its Roll Axis."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Roll Orientation"@en ; + "Roll"@en ; + "A Spatial Orientation of an Object relative to its Roll Axis."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001178 -cco:ont00001178 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001326 ; - rdfs:label "Railway Crossing"@en ; - skos:altLabel "Level Crossing"@en ; - skos:definition "A Land Transportation Artifact that is designed to enable Persons or Ground Vehicles to cross a Railway when traveling along a road or path that is perpendicular to and at the same elevation as the Railway at the point where they overlap."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Railway Crossing"@en ; + "Level Crossing"@en ; + "A Land Transportation Artifact that is designed to enable Persons or Ground Vehicles to cross a Railway when traveling along a road or path that is perpendicular to and at the same elevation as the Railway at the point where they overlap."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001179 -cco:ont00001179 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000893 ; - rdfs:label "Digital Storage Device"@en ; - skos:definition "An Information Medium Artifact that is designed to bear some Information Content Entity by means of recording that information in digital (binary) format."@en ; - skos:example "A computer's Hard Disk Drive" , - "A portable USB Drive" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Data_storage&oldid=1060116427"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Digital Storage Device"@en ; + "An Information Medium Artifact that is designed to bear some Information Content Entity by means of recording that information in digital (binary) format."@en ; + "A computer's Hard Disk Drive" , + "A portable USB Drive" ; + "https://en.wikipedia.org/w/index.php?title=Data_storage&oldid=1060116427"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001180 -cco:ont00001180 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000300 ; - rdfs:comment "Members of organizations are either Organizations themselves or individual Persons. Members can bear specific Organization Member Roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the Organization by the organization members."@en ; - rdfs:label "Organization"@en ; - skos:definition "A Group of Agents which can be the bearer of roles, has members, and has a set of organization rules."@en ; - cco:ont00001754 "http://purl.obolibrary.org/obo/OBI_0000245" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Organization"@en ; + "A Group of Agents which can be the bearer of roles, has members, and has a set of organization rules."@en ; + "Members of organizations are either Organizations themselves or individual Persons. Members can bear specific Organization Member Roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the Organization by the organization members."@en ; + "http://purl.obolibrary.org/obo/OBI_0000245" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001181 -cco:ont00001181 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000287 ; - rdfs:label "Triple Inertial Navigation System"@en ; - skos:altLabel "Triple INS"@en ; - skos:definition "An Inertial Navigation System that is designed to use three redundant computers to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references, in such a way that eliminates the need for a navigator."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Triple Inertial Navigation System"@en ; + "Triple INS"@en ; + "An Inertial Navigation System that is designed to use three redundant computers to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references, in such a way that eliminates the need for a navigator."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001182 -cco:ont00001182 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000145 ; - rdfs:label "Phase Angle"@en ; - skos:altLabel "Orbital Phase Angle"@en ; - skos:definition "A Relational Quality that is the angle between the light incident onto an observed Object and the light reflected from the Object."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Phase_angle_(astronomy)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Phase Angle"@en ; + "Orbital Phase Angle"@en ; + "A Relational Quality that is the angle between the light incident onto an observed Object and the light reflected from the Object."@en ; + "https://en.wikipedia.org/wiki/Phase_angle_(astronomy)" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001183 -cco:ont00001183 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000300 ; - rdfs:label "Social Network"@en ; - skos:definition "A Group of Agents that are connected in dyadic relations by similar personal or career interests, activities, backgrounds, or real-life connections."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Social Network"@en ; + "A Group of Agents that are connected in dyadic relations by similar personal or career interests, activities, backgrounds, or real-life connections."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001184 -cco:ont00001184 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000368 ; - rdfs:label "Spinning Motion"@en ; - skos:definition "A Rotational Motion of an Object around an Axis of Rotation that passes through the Object's Center of Mass."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spinning Motion"@en ; + "A Rotational Motion of an Object around an Axis of Rotation that passes through the Object's Center of Mass."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001185 -cco:ont00001185 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000713 ; - rdfs:label "Rocket"@en ; - skos:definition "A Vehicle that is designed to travel through air or space and which obtains Thrust from a Rocket Engine."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rocket&oldid=1063307477"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rocket"@en ; + "A Vehicle that is designed to travel through air or space and which obtains Thrust from a Rocket Engine."@en ; + "https://en.wikipedia.org/w/index.php?title=Rocket&oldid=1063307477"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001186 -cco:ont00001186 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000784 ; - rdfs:label "Color Hue"@en ; - skos:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect a dominant wavelength of the visible light spectrum, which is typically divided up into 6 to 8 ranges."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Color Hue"@en ; + "An Optical Property that inheres in a bearer in virtue of its capacity to reflect a dominant wavelength of the visible light spectrum, which is typically divided up into 6 to 8 ranges."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001187 -cco:ont00001187 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Navigation System"@en ; - skos:definition "A Material Artifact that is designed to enable an Agent or Material Artifact to determine the position or direction of some object, usually for the purpose of monitoring or controlling the movement of some Vehicle from one place to another."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Navigation&oldid=1064122463"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Navigation System"@en ; + "A Material Artifact that is designed to enable an Agent or Material Artifact to determine the position or direction of some object, usually for the purpose of monitoring or controlling the movement of some Vehicle from one place to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Navigation&oldid=1064122463"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001188 -cco:ont00001188 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000715 ; - rdfs:label "Denture"@en ; - skos:definition "A Prosthesis that is designed to replace missing teeth."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Dentures&oldid=1056527226"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Denture"@en ; + "A Prosthesis that is designed to replace missing teeth."@en ; + "https://en.wikipedia.org/w/index.php?title=Dentures&oldid=1056527226"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001189 -cco:ont00001189 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Blue"@en ; - skos:definition "A Color that is between Cyan and Violet with a wavelength in the visible spectrum typically between 450 to 490 nanometers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Blue"@en ; + "A Color that is between Cyan and Violet with a wavelength in the visible spectrum typically between 450 to 490 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001190 -cco:ont00001190 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000517 ; - rdfs:label "Telephone Call"@en ; - skos:altLabel "Act of Telephone Calling"@en ; - skos:definition "An Act of Communciation by Media transmitted over a telephone network to two or more Persons."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telephone Call"@en ; + "Act of Telephone Calling"@en ; + "An Act of Communciation by Media transmitted over a telephone network to two or more Persons."@en ; + "https://en.wikipedia.org/w/index.php?title=Telephone_network&oldid=1046265527"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001191 -cco:ont00001191 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001213 ; - rdfs:label "Operational Stasis"@en ; - skos:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when a Material Artifact maintains its designed set of Artifact Functions (or at least maintains its primary functions)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Operational Stasis"@en ; + "A Stasis of Artifact Operationality that holds during a Temporal Interval when a Material Artifact maintains its designed set of Artifact Functions (or at least maintains its primary functions)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001192 -cco:ont00001192 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000092 ; - rdfs:label "Radio Antenna"@en ; - skos:definition "A Bidirectional Transducer that is designed to convert electric power into radio waves, and radio waves into electric power."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Antenna_(radio)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Antenna"@en ; + "A Bidirectional Transducer that is designed to convert electric power into radio waves, and radio waves into electric power."@en ; + "https://en.wikipedia.org/wiki/Antenna_(radio)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001193 -cco:ont00001193 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000017 ; - rdfs:label "Fatigability"@en ; - skos:definition "A Realizable Entity that is realized when its bearer loses strength and tires quickly."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fatigability"@en ; + "A Realizable Entity that is realized when its bearer loses strength and tires quickly."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001194 -cco:ont00001194 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000642 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000057 ; - owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom obo:BFO_0000023 - ] - ) ; - rdf:type owl:Class - ] - ] ; - rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the occurs_on property) that the Entity bears the Role."@en ; - rdfs:label "Gain of Role"@en ; - skos:definition "A Gain of Realizable Entity in which some Independent Continuant becomes bearer of some Role."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] + ] ; + rdfs:label "Gain of Role"@en ; + "A Gain of Realizable Entity in which some Independent Continuant becomes bearer of some Role."@en ; + "This class should be used to demarcate the start of the temporal interval (through the occupies temporal region property) that the Entity bears the Role."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001195 -cco:ont00001195 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000207 ; - rdfs:label "Geospatial Error Region"@en ; - skos:definition "A One-Dimensional Geospatial Boundary that bounds some Geospatial Region according to probability estimations for locating some object within it."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Geospatial Error Region"@en ; + "A One-Dimensional Geospatial Boundary that bounds some Geospatial Region according to probability estimations for locating some object within it."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001196 -cco:ont00001196 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000908 ; - rdfs:comment "Many Acts of Manufacturing and Construction involve one or more Acts of Artifact Assembly, but Acts of Artifact Assembly can also occur in isolation from these activities."@en ; - rdfs:label "Act of Artifact Assembly"@en ; - skos:definition "An Act of Artifact Processing wherein a new Material Artifact are created by fitting component parts together."@en ; - skos:example "putting together a piece of furniture purchased from Ikea" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Artifact Assembly"@en ; + "An Act of Material Artifact Processing wherein a new Material Artifact are created by fitting component parts together."@en ; + "putting together a piece of furniture purchased from Ikea" ; + "Many Acts of Manufacturing and Construction involve one or more Acts of Artifact Assembly, but Acts of Artifact Assembly can also occur in isolation from these activities."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001197 -cco:ont00001197 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000574 ; - rdfs:label "Anthropogenic Feature"@en ; - skos:definition "An Environmental Feature that is related to or is the result of the influence of human beings on the environment."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/anthropogenic" ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Anthropogenic Feature"@en ; + "An Environmental Feature that is related to or is the result of the influence of human beings on the environment."@en ; + "http://www.merriam-webster.com/dictionary/anthropogenic" ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001198 -cco:ont00001198 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000796 ; - rdfs:comment "In American-English, the term 'Railcar' is often used in a broader sense that is interchangeable with 'Railroad Car'."@en ; - rdfs:label "Railcar"@en ; - skos:definition "A Rail Transport Vehicle that consists of a single self-propelled Vehicle that is not a Train, is designed to transport passengers, and which may also be designed to connect to other Railcars to form a Train."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Railcar&oldid=1063519348"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Railcar"@en ; + "A Rail Transport Vehicle that consists of a single self-propelled Vehicle that is not a Train, is designed to transport passengers, and which may also be designed to connect to other Railcars to form a Train."@en ; + "In American-English, the term 'Railcar' is often used in a broader sense that is interchangeable with 'Railroad Car'."@en ; + "https://en.wikipedia.org/w/index.php?title=Railcar&oldid=1063519348"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001199 -cco:ont00001199 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Protruding"@en ; - skos:definition "A Shape Quality inhering in a part of an object in virtue of the part extending out above or beyond the surface of the object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Protruding"@en ; + "A Shape Quality inhering in a part of an object in virtue of the part extending out above or beyond the surface of the object."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001200 -cco:ont00001200 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Structural Support Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by a Material Artifact providing physical support to another object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Structural Support Artifact Function"@en ; + "An Artifact Function that is realized by a Material Artifact providing physical support to another object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001201 -cco:ont00001201 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001326 ; - rdfs:label "Trail"@en ; - skos:definition "A Land Transportation Artifact that is designed to enable transport through rough country, such as a forest or moor."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Trail&oldid=1056047142"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Trail"@en ; + "A Land Transportation Artifact that is designed to enable transport through rough country, such as a forest or moor."@en ; + "https://en.wikipedia.org/w/index.php?title=Trail&oldid=1056047142"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001202 -cco:ont00001202 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000019 ; - rdfs:label "Size Quality"@en ; - skos:definition "A Quality that inheres in a bearer in virtue of the bearer's extension in one or more dimensions."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Size Quality"@en ; + "A Quality that inheres in a bearer in virtue of the bearer's extension in one or more dimensions."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001203 -cco:ont00001203 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000472 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001864 ; - owl:someValuesFrom cco:ont00001180 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000472 ; - dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "Delimiting Domain"@en ; - skos:definition "A Geospatial Region that delimits the authority of an Organization to exercise its control within the bounded area."@en ; - skos:prefLabel "Delimiting Domain"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Delimiting Domain"@en ; + "A Geospatial Region that delimits the authority of an Organization to exercise its control within the bounded area."@en ; + "Delimiting Domain"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001204 -cco:ont00001204 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000202 ; - rdfs:label "Night"@en ; - skos:definition "A Temporal Interval that consists of the temporal regions between when people typically retire to sleep (approximately 9:00pm) and when the sun dawns (approximately 6:00am)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Night"@en ; + "A Temporal Interval that consists of the temporal regions between when people typically retire to sleep (approximately 9:00pm) and when the sun dawns (approximately 6:00am)."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001205 -cco:ont00001205 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000398 ; - rdfs:label "Priority Scale"@en ; - skos:definition "A Reference System that is designed to be used to rank or identify the importance of entities of the specified type."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Priority Scale"@en ; + "A Reference System that is designed to be used to rank or identify the importance of entities of the specified type."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001206 -cco:ont00001206 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000038 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001924 ; - owl:someValuesFrom cco:ont00000832 - ] ; - rdfs:comment "This is a defined class."@en ; - rdfs:label "Multi-Year Temporal Interval"@en ; - skos:definition "A one-dimensional temporal region that is measured in Years and spans at least one Year."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Multi-Year Temporal Interval"@en ; + "A one-dimensional temporal region that is measured in Years and spans at least one Year."@en ; + "This is a defined class."@en ; + "https://www.commoncoreontologies.org/TimeOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001207 -cco:ont00001207 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000136 ; - rdfs:label "Optical Lens"@en ; - skos:altLabel "Lens"@en ; - skos:definition "An Optical Instrument that is designed to focus or disperse a beam of light entering the lens by means of refraction."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Lens_(optics)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Optical Lens"@en ; + "Lens"@en ; + "An Optical Instrument that is designed to focus or disperse a beam of light entering the lens by means of refraction."@en ; + "https://en.wikipedia.org/wiki/Lens_(optics)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001208 -cco:ont00001208 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000150 ; - rdfs:comment "The corresponding Wavelength range is 100–10 m"@en ; - rdfs:label "High Frequency"@en ; - skos:altLabel "ITU Band Number 7"@en ; - skos:definition "A Radio Frequency that is between 3 and 30 MHz."@en ; - cco:ont00001753 "HF" ; - cco:ont00001754 "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001209 -cco:ont00001209 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000326 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002036 - ] ; - rdfs:label "Material Copy of a UPC-E Barcode"@en ; - skos:altLabel "UPC-E Barcode"@en ; - skos:definition "A Material Copy of a UPC Barcode that consists of 6 numerical digits."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "High Frequency"@en ; + "ITU Band Number 7"@en ; + "A Radio Frequency that is between 3 and 30 MHz."@en ; + "The corresponding Wavelength range is 100–10 m"@en ; + "HF" ; + "International Telecommunication Union (ITU) and IEEE 521-2002 - IEEE Standard Letter Designations for Radar-Frequency Bands" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001210 -cco:ont00001210 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Retail Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes of selling goods or merchandise in small or individual lots for direct consumption by persons or organizations."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Retail Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of selling goods or merchandise in small or individual lots for direct consumption by persons or organizations."@en ; + "https://en.wikipedia.org/w/index.php?title=Retail&oldid=1061431295"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001211 -cco:ont00001211 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Lifting Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by processes in which some Material Artifact is used to lift some object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lifting Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Material Artifact is used to lift some object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001212 -cco:ont00001212 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001033 ; - rdfs:label "Female Sex"@en ; - skos:definition "A Biological Sex inhering in an individual that only produces gametes that can be fertilized by male gametes."@en ; - cco:ont00001754 "http://purl.org/obo/owl/PATO#PATO_0000383" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Female Sex"@en ; + "A Biological Sex inhering in an individual that only produces gametes that can be fertilized by male gametes."@en ; + "http://purl.org/obo/owl/PATO#PATO_0000383" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001213 -cco:ont00001213 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000246 ; - rdfs:label "Stasis of Artifact Operationality"@en ; - skos:definition "A Stasis of Realizable Entity that holds during a Temporal Interval when a Material Artifact's designed set of Artifact Functions (or at least its primary functions) or the realizations of those functions remain unchanged."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stasis of Artifact Operationality"@en ; + "A Stasis of Realizable Entity that holds during a Temporal Interval when a Material Artifact's designed set of Artifact Functions (or at least its primary functions) or the realizations of those functions remain unchanged."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001214 -cco:ont00001214 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001048 ; - rdfs:label "Increase of Specifically Dependent Continuant"@en ; - skos:definition "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Specifically Dependent Continuant that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Specifically Dependent Continuant"@en ; + "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Specifically Dependent Continuant that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001215 -cco:ont00001215 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000455 ; - rdfs:label "Funeral"@en ; - skos:altLabel "Act of Funeral Ceremony"@en ; - skos:definition "An Act of Ceremony in which the Life of a Person who has died is celebrated, sanctified, or remembered."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Funeral&oldid=1060270978"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Funeral"@en ; + "Act of Funeral Ceremony"@en ; + "An Act of Ceremony in which the Life of a Person who has died is celebrated, sanctified, or remembered."@en ; + "https://en.wikipedia.org/w/index.php?title=Funeral&oldid=1060270978"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001216 -cco:ont00001216 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000136 ; - rdfs:label "Periscope"@en ; - skos:definition "An Optical Instrument that is designed to enable observation of an object that is located over, around, or through another object, obstacle, or condition that prevents direct line-of-sight observation from the observer's current position."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Periscope&oldid=1030400442"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Periscope"@en ; + "An Optical Instrument that is designed to enable observation of an object that is located over, around, or through another object, obstacle, or condition that prevents direct line-of-sight observation from the observer's current position."@en ; + "https://en.wikipedia.org/w/index.php?title=Periscope&oldid=1030400442"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001217 -cco:ont00001217 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000848 ; - rdfs:label "Medium Machine Gun"@en ; - skos:definition "A Mounted Gun that is designed to fire full-power rifle Cartridges (less than .50 caliber or 12.7mm) in quick succession from an ammunition belt, and which typically weighs 22-30 lbs."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Medium_machine_gun&oldid=1063571269"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Medium Machine Gun"@en ; + "A Mounted Gun that is designed to fire full-power rifle Cartridges (less than .50 caliber or 12.7mm) in quick succession from an ammunition belt, and which typically weighs 22-30 lbs."@en ; + "https://en.wikipedia.org/w/index.php?title=Medium_machine_gun&oldid=1063571269"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001218 -cco:ont00001218 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Signal Processing Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in the process of transferring or processing information contained in signals."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Signal_processing&oldid=1062720685"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Signal Processing Artifact Function"@en ; + "An Artifact Function that is realized in the process of transferring or processing information contained in signals."@en ; + "https://en.wikipedia.org/w/index.php?title=Signal_processing&oldid=1062720685"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001219 -cco:ont00001219 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000144 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000763 - ] ; - rdfs:comment "Delta-v is not equivalent to and should not be confused with Acceleration, which is the rate of change of Velocity."@en ; - rdfs:label "Delta-v"@en ; - skos:altLabel "Change in Velocity"@en , - "DeltaV"@en ; - skos:definition "A Process Profile that is the total change in Velocity of an object's Motion."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Delta-v"@en ; + "Change in Velocity"@en , + "DeltaV"@en ; + "A Process Profile that is the total change in Velocity of an object's Motion."@en ; + "Delta-v is not equivalent to and should not be confused with Acceleration, which is the rate of change of Velocity."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001220 -cco:ont00001220 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001384 ; - rdfs:label "Opaque"@en ; - skos:definition "An Opacity that inheres in a bearer in virtue of that bearer's incapacity to transmit electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs all electromagnetic radiation of that frequency."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Opaque"@en ; + "An Opacity that inheres in a bearer in virtue of that bearer's incapacity to transmit electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs all electromagnetic radiation of that frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001221 -cco:ont00001221 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000210 ; - rdfs:label "Physically Powered Engine"@en ; - skos:altLabel "Physical Engine"@en ; - skos:definition "An Engine that is designed to convert potential or kinetic energy into mechanical energy."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Physically Powered Engine"@en ; + "Physical Engine"@en ; + "An Engine that is designed to convert potential or kinetic energy into mechanical energy."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001222 -cco:ont00001222 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001049 ; - rdfs:label "Solar Panel System"@en ; - skos:altLabel "Photovoltaic System"@en , - "Solar Array"@en ; - skos:definition "An Electrical Power Source that consists in part of one or more Solar Panels, a power inverter, electrical wiring between the components, a mounting and support structure, and may also include a battery and/or a solar tracking system and is the bearer of functions realized in processes of deriving, transferring, and storing electrical energy derived from light energy."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Photovoltaic_system&oldid=1063366598"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Solar Panel System"@en ; + "Photovoltaic System"@en , + "Solar Array"@en ; + "An Electrical Power Source that consists in part of one or more Solar Panels, a power inverter, electrical wiring between the components, a mounting and support structure, and may also include a battery and/or a solar tracking system and is the bearer of functions realized in processes of deriving, transferring, and storing electrical energy derived from light energy."@en ; + "https://en.wikipedia.org/w/index.php?title=Photovoltaic_system&oldid=1063366598"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001223 -cco:ont00001223 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001145 ; - rdfs:label "Dish Receiver"@en ; - skos:definition "A Radio Receiver that uses a Parabolic (or Dish) Antenna to intercept radio signals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Dish Receiver"@en ; + "A Radio Receiver that uses a Parabolic (or Dish) Antenna to intercept radio signals."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001224 -cco:ont00001224 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001324 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001974 ; - owl:someValuesFrom obo:BFO_0000015 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001324 ; - rdfs:label "Process Requirement"@en ; - skos:altLabel "Duty"@en , - "Obligation"@en ; - skos:definition "A Process Regulation that requires some Process."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Process Requirement"@en ; + "Duty"@en , + "Obligation"@en ; + "A Process Regulation that requires some Process."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001225 -cco:ont00001225 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Yellow"@en ; - skos:definition "A Color that is between Orange and Green with a wavelength in the visible spectrum typically between 560 to 590 nanometers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Yellow"@en ; + "A Color that is between Orange and Green with a wavelength in the visible spectrum typically between 560 to 590 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001226 -cco:ont00001226 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000433 ; - rdfs:label "Act of Employment"@en ; - skos:definition "An Act of Association wherein an Organization assigns a set of activities to some Person to be performed in exchange for financial compensation."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Employment by an Organization"@en ; + "An Act of Employment wherein an Organization assigns a set of activities to some Person to be performed in exchange for financial compensation."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001227 -cco:ont00001227 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000752 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001857 ; - owl:someValuesFrom cco:ont00001028 - ] ; - rdfs:label "Longitudinal Wave Profile"@en ; - skos:altLabel "Compression Wave"@en , - "Longitudinal Wave"@en ; - skos:definition "A Wave Process Profile in which the displacement of participating particles is parallel to the direction of the Wave Process' propogation such that the particles alternate between participating in processes of compression and rarefaction as they participate in individual Wave Processes."@en ; - cco:ont00001754 "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Longitudinal Wave Profile"@en ; + "Compression Wave"@en , + "Longitudinal Wave"@en ; + "A Wave Process Profile in which the displacement of participating particles is parallel to the direction of the Wave Process' propogation such that the particles alternate between participating in processes of compression and rarefaction as they participate in individual Wave Processes."@en ; + "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001228 -cco:ont00001228 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001298 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002045 - ] ; - rdfs:label "Material Copy of a Journal Article"@en ; - skos:altLabel "Journal Article"@en ; - skos:definition "A Material Copy of a Document that is designed to carry a specific brief composition on a specific topic as part of a Journal Issue."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Academic_journal&oldid=1059723283"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Journal Article"@en ; + "Journal Article"@en ; + "A Material Copy of a Document that is designed to carry a specific brief composition on a specific topic as part of a Journal Issue."@en ; + "https://en.wikipedia.org/w/index.php?title=Academic_journal&oldid=1059723283"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001229 -cco:ont00001229 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001050 ; - rdfs:label "Alkaline Electric Battery"@en ; - skos:definition "A Primary Cell Electric Battery that has a Zinc anode and Manganese (IV) oxide cathode."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Alkaline_battery&oldid=1055652562"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Alkaline Electric Battery"@en ; + "A Primary Cell Electric Battery that has a Zinc anode and Manganese (IV) oxide cathode."@en ; + "https://en.wikipedia.org/w/index.php?title=Alkaline_battery&oldid=1055652562"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001230 -cco:ont00001230 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000499 ; - rdfs:label "Rhombic Antenna"@en ; - skos:definition "A Wire Antenna that consists of one to three parallel wires suspended above the ground by poles or towers at each vertex in a rhombic shape with each of the four sides being the same length (typically at least one wavelength or longer)."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Rhombic_antenna&oldid=1057114456"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rhombic Antenna"@en ; + "A Wire Antenna that consists of one to three parallel wires suspended above the ground by poles or towers at each vertex in a rhombic shape with each of the four sides being the same length (typically at least one wavelength or longer)."@en ; + "https://en.wikipedia.org/w/index.php?title=Rhombic_antenna&oldid=1057114456"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001231 -cco:ont00001231 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000530 ; - rdfs:label "Brilliance Frequency"@en ; - skos:definition "A Sonic Frequency that is between 6 and 20 kHz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Brilliance Frequency"@en ; + "A Sonic Frequency that is between 6 and 20 kHz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001232 -cco:ont00001232 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:comment "In all cases, to possess something, an agent must have an intention to possess it."@en ; - rdfs:label "Act of Possession"@en ; - skos:definition "A Planned Act in which an agent intentionally exercises control towards a thing."@en ; - cco:ont00001754 "http://en.wikipedia.org/wiki/Possession_(law)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Possession"@en ; + "A Planned Act in which an agent intentionally exercises control towards a thing."@en ; + "In all cases, to possess something, an agent must have an intention to possess it."@en ; + "http://en.wikipedia.org/wiki/Possession_(law)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001233 -cco:ont00001233 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001153 ; - rdfs:label "Crushing Artifact Function"@en ; - skos:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of significant pressure."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/crushing" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Crushing Artifact Function"@en ; + "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of significant pressure."@en ; + "http://www.dictionary.com/browse/crushing" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001234 -cco:ont00001234 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000791 ; - rdfs:label "Neutralization Artifact Function"@en ; - skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which an acid and a base react quantitatively with each other."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Neutralization_(chemistry)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Neutralization Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in a process in which an acid and a base react quantitatively with each other."@en ; + "https://en.wikipedia.org/wiki/Neutralization_(chemistry)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001235 -cco:ont00001235 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000829 ; - rdfs:label "Military Time Zone Identifier"@en ; - skos:definition "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Zulu time, which has no offset from Coordinated Universal Time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Time Zone Identifier"@en ; + "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Zulu time, which has no offset from Coordinated Universal Time."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001236 -cco:ont00001236 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001147 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001803 ; - owl:someValuesFrom cco:ont00000920 - ] ; - rdfs:label "Act of Suicide"@en ; - skos:altLabel "Suicide"@en ; - skos:definition "An Act of Violence in which some Agent intentionally and voluntarily causes their own death."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/suicide" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Act of Suicide"@en ; + "Suicide"@en ; + "An Act of Violence in which some Agent intentionally and voluntarily causes their own death."@en ; + "http://www.merriam-webster.com/dictionary/suicide" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001237 -cco:ont00001237 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000007 ; - rdfs:label "Birth"@en ; - skos:definition "A Natural Process of bringing forth offspring."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Birth&oldid=1063718655"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Birth"@en ; + "A Process of bringing forth offspring."@en ; + "https://en.wikipedia.org/w/index.php?title=Birth&oldid=1063718655"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001238 -cco:ont00001238 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000605 ; - rdfs:label "Initialism"@en ; - skos:definition "An Abbreviated Name that consists of the initial letters of some words (or syllables) in a Designative Name, and in which each letter is pronounced separately."@en ; - skos:example "USA, CPU, BBC" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Initialism"@en ; + "An Abbreviated Name that consists of the initial letters of some words (or syllables) in a Designative Name, and in which each letter is pronounced separately."@en ; + "USA, CPU, BBC" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001239 -cco:ont00001239 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000300 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:someValuesFrom cco:ont00001180 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000178 ; - owl:allValuesFrom cco:ont00001180 - ] ; - rdfs:label "Group of Organizations"@en ; - skos:definition "A Group of Agents that has only Organizations as parts."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:allValuesFrom + ] ; + rdfs:label "Group of Organizations"@en ; + "A Group of Agents that has only Organizations as member parts."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001240 -cco:ont00001240 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001148 ; - rdfs:label "Radio Communication Artifact Function"@en ; - skos:definition "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of radio waves."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Communication Artifact Function"@en ; + "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of radio waves."@en ; + "https://en.wikipedia.org/w/index.php?title=Telecommunications&oldid=1061143810"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001241 -cco:ont00001241 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Sensor Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes wherein its bearer is used to produce an output signal which reliably corresponds to changes in the artifact's environment."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sensor Function"@en ; + "A Function that is realized in processes wherein an attribute of its bearer is a proxy for some aspect of its sensing environment."@en ; + "A proxy in the sense used here is a stand-in used in place of something else, often because the original is unavailable or not directly accessible."@en , + "Subtypes of Sensor Function should be differentiated based on the type of modality they sense. Where a modality is a specific type of energy, phenomenon, or information input that the Sensor is designed to detect, measure, or otherwise respond to."@en ; + "https://en.wikipedia.org/w/index.php?title=Sensor&oldid=1059883466"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001242 -cco:ont00001242 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000736 ; - rdfs:label "Actuator"@en ; - skos:definition "A Transducer that is designed to convert some control signal into mechanical motion."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Actuator&oldid=1064000375"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Actuator"@en ; + "A Transducer that is designed to convert some control signal into mechanical motion."@en ; + "https://en.wikipedia.org/w/index.php?title=Actuator&oldid=1064000375"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001243 -cco:ont00001243 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002038 - ] ; - rdfs:label "Material Copy of a Document Field"@en ; - skos:definition "An Information Bearing Entity that is a part of some document into which carriers of prescribed information can be written or selected."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Document Field"@en ; + "An Information Bearing Entity that is a part of some document into which carriers of prescribed information can be written or selected."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001244 -cco:ont00001244 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000588 ; - rdfs:label "Act of Issuing Mass Media Article"@en ; - skos:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation a non-fictional essay, especially one included with others in a newspaper, magazine, or journal."@en ; - cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001245 -cco:ont00001245 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000241 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002019 - ] ; - rdfs:label "Material Copy of a PDF417 Code"@en ; - skos:altLabel "PDF417 Code"@en ; - skos:definition "A Material Copy of a Two-Dimensional Barcode that is used in applications that require the storage of huge amounts of data."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Issuing Mass Media Article"@en ; + "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation a non-fictional essay, especially one included with others in a newspaper, magazine, or journal."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001246 -cco:ont00001246 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000847 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000566 - ] ; - rdfs:label "Under Active Control"@en ; - skos:definition "An Active Stasis during which a Material Artifact participates in an Act of Artifact Employment."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Under Active Control"@en ; + "An Active Stasis during which a Material Artifact participates in an Act of Artifact Employment."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001247 -cco:ont00001247 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000918 ; - rdfs:label "Telecommunication Endpoint"@en ; - skos:definition "A Telecommunication Network Node that connects a Telecommunication Terminal to a Telecommunication Network."@en ; - skos:scopeNote "A Telecommunication Terminal is an end user device such as a Telephone, fax machine, or Computer."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Communication_endpoint&oldid=1020569501"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Telecommunication Endpoint"@en ; + "A Telecommunication Network Node that connects a Telecommunication Terminal to a Telecommunication Network."@en ; + "A Telecommunication Terminal is an end user device such as a Telephone, fax machine, or Computer."@en ; + "https://en.wikipedia.org/w/index.php?title=Communication_endpoint&oldid=1020569501"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001248 -cco:ont00001248 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000715 ; - rdfs:label "Artificial Eye"@en ; - skos:definition "A Prosthesis that is designed to replace a missing eye."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Artificial_eye&oldid=1046672400"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Artificial Eye"@en ; + "A Prosthesis that is designed to replace a missing eye."@en ; + "https://en.wikipedia.org/w/index.php?title=Artificial_eye&oldid=1046672400"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001249 -cco:ont00001249 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000453 ; - rdfs:label "Cabin Pressurization Control System"@en ; - skos:definition "An Environment Control System that is designed to control the process in which conditioned air is pumped into the Cabin of some Aircraft or Spacecraft in order to create a safe and comfortable environment for passengers and crew flying at high altitudes."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cabin_pressurization&oldid=1062243955"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cabin Pressurization Control System"@en ; + "An Environment Control System that is designed to control the process in which conditioned air is pumped into the Cabin of some Aircraft or Spacecraft in order to create a safe and comfortable environment for passengers and crew flying at high altitudes."@en ; + "https://en.wikipedia.org/w/index.php?title=Cabin_pressurization&oldid=1062243955"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001250 -cco:ont00001250 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000236 ; - rdfs:label "Interior Lighting System"@en ; - skos:definition "A Lighting System that is designed to emit light within the interior of some area."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Interior Lighting System"@en ; + "A Lighting System that is designed to emit light within the interior of some area."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001251 -cco:ont00001251 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Act of Intelligence Gathering"@en ; - skos:definition "A Planned Act of producing and/or gathering information by a government or other Organization to guide decisions and actions by answering questions or obtaining advance warning of events and movements deemed to be important or otherwise relevant."@en ; - cco:ont00001754 "http://en.wikipedia.org/wiki/Intelligence_(information_gathering)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Intelligence Gathering"@en ; + "A Planned Act of producing and/or gathering information by a government or other Organization to guide decisions and actions by answering questions or obtaining advance warning of events and movements deemed to be important or otherwise relevant."@en ; + "http://en.wikipedia.org/wiki/Intelligence_(information_gathering)" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001252 -cco:ont00001252 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000448 ; - rdfs:label "Propulsion Artifact Function"@en ; - skos:definition "A Motion Artifact Function that is realized in a process in which the bearer of the function creates force leading to an entity's movement."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Propulsion Artifact Function"@en ; + "A Motion Artifact Function that is realized in a process in which the bearer of the function creates force leading to an entity's movement."@en ; + "https://en.wikipedia.org/w/index.php?title=Propulsion&oldid=1022034059"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001253 -cco:ont00001253 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Fuel Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes in which a Portion of Fuel is reacted with other substances in order to release chemical or nuclear energy to be used for heat or for work."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fuel&oldid=1063590518"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fuel Artifact Function"@en ; + "An Artifact Function that is realized in processes in which a Portion of Fuel is reacted with other substances in order to release chemical or nuclear energy to be used for heat or for work."@en ; + "https://en.wikipedia.org/w/index.php?title=Fuel&oldid=1063590518"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001254 -cco:ont00001254 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000156 ; - rdfs:label "Revolver"@en ; - skos:definition "A Hand Gun having a number of firing chambers in a revolving cylinder, where each chamber in the cylinder can be loaded with a single Cartridge."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Revolver&oldid=1060461644"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Revolver"@en ; + "A Hand Gun having a number of firing chambers in a revolving cylinder, where each chamber in the cylinder can be loaded with a single Cartridge."@en ; + "https://en.wikipedia.org/w/index.php?title=Revolver&oldid=1060461644"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001255 -cco:ont00001255 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000828 ; - rdfs:label "Insecticide Artifact Function"@en ; - skos:definition "A Pesticide Artifact Function that is realized in a process that causes harm to, or the death of, an insect."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Insecticide&oldid=1063322558"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Insecticide Artifact Function"@en ; + "A Pesticide Artifact Function that is realized in a process that causes harm to, or the death of, an insect."@en ; + "https://en.wikipedia.org/w/index.php?title=Insecticide&oldid=1063322558"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001256 -cco:ont00001256 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001163 ; - rdfs:comment "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance ('Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."@en ; - rdfs:label "Reliability Measurement Information Content Entity"@en ; - skos:altLabel "Accuracy of Process"@en , - "Reliability Measurement"@en ; - skos:definition "A Measurement Information Content Entity that is a measurement of the extent to which an entity can consistently produce an outcome."@en ; - skos:scopeNote "Reliability concerns both a measure of past performance and the expectation that future performance will conform to the range of past performances."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Reliability_(statistics)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Reliability Measurement Information Content Entity"@en ; + "Accuracy of Process"@en , + "Reliability Measurement"@en ; + "A Measurement Information Content Entity that is a measurement of the extent to which an entity can consistently produce an outcome."@en ; + "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance ('Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."@en , + "Reliability concerns both a measure of past performance and the expectation that future performance will conform to the range of past performances."@en ; + "https://en.wikipedia.org/wiki/Reliability_(statistics)" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001257 -cco:ont00001257 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000881 ; - rdfs:label "Nuclear Storage Depot"@en ; - skos:definition "A Storage Facility that is designed to store nuclear material."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nuclear Storage Depot"@en ; + "A Storage Facility that is designed to store nuclear material."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001258 -cco:ont00001258 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000226 ; - rdfs:label "Port"@en ; - skos:definition "A Transportation Facility that is designed to contain harbors for docking Watercraft and for transfering people or cargo to and from land."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Port"@en ; + "A Transportation Facility that is designed to contain harbors for docking Watercraft and for transfering people or cargo to and from land."@en ; + "https://en.wikipedia.org/w/index.php?title=Port&oldid=1064091505"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001259 -cco:ont00001259 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - rdfs:label "Portion of Atmosphere"@en ; - skos:definition "A fiat object part of the layer of gas or layers of gases that envelop a natural satellite."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Atmosphere&oldid=1135486662"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001260 -cco:ont00001260 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000258 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002032 - ] ; - rdfs:label "Material Copy of a Code 39 Barcode"@en ; - skos:altLabel "Code 39 Barcode"@en ; - skos:definition "A Material Copy of a One-Dimensional Barcode that consists of 39 characters that are numbers 0-9, capital letters A-Z, or the symbols -.$/+% and space and is used primarily in automotive and defense industries."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Atmosphere"@en ; + "A fiat object part of the layer of gas or layers of gases that envelop a natural satellite."@en ; + "https://en.wikipedia.org/w/index.php?title=Atmosphere&oldid=1135486662"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001261 -cco:ont00001261 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000379 ; - rdfs:label "Act of Identifying"@en ; - skos:definition "An Act of Representative Communication performed by asserting who or what a particular person or thing is."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/identify" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Identifying"@en ; + "An Act of Representative Communication performed by asserting who or what a particular person or thing is."@en ; + "http://www.dictionary.com/browse/identify" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001262 -cco:ont00001262 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000562 ; - rdfs:label "Person"@en ; - skos:altLabel "Human"@en ; - skos:definition "An Animal that is a member of the species Homo sapiens."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Human&oldid=1063145185"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Person"@en ; + "Human"@en ; + "An Animal that is a member of the species Homo sapiens."@en ; + "https://en.wikipedia.org/w/index.php?title=Human&oldid=1063145185"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001263 -cco:ont00001263 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000588 ; - rdfs:label "Act of Issuing Mass Media Documentary"@en ; - skos:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation information that provides a factual record or report."@en ; - cco:ont00001754 "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001264 -cco:ont00001264 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000258 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002033 - ] ; - rdfs:label "Material Copy of a Code 128 Barcode"@en ; - skos:altLabel "Code 128 Barcode"@en ; - skos:definition "A Material Copy of a One-Dimensional Barcode that consists of up to 128 ASCII characters and is used primarily in supply chains."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Issuing Mass Media Documentary"@en ; + "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation information that provides a factual record or report."@en ; + "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001265 -cco:ont00001265 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001036 ; - rdfs:label "Public Address System"@en ; - skos:altLabel "PA System"@en ; - skos:definition "A Communication System that is designed to allow a Person to speak to a large audience."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Public_address_system&oldid=1059177344"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Public Address System"@en ; + "PA System"@en ; + "A Communication System that is designed to allow a Person to speak to a large audience."@en ; + "https://en.wikipedia.org/w/index.php?title=Public_address_system&oldid=1059177344"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001266 -cco:ont00001266 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001075 ; - rdfs:label "Act of Vocational Training Instruction"@en ; - skos:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider by imparting skills required for a specific occupation in industry, agriculture or trade to an Agent either directly or indirectly through some communication medium."@en ; - cco:ont00001754 "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Vocational Training Instruction"@en ; + "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider by imparting skills required for a specific occupation in industry, agriculture or trade to an Agent either directly or indirectly through some communication medium."@en ; + "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001267 -cco:ont00001267 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000971 ; - rdfs:label "Act of Propaganda"@en ; - skos:definition "An Act of Deceptive Communication Propaganda intended to influence the attitude of a mass audience toward some cause or position by presenting facts selectively (thus possibly lying by omission) or by using loaded messages to produce an emotional rather than rational response to the information presented."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Propaganda&oldid=1062472484"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001268 -cco:ont00001268 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000966 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002030 - ] ; - rdfs:label "Material Copy of a ISBN Barcode"@en ; - skos:altLabel "ISBN Barcode"@en ; - skos:definition "A Material Copy of an EAN Barcode that is used to designate books."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Propaganda"@en ; + "An Act of Deceptive Communication Propaganda intended to influence the attitude of a mass audience toward some cause or position by presenting facts selectively (thus possibly lying by omission) or by using loaded messages to produce an emotional rather than rational response to the information presented."@en ; + "https://en.wikipedia.org/w/index.php?title=Propaganda&oldid=1062472484"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001269 -cco:ont00001269 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000133 ; - rdfs:label "Act of Warning"@en ; - skos:definition "An Act of Directive Communication performed by indicating a possible or impending danger, problem, or other unpleasant situation."@en ; - cco:ont00001754 "http://www.merriam-webster.com/dictionary/warning" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Warning"@en ; + "An Act of Directive Communication performed by indicating a possible or impending danger, problem, or other unpleasant situation."@en ; + "http://www.merriam-webster.com/dictionary/warning" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001270 -cco:ont00001270 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000268 ; - rdfs:label "Howitzer"@en ; - skos:definition "A Cannon that is designed to have a relatively short barrel and to use relatively small propellant charges to propel projectiles in relatively high trajectories with a steep angle of descent."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Howitzer&oldid=1059576383"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Howitzer"@en ; + "A Cannon that is designed to have a relatively short barrel and to use relatively small propellant charges to propel projectiles in relatively high trajectories with a steep angle of descent."@en ; + "https://en.wikipedia.org/w/index.php?title=Howitzer&oldid=1059576383"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001271 -cco:ont00001271 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001169 ; - rdfs:label "Wired Communication Relay Artifact Function"@en ; - skos:definition "A Communication Relay Artifact Function that is realized during events in which a Material Artifact is used to first receive and then transmit information by means of wires from one Material Artifact to another for the purpose of communiction."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wired Communication Relay Artifact Function"@en ; + "A Communication Relay Artifact Function that is realized during events in which a Material Artifact is used to first receive and then transmit information by means of wires from one Material Artifact to another for the purpose of communiction."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001272 -cco:ont00001272 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000191 ; - rdfs:label "Act of Murder"@en ; - skos:definition "An Act of Homicide with malice aforethought."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00001273 -cco:ont00001273 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001241 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000197 ; - owl:someValuesFrom cco:ont00000569 - ] ; - rdfs:label "Sensor Modality Function"@en ; - skos:definition "A Sensor Artifact Function that inheres in some Sensor in virtue of the type of energy the Sensor is capable of converting into an output signal."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Murder"@en ; + "An Act of Homicide with malice aforethought."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001274 -cco:ont00001274 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000008 ; - rdfs:label "Infrasonic Frequency"@en ; - skos:definition "A Sound Frequency that is below 20 Hz."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrasonic Frequency"@en ; + "A Sound Frequency that is below 20 Hz."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001275 -cco:ont00001275 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001353 ; - rdfs:label "Nominal Speed Artifact Function"@en ; - skos:definition "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains a speed that does not exceed some specified tolerance of that Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Nominal Speed Artifact Function"@en ; + "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains a speed that does not exceed some specified tolerance of that Material Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001276 -cco:ont00001276 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000426 ; - rdfs:label "Carrier Air Wing"@en ; - skos:definition "A Military Force that is trained and equipped to conduct air operations while embarked on an aircraft carrier."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Carrier Air Wing"@en ; + "A Military Force that is trained and equipped to conduct air operations while embarked on an aircraft carrier."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001277 -cco:ont00001277 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Red"@en ; - skos:definition "A Color that is above Orange with a wavelength in the visible spectrum typically between 635 to 700 nanometers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Red"@en ; + "A Color that is above Orange with a wavelength in the visible spectrum typically between 635 to 700 nanometers."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001278 -cco:ont00001278 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000537 ; - rdfs:label "Stock"@en ; - skos:definition "A Financial Instrument that entitles holders to an ownership interest (equity) in the specified Incorporated Organization."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Stock&oldid=1064040249"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Stock"@en ; + "A Financial Instrument that entitles holders to an ownership interest (equity) in the specified Incorporated Organization."@en ; + "https://en.wikipedia.org/w/index.php?title=Stock&oldid=1064040249"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001279 -cco:ont00001279 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001133 ; - rdfs:label "Vibration Motion"@en ; - skos:altLabel "Mechanical Oscillation"@en , - "Oscillation Motion"@en , - "Vibration"@en ; - skos:definition "A Motion wherein some participant repetitively deviates from a central location to two surrounding locations."@en ; - cco:ont00001754 "https://physicsabout.com/motion/"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vibration Motion"@en ; + "Mechanical Oscillation"@en , + "Oscillation Motion"@en , + "Vibration"@en ; + "A Motion wherein some participant repetitively deviates from a central location to two surrounding locations."@en ; + "https://physicsabout.com/motion/"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001280 -cco:ont00001280 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Flat"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border without a significant deviation."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Flat"@en ; + "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border without a significant deviation."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001281 -cco:ont00001281 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000791 ; - rdfs:label "Emulsifier Artifact Function"@en ; - skos:definition "A Chemical Reaction Artifact Function that is realized in a process in which two or more liquids that are normally immiscible are mixed."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Emulsion&oldid=1056901580"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Emulsifier Artifact Function"@en ; + "A Chemical Reaction Artifact Function that is realized in a process in which two or more liquids that are normally immiscible are mixed."@en ; + "https://en.wikipedia.org/w/index.php?title=Emulsion&oldid=1056901580"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001282 -cco:ont00001282 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000598 ; - rdfs:label "Hydraulic Valve"@en ; - skos:definition "A Valve that is designed to regulate, direct, or control the flow of a liquid by opening, closing, or partially obstructing various passageways."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hydraulic Valve"@en ; + "A Valve that is designed to regulate, direct, or control the flow of a liquid by opening, closing, or partially obstructing various passageways."@en ; + "https://en.wikipedia.org/w/index.php?title=Power_transfer_unit&oldid=1002682083"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001283 -cco:ont00001283 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000782 ; - rdfs:label "Refinery"@en ; - skos:definition "A Factory that is designed for refining raw materials into products of value."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Refinery&oldid=1027092124"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Refinery"@en ; + "A Factory that is designed for refining raw materials into products of value."@en ; + "https://en.wikipedia.org/w/index.php?title=Refinery&oldid=1027092124"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001284 -cco:ont00001284 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000914 ; - rdfs:label "Crew"@en ; - skos:definition "A Group of Persons that bear Roles realized by the operation of the specified Vehicle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Crew"@en ; + "A Group of Persons that bear Roles realized by the operation of the specified Vehicle."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001285 -cco:ont00001285 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000368 ; - rdfs:label "Revolving Motion"@en ; - skos:definition "A Rotational Motion of an Object around an Axis of Rotation that is located externally to the Site occupied by the Object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Revolving Motion"@en ; + "A Rotational Motion of an Object around an Axis of Rotation that is located externally to the Site occupied by the Object."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001286 -cco:ont00001286 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000752 ; - rdfs:label "Waveform"@en ; - skos:definition "A Wave Process Profile that is the shape of the Wave Cycles of the Wave Process when depicted in a visual graph."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Waveform"@en ; + "A Wave Process Profile that is the shape of the Wave Cycles of the Wave Process when depicted in a visual graph."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001287 -cco:ont00001287 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Maintenance Facility"@en ; - skos:definition "A Facility that is designed to be used to perform actions to maintain or improve the state of some property or equipment."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/maintain" ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Maintenance Facility"@en ; + "A Facility that is designed to be used to perform actions to maintain or improve the state of some property or equipment."@en ; + "http://www.dictionary.com/browse/maintain" ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001288 -cco:ont00001288 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001150 ; - rdfs:label "Round Shot"@en ; - skos:definition "A Portion of Ammunition that is designed to be a solid projectile without explosive charge and to be fired from a cannon."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Round_shot&oldid=1062790260"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Round Shot"@en ; + "A Portion of Ammunition that is designed to be a solid projectile without explosive charge and to be fired from a cannon."@en ; + "https://en.wikipedia.org/w/index.php?title=Round_shot&oldid=1062790260"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001289 -cco:ont00001289 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000135 ; - rdfs:label "Damaged Stasis"@en ; - skos:altLabel "Compromised"@en , - "Damaged"@en , - "Injured"@en ; - skos:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to a previous action or event such that the Independent Continuant is now of lesser value, usefulness, or functionality."@en ; - skos:scopeNote "This class can be used to instantiate instances that might otherwise be treated by defined classes such as Damaged Vehicle or Wounded Person. The Independent Continuant and Quality or Realizable Entity are participants of the stasis which can in turn be related to the temporal interval via the occurs on property. "@en ; - cco:ont00001754 "http://www.thefreedictionary.com/damaged" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Damaged Stasis"@en ; + "Compromised"@en , + "Damaged"@en , + "Injured"@en ; + "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to a previous action or event such that the Independent Continuant is now of lesser value, usefulness, or functionality."@en ; + "This class can be used to instantiate instances that might otherwise be treated by defined classes such as Damaged Vehicle or Wounded Person. The Independent Continuant and Quality or Realizable Entity are participants of the stasis which can in turn be related to the temporal interval via the occupies temporal region property. "@en ; + "http://www.thefreedictionary.com/damaged" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001290 -cco:ont00001290 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Length"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of one-dimensional regions or Geospatial Regions."@en ; - skos:example "foot, meter, kilometer, mile" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Length"@en ; + "A Measurement Unit that is used as a standard for measurement of one-dimensional regions or Geospatial Regions."@en ; + "foot, meter, kilometer, mile" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001291 -cco:ont00001291 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000628 ; - rdfs:label "Radiation Absorptivity"@en ; - skos:definition "A Disposition to Interact with Electromagnetic Radiation that inheres in a bearer in virtue of the capacity of that bearer to absorb electromagnetic radiation of a given frequency."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radiation Absorptivity"@en ; + "A Disposition to Interact with Electromagnetic Radiation that inheres in a bearer in virtue of the capacity of that bearer to absorb electromagnetic radiation of a given frequency."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001292 -cco:ont00001292 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000053 ; - rdfs:label "Bus"@en ; - skos:definition "A Ground Motor Vehicle that is designed to transport a large number of people and to travel on six or more tired wheels."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bus&oldid=1055341487"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bus"@en ; + "A Ground Motor Vehicle that is designed to transport a large number of people and to travel on six or more tired wheels."@en ; + "https://en.wikipedia.org/w/index.php?title=Bus&oldid=1055341487"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001293 -cco:ont00001293 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001367 ; - rdfs:label "Perimeter"@en ; - skos:definition "A One Dimensional Extent that inheres in a bearer in virtue of the extent of a boundary which encloses the bearer."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Perimeter"@en ; + "A One Dimensional Extent that inheres in a bearer in virtue of the extent of a boundary which encloses the bearer."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001294 -cco:ont00001294 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001202 ; - rdfs:label "Three Dimensional Extent"@en ; - skos:altLabel "Volume"@en ; - skos:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in three dimensions."@en ; - cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Three Dimensional Extent"@en ; + "Volume"@en ; + "A Size Quality that inheres in a bearer in virtue of the bearer's extension in three dimensions."@en ; + "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001295 -cco:ont00001295 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Financial Facility"@en ; - skos:definition "A Facility that is designed to support the management of money."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Financial Facility"@en ; + "A Facility that is designed to support the management of money."@en ; + "https://en.wikipedia.org/w/index.php?title=Finance&oldid=1062402926"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001296 -cco:ont00001296 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000119 ; - rdfs:label "Pitch Orientation"@en ; - skos:altLabel "Pitch"@en ; - skos:definition "A Spatial Orientation of an Object relative to its Pitch Axis."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Pitch Orientation"@en ; + "Pitch"@en ; + "A Spatial Orientation of an Object relative to its Pitch Axis."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001297 -cco:ont00001297 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001052 ; - rdfs:label "Military Headquarters Facility"@en ; - skos:definition "A Military Facility that is designed for military administration and coordination."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Headquarters&oldid=1046429636"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Military Headquarters Facility"@en ; + "A Military Facility that is designed for military administration and coordination."@en ; + "https://en.wikipedia.org/w/index.php?title=Headquarters&oldid=1046429636"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001298 -cco:ont00001298 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000798 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000101 ; - owl:someValuesFrom cco:ont00002039 - ] ; - rdfs:label "Material Copy of a Document"@en ; - skos:altLabel "Document"@en ; - skos:definition "An Information Bearing Artifact that is designed to carry some specific Information Content Entity in a series of paragraphs of text or diagrams in the form of physical pieces of paper or an electronic word processor file."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Document&oldid=1057829688"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Material Copy of a Document"@en ; + "Document"@en ; + "An Information Bearing Artifact that is designed to carry some specific Information Content Entity in a series of paragraphs of text or diagrams in the form of physical pieces of paper or an electronic word processor file."@en ; + "https://en.wikipedia.org/w/index.php?title=Document&oldid=1057829688"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001299 -cco:ont00001299 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000344 ; - rdfs:label "Wetting Agent Artifact Function"@en ; - skos:definition "A Surfactant Artifact Function that is realized in a process that reduces the water repellent tendency of a substance thereby allowing it to become wet."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Wetting&oldid=1062806793"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Wetting Agent Artifact Function"@en ; + "A Surfactant Artifact Function that is realized in a process that reduces the water repellent tendency of a substance thereby allowing it to become wet."@en ; + "https://en.wikipedia.org/w/index.php?title=Wetting&oldid=1062806793"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001300 -cco:ont00001300 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001192 ; - rdfs:label "Patch Antenna"@en ; - skos:altLabel "Microstrip Patch Antenna"@en , - "Rectangular Microstrip Antenna"@en ; - skos:definition "A Radio Antenna that consists of a flat rectangular sheet (or patch) of metal mounted over a larger sheet of metal called a ground plane which is typically contained inside a plastic radome for protection and is small enough that it can be mounted on a flat surface."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Patch_antenna&oldid=1016658507"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Patch Antenna"@en ; + "Microstrip Patch Antenna"@en , + "Rectangular Microstrip Antenna"@en ; + "A Radio Antenna that consists of a flat rectangular sheet (or patch) of metal mounted over a larger sheet of metal called a ground plane which is typically contained inside a plastic radome for protection and is small enough that it can be mounted on a flat surface."@en ; + "https://en.wikipedia.org/w/index.php?title=Patch_antenna&oldid=1016658507"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001301 -cco:ont00001301 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Service Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process of providing intangible goods to consumers."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Goods_and_services&oldid=1063137197"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Service Artifact Function"@en ; + "An Artifact Function that is realized in a process of providing intangible goods to consumers."@en ; + "https://en.wikipedia.org/w/index.php?title=Goods_and_services&oldid=1063137197"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001302 -cco:ont00001302 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001180 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00000173 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001180 ; - rdfs:label "Civil Organization"@en ; - skos:definition "An Organization that is not commercial or military and is the bearer of a Civilian Role."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Civil Organization"@en ; + "An Organization that is not commercial or military and is the bearer of a Civilian Role."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001303 -cco:ont00001303 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001306 ; - rdfs:label "Position Observation Artifact Function"@en ; - skos:definition "An Observation Artifact Function that is realized during events in which a Material Artifact is used to collect information about the position of a specified object or class of objects."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Position Observation Artifact Function"@en ; + "An Observation Artifact Function that is realized during events in which a Material Artifact is used to collect information about the position of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001304 -cco:ont00001304 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000575 ; - rdfs:label "Dimension Specification"@en ; - skos:definition "An Quality Specification that prescribes some Size Quality."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Dimension Specification"@en ; + "An Quality Specification that prescribes some Size Quality."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001305 -cco:ont00001305 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001066 ; - rdfs:label "Loss of Function"@en ; - skos:definition "A Loss of Disposition in which some Independent Continuant ceases to be the bearer of some Function."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Loss of Function"@en ; + "A Loss of Disposition in which some Independent Continuant ceases to be the bearer of some Function."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001306 -cco:ont00001306 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Observation Artifact Function"@en ; - skos:definition "An Artifact Function that is realized during events in which a Material Artifact is used to collect information about a specified object or class of objects."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Observation Artifact Function"@en ; + "An Artifact Function that is realized during events in which a Material Artifact is used to collect information about a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001307 -cco:ont00001307 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000061 ; - rdfs:label "Measurement Unit of Mass Flow Rate"@en ; - skos:definition "A Measurement Unit of Flow that is used as a standard for measurement of the rate at which the Mass of a substance passes per unit time."@en ; - skos:example "kilogram per second, slug per second, pound per second" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Mass Flow Rate"@en ; + "A Measurement Unit of Flow that is used as a standard for measurement of the rate at which the Mass of a substance passes per unit time."@en ; + "kilogram per second, slug per second, pound per second" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001308 -cco:ont00001308 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001315 ; - rdfs:label "Sewage Treatment Facility"@en ; - skos:definition "A Waste Management Facility that is designed for removing contaminants from wastewater, especially sewage."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Sewage_treatment&oldid=1062966352"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sewage Treatment Facility"@en ; + "A Waste Management Facility that is designed for removing contaminants from wastewater, especially sewage."@en ; + "https://en.wikipedia.org/w/index.php?title=Sewage_treatment&oldid=1062966352"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001309 -cco:ont00001309 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000077 ; - rdfs:label "Lot Number"@en ; - skos:definition "A Code Identifier that designates a particular quantity or lot of material from a single manufacturer."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lot_number&oldid=1061846325"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lot Number"@en ; + "A Code Identifier that designates a particular quantity or lot of material from a single manufacturer."@en ; + "https://en.wikipedia.org/w/index.php?title=Lot_number&oldid=1061846325"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001310 -cco:ont00001310 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Covering Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process in which an entity is covered."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/covering" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Covering Artifact Function"@en ; + "An Artifact Function that is realized in a process in which an entity is covered."@en ; + "http://www.dictionary.com/browse/covering" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001311 -cco:ont00001311 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000782 ; - rdfs:label "Aircraft Manufacturing Facility"@en ; - skos:definition "A Factory that is designed to manufacture Aircraft."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Aerospace_manufacturer&oldid=1059223410"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Aircraft Manufacturing Facility"@en ; + "A Factory that is designed to manufacture Aircraft."@en ; + "https://en.wikipedia.org/w/index.php?title=Aerospace_manufacturer&oldid=1059223410"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001312 -cco:ont00001312 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000274 ; - rdfs:label "Paramilitary Force"@en ; - skos:definition "An Armed Force whose organizational structure, training, subculture, and (often) function are similar to those of a professional Military, and which is not included as part of a Government's formal Armed Forces."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Paramilitary&oldid=1063281359"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Paramilitary Force"@en ; + "An Armed Force whose organizational structure, training, subculture, and (often) function are similar to those of a professional Military, and which is not included as part of a Government's formal Armed Forces."@en ; + "https://en.wikipedia.org/w/index.php?title=Paramilitary&oldid=1063281359"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001313 -cco:ont00001313 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Article of Clothing"@en ; - skos:definition "A Material Artifact that is designed to cover some portion of a body."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Clothing&oldid=1063505718"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Article of Clothing"@en ; + "A Material Artifact that is designed to cover some portion of a body."@en ; + "https://en.wikipedia.org/w/index.php?title=Clothing&oldid=1063505718"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001314 -cco:ont00001314 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Legal System Act"@en ; - skos:definition "A Planned Act performed by an Agent that realizes their role within the context of a legal system of some jurisdiction."@en ; - cco:ont00001754 "http://www.id.uscourts.gov/glossary.htm" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Legal System Act"@en ; + "A Planned Act performed by an Agent that realizes their role within the context of a legal system of some jurisdiction."@en ; + "http://www.id.uscourts.gov/glossary.htm" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001315 -cco:ont00001315 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Waste Management Facility"@en ; - skos:definition "A Facility that is designed for managing waste for some portion of the waste's existence."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Waste Management Facility"@en ; + "A Facility that is designed for managing waste for some portion of the waste's existence."@en ; + "https://en.wikipedia.org/w/index.php?title=Waste_management&oldid=1062844209"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001316 -cco:ont00001316 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001042 ; - rdfs:label "Gimbal"@en ; - skos:definition "An Equipment Mount that consists of a pivoted support that allows a Material Artifact to Rotate about one or more Axes."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gimbal&oldid=1053306885"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gimbal"@en ; + "An Equipment Mount that consists of a pivoted support that allows a Material Artifact to Rotate about one or more Axes."@en ; + "https://en.wikipedia.org/w/index.php?title=Gimbal&oldid=1053306885"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001317 -cco:ont00001317 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Volume"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of sites or three-dimensional regions or Geospatial Regions."@en ; - skos:example "cubic feet, cubic meter, quart, liter" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Volume"@en ; + "A Measurement Unit that is used as a standard for measurement of sites or three-dimensional spatial regions."@en ; + "cubic feet, cubic meter, quart, liter" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001318 -cco:ont00001318 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000119 ; - rdfs:label "Yaw Orientation"@en ; - skos:altLabel "Yaw"@en ; - skos:definition "A Spatial Orientation of an Object relative to its Yaw Axis."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Yaw Orientation"@en ; + "Yaw"@en ; + "A Spatial Orientation of an Object relative to its Yaw Axis."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001319 -cco:ont00001319 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000427 ; - rdfs:comment "Tank firepower is normally provided by a large-caliber main gun mounted in a rotating turret, which is supported by secondary machine guns. A tank's heavy armour and all-terrain mobility provide protection for both the tank and its crew, allowing it to perform all primary tasks of the armoured troops on the battlefield."@en ; - rdfs:label "Tank"@en ; - skos:definition "An Armored Fighting Vehicle that is designed to carry heavy firepower, have a powerful Engine, and travel on one or more continuous tracks such that it is suitable for front-line combat and can provide operational maneuverability as well as tactical offensive and defensive capabilities."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Tank&oldid=1060527612"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Tank"@en ; + "An Armored Fighting Vehicle that is designed to carry heavy firepower, have a powerful Engine, and travel on one or more continuous tracks such that it is suitable for front-line combat and can provide operational maneuverability as well as tactical offensive and defensive capabilities."@en ; + "Tank firepower is normally provided by a large-caliber main gun mounted in a rotating turret, which is supported by secondary machine guns. A tank's heavy armour and all-terrain mobility provide protection for both the tank and its crew, allowing it to perform all primary tasks of the armoured troops on the battlefield."@en ; + "https://en.wikipedia.org/w/index.php?title=Tank&oldid=1060527612"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001320 -cco:ont00001320 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000903 ; - rdfs:label "Radio Transceiver"@en ; - skos:definition "A Radio Communication Instrument that is an electronic device composed of both a Radio Transmitter and a Radio Receiver that share common circuitry or a single housing."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transceiver&oldid=1058453736"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Radio Transceiver"@en ; + "A Radio Communication Instrument that is an electronic device composed of both a Radio Transmitter and a Radio Receiver that share common circuitry or a single housing."@en ; + "https://en.wikipedia.org/w/index.php?title=Transceiver&oldid=1058453736"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001321 -cco:ont00001321 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001105 ; - rdfs:label "Lead Acid Electric Battery"@en ; - skos:definition "A Secondary Cell Electric Battery that has a lead anode and lead oxide cathode."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Lead%E2%80%93acid_battery&oldid=1061641405"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Lead Acid Electric Battery"@en ; + "A Secondary Cell Electric Battery that has a lead anode and lead oxide cathode."@en ; + "https://en.wikipedia.org/w/index.php?title=Lead%E2%80%93acid_battery&oldid=1061641405"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001322 -cco:ont00001322 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000726 ; - rdfs:comment "For the most part Generically Dependent Continuants do not inhere in their bearers over some continuous scale. The primary exception is religion and this class allows annotation of those cases where an Agent is described as becoming less religious. Other cases would include the decrease of an organization's bearing of some objective."@en ; - rdfs:label "Decrease of Generically Dependent Continuant"@en ; - skos:definition "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in the level of a Generically Dependent Continuant that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Decrease of Generically Dependent Continuant"@en ; + "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in the level of a Generically Dependent Continuant that it bears."@en ; + "For the most part Generically Dependent Continuants do not inhere in their bearers over some continuous scale. The primary exception is religion and this class allows annotation of those cases where an Agent is described as becoming less religious. Other cases would include the decrease of an organization's bearing of some objective."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001323 -cco:ont00001323 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Bearing Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in processes in which the Material Artifact constrains relative motion to only the desired motion, and reduces friction between moving parts."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bearing Artifact Function"@en ; + "An Artifact Function that is realized in processes in which the Material Artifact constrains relative motion to only the desired motion, and reduces friction between moving parts."@en ; + "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001324 -cco:ont00001324 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000965 ; - rdfs:label "Process Regulation"@en ; - skos:definition "A Directive Information Content Entity that prescribes an Process as required, prohibited, or permitted, and is the output of an Process which realizes some Authority Role."@en ; - skos:scopeNote "Although regulations often regulate processes which involve agents--as the regulating or regulated participant--it is unclear how causally active an agents need to be in those regulated processes. For example, it is not clear how causally active a human agent is in the process of a traffic light regulating the motion of a self-driving vehicle."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Process Regulation"@en ; + "A Prescriptive Information Content Entity that prescribes an Process as required, prohibited, or permitted, and is the output of an Process which realizes some Authority Role."@en ; + "Although regulations often regulate processes which involve agents--as the regulating or regulated participant--it is unclear how causally active an agents need to be in those regulated processes. For example, it is not clear how causally active a human agent is in the process of a traffic light regulating the motion of a self-driving vehicle."@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001325 -cco:ont00001325 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001334 ; - rdfs:label "Act of Renting"@en ; - skos:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Renter) as a payment to acquire temporary possession or use of a good or property that is owned or controlled by another Agent (the Seller)."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Renting"@en ; + "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Renter) as a payment to acquire temporary possession or use of a good or property that is owned or controlled by another Agent (the Seller)."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001326 -cco:ont00001326 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000254 ; - rdfs:label "Land Transportation Artifact"@en ; - skos:definition "A Transportation Artifact that facilitates the movement of Agents and Vehicles via land"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Land Transportation Artifact"@en ; + "A Transportation Artifact that facilitates the movement of Agents and Vehicles via land"@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001327 -cco:ont00001327 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000228 ; - rdfs:label "Social Act"@en ; - skos:definition "A Planned Act having an objective that affects, is performed by, or is performed on behalf of, a community or group of Persons."@en ; - cco:ont00001754 "http://en.wiktionary.org/wiki/commually" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Social Act"@en ; + "A Planned Act having an objective that affects, is performed by, or is performed on behalf of, a community or group of Persons."@en ; + "http://en.wiktionary.org/wiki/commually" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001328 -cco:ont00001328 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000398 ; - rdfs:label "Temporal Reference System"@en ; - skos:altLabel "Temporal Reference Frame"@en , - "Time Scale"@en ; - skos:definition "A Reference System that describes a set of standards for measuring time as well as understanding the context of and organizing temporal data."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Temporal Reference System"@en ; + "Temporal Reference Frame"@en , + "Time Scale"@en ; + "A Reference System that describes a set of standards for measuring time as well as understanding the context of and organizing temporal data."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001329 -cco:ont00001329 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Education Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes of transmiting accumulated knowledge skills and values from one generation to another."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Education Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of transmiting accumulated knowledge skills and values from one generation to another."@en ; + "https://en.wikipedia.org/w/index.php?title=Education&oldid=1064011752"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001330 -cco:ont00001330 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000110 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000345 - ] , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001777 ; - owl:someValuesFrom cco:ont00000517 - ] ; - rdfs:label "Telemetry Process"@en ; - skos:definition "A Mechanical Process that is highly automated and in which measurements are made or other data is collected and transmitted to receiving equipment to facilitate the monitoring of environmental conditions or equipment parameters at a remote or inaccessible location."@en ; - skos:example "using a GPS tag to track a shark's migratory pattern" , - "using a portable cardiac monitor to remotely collect data on a patient's heart activity (biotelemetry)" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Telemetry&oldid=1061697851"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Telemetry Process"@en ; + "A Mechanical Process that is highly automated and in which measurements are made or other data is collected and transmitted to receiving equipment to facilitate the monitoring of environmental conditions or equipment parameters at a remote or inaccessible location."@en ; + "using a GPS tag to track a shark's migratory pattern" , + "using a portable cardiac monitor to remotely collect data on a patient's heart activity (biotelemetry)" ; + "https://en.wikipedia.org/w/index.php?title=Telemetry&oldid=1061697851"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001331 -cco:ont00001331 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001014 ; - rdfs:label "Legal Name"@en ; - skos:definition "A Proper Name that is an official name for the designated entity as determined by a Government or court of law."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Legal Name"@en ; + "A Proper Name that is an official name for the designated entity as determined by a Government or court of law."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001332 -cco:ont00001332 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000610 ; - rdfs:label "Extreme Ultraviolet Light Frequency"@en ; - skos:definition "An Ultraviolet Light Frequency that is between 3 and 30 petahertz."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Extreme Ultraviolet Light Frequency"@en ; + "An Ultraviolet Light Frequency that is between 3 and 30 petahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Ultraviolet&oldid=1062593453"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001333 -cco:ont00001333 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Rosy"@en ; - skos:definition "A Color consisting of red hue and yellow hue and high brightness."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rosy"@en ; + "A Color consisting of red hue and yellow hue and high brightness."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001334 -cco:ont00001334 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000836 ; - rdfs:label "Act of Purchasing"@en ; - skos:definition "An Act of Financial Instrument Use wherein a Financial Instrument is used by an Agent (the Purchaser) to acquire a good or service from another Agent (the Provider)."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Purchasing&oldid=1050163120"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Purchasing"@en ; + "An Act of Financial Instrument Use wherein a Financial Instrument is used by an Agent (the Purchaser) to acquire a good or service from another Agent (the Provider)."@en ; + "https://en.wikipedia.org/w/index.php?title=Purchasing&oldid=1050163120"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001335 -cco:ont00001335 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001180 , - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001859 ; - owl:someValuesFrom cco:ont00001203 - ] ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - rdfs:label "Government"@en ; - skos:definition "An Organization that is the highest legitimate authority delimited by some Delimiting Domain and that exercises executive, legislative, or judicial authority in that Domain."@en ; - skos:editorialNote "Highest legitimate authority should not be confused with highest legitimate authority of a particular kind. For example, while the judicial branch of the United States government has the highest judicial authority in a Delimiting Domain, it is not the highest legitimate authority delimited by that domain. The combination of executive, judicial, and legislative branches is higher because it wields more legitimate authority than any branch on its own."@en , - "Importantly, the definition states \"highest legitimate authority delimited by some Delimiting Domain\" and not \"highest legitimate authority in some Delimiting Domain.\" The government of Wales is the highest legitimate authority delimited by some Delimiting Domain but it is not the highest legitimate authority in that domain, which would be the government of the United Kingdom."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + "https://cubrc.org"^^xsd:anyURI ; + rdfs:label "Government"@en ; + "An Organization that is the highest legitimate authority delimited by some Delimiting Domain and that exercises executive, legislative, or judicial authority in that Domain."@en ; + "Highest legitimate authority should not be confused with highest legitimate authority of a particular kind. For example, while the judicial branch of the United States government has the highest judicial authority in a Delimiting Domain, it is not the highest legitimate authority delimited by that domain. The combination of executive, judicial, and legislative branches is higher because it wields more legitimate authority than any branch on its own."@en , + "Importantly, the definition states \"highest legitimate authority delimited by some Delimiting Domain\" and not \"highest legitimate authority in some Delimiting Domain.\" The government of Wales is the highest legitimate authority delimited by some Delimiting Domain but it is not the highest legitimate authority in that domain, which would be the government of the United Kingdom."@en ; + "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001336 -cco:ont00001336 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001232 ; - rdfs:comment "The relation between the owner and property may be private, collective, or common and the property may be objects, land, real estate, or intellectual property."@en ; - rdfs:label "Act of Ownership"@en ; - skos:definition "An Act of Possession that includes an agent having certain rights and duties over the property owned."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Ownership&oldid=1058224617"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Ownership"@en ; + "An Act of Possession that includes an agent having certain rights and duties over the property owned."@en ; + "The relation between the owner and property may be private, collective, or common and the property may be objects, land, real estate, or intellectual property."@en ; + "https://en.wikipedia.org/w/index.php?title=Ownership&oldid=1058224617"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001337 -cco:ont00001337 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000754 ; - rdfs:label "Infrared Light Frequency"@en ; - skos:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 300 gigahertz and 430 tetrahertz."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Infrared&oldid=1064111319"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infrared Light Frequency"@en ; + "An Electromagnetic Radiation Frequency of some Electromagnetic Wave that is between 300 gigahertz and 430 tetrahertz."@en ; + "https://en.wikipedia.org/w/index.php?title=Infrared&oldid=1064111319"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001338 -cco:ont00001338 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000862 ; - rdfs:label "Timbre"@en ; - skos:definition "A Sound Process Profile that is characterized by the variation, spectrum, or envelope of translated sound waves, typically on a continuum from dull or dark to bright."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Timbre"@en ; + "A Sound Process Profile that is characterized by the variation, spectrum, or envelope of translated sound waves, typically on a continuum from dull or dark to bright."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001339 -cco:ont00001339 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000890 ; - rdfs:label "Act of Walking"@en ; - skos:definition "An Act of Travel that proceeds by foot."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Walking"@en ; + "An Act of Travel that proceeds by foot."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001340 -cco:ont00001340 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000529 ; - rdfs:label "Calendar Date Identifier"@en ; - skos:definition "A Date Identifier that designates some Day by using a combination of Day, Week, Month, or Year Identifiers formatted according to an implementation of a Calendar System."@en ; - skos:example "January 1, 2018; 1 January 2018; 01/01/18; 01Jan18" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Calendar Date Identifier"@en ; + "A Date Identifier that designates some Day by using a combination of Day, Week, Month, or Year Identifiers formatted according to an implementation of a Calendar System."@en ; + "January 1, 2018; 1 January 2018; 01/01/18; 01Jan18" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001341 -cco:ont00001341 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - rdfs:label "Portion of Geosphere"@en ; - skos:definition "A fiat object part that is composed of one or more portions of the atmosphere, cryosphere, hydrosphere, or lithosphere"@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Geosphere&oldid=1137306949"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Portion of Geosphere"@en ; + "A fiat object part that is composed of one or more portions of the atmosphere, cryosphere, hydrosphere, or lithosphere"@en ; + "https://en.wikipedia.org/w/index.php?title=Geosphere&oldid=1137306949"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001342 -cco:ont00001342 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000427 ; - rdfs:label "Infantry Fighting Vehicle"@en ; - skos:definition "An Armored Fighting Vehicle that is designed to carry infantry into battle and to provide fire support for them."@en ; - skos:scopeNote "Infantry Fighting Vehicles (IFVs) are differentiated from Armored Personnel Carriers (APCs) because they are designed to give direct fire support to the dismounted infantry and so usually have significantly enhanced armament. IFVs also often have improved armour and firing ports (allowing the infantry to fire personal weapons while mounted)."@en ; - cco:ont00001753 "IFV" ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Infantry_fighting_vehicle&oldid=1062470745"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Infantry Fighting Vehicle"@en ; + "An Armored Fighting Vehicle that is designed to carry infantry into battle and to provide fire support for them."@en ; + "Infantry Fighting Vehicles (IFVs) are differentiated from Armored Personnel Carriers (APCs) because they are designed to give direct fire support to the dismounted infantry and so usually have significantly enhanced armament. IFVs also often have improved armour and firing ports (allowing the infantry to fire personal weapons while mounted)."@en ; + "IFV" ; + "https://en.wikipedia.org/w/index.php?title=Infantry_fighting_vehicle&oldid=1062470745"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001343 -cco:ont00001343 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Circuit Breaker"@en ; - skos:definition "A Material Artifact that is designed to protect an electrical circuit from damage caused by excess current from an overload or short circuit."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Circuit_breaker&oldid=1060854893"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Circuit Breaker"@en ; + "A Material Artifact that is designed to protect an electrical circuit from damage caused by excess current from an overload or short circuit."@en ; + "https://en.wikipedia.org/w/index.php?title=Circuit_breaker&oldid=1060854893"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001344 -cco:ont00001344 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000881 ; - rdfs:label "Biological Depot"@en ; - skos:definition "A Storage Facility that is designed to store biological agents."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Biological Depot"@en ; + "A Storage Facility that is designed to store biological agents."@en ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001345 -cco:ont00001345 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Impulse"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of the integral of a Force applied to a portion of matter over a temporal interval."@en ; - skos:example "N s, dyne second" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Impulse"@en ; + "A Measurement Unit that is used as a standard for measurement of the integral of a Force applied to a portion of matter over a temporal interval."@en ; + "N s, dyne second" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001346 -cco:ont00001346 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Legal Instrument"@en ; - skos:definition "A Material Artifact that is designed as a formally executed written document that can be formally attributed to its author, records and formally expresses a legally enforceable act, process, or contractual duty, obligation, or right, and therefore evidences that act, process, or agreement."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Legal_instrument&oldid=1054387344"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Legal Instrument"@en ; + "A Material Artifact that is designed as a formally executed written document that can be formally attributed to its author, records and formally expresses a legally enforceable act, process, or contractual duty, obligation, or right, and therefore evidences that act, process, or agreement."@en ; + "https://en.wikipedia.org/w/index.php?title=Legal_instrument&oldid=1054387344"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001347 -cco:ont00001347 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000005 ; - rdfs:label "Behavior"@en ; - skos:definition "An Act in which an Independent Continuant participates as an Agent in response to external or internal stimuli and following some pattern which is dependent upon some combination of that Independent Continuant's internal state and external conditions."@en ; - cco:ont00001754 "http://purl.obolibrary.org/obo/GO_0007610" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Behavior"@en ; + "An Act in which an Independent Continuant participates as an Agent in response to external or internal stimuli and following some pattern which is dependent upon some combination of that Independent Continuant's internal state and external conditions."@en ; + "http://purl.obolibrary.org/obo/GO_0007610" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001348 -cco:ont00001348 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000028 ; - rdfs:comment "For an object in motion, its Three-Dimensional Position is part of its Three-Dimensional Path."@en ; - rdfs:label "Three-Dimensional Position"@en ; - skos:definition "A Three-Dimensional Spatial Region that encompasses the (minimal) spatial region in which some object is located at a particular time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Three-Dimensional Position"@en ; + "A Three-Dimensional Spatial Region that encompasses the (minimal) spatial region in which some object is located at a particular time."@en ; + "For an object in motion, its Three-Dimensional Position is part of its Three-Dimensional Path."@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001349 -cco:ont00001349 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Grey"@en ; - skos:definition "A Color between white and black colors."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Grey"@en ; + "A Color between white and black colors."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001350 -cco:ont00001350 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Thermal Control Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by a Material Artifact increasing, decreasing, or maintaining the temperature of itself, a part of itself, or another object."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Thermal Control Artifact Function"@en ; + "An Artifact Function that is realized by a Material Artifact increasing, decreasing, or maintaining the temperature of itself, a part of itself, or another object."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001351 -cco:ont00001351 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000275 ; - rdfs:label "Cartesian Coordinate System"@en ; - skos:altLabel "Rectangular Coordinate System"@en ; - skos:definition "A Spatial Reference System that identifies each point in a spatial region of n-dimensions using an ordered n-tuple of numerical coordinates that are the signed (i.e. positive or negative) distances measured in the same unit of length from the zero point where the fixed perpendicular Coordinate System Axes meet."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Cartesian_coordinate_system&oldid=1058613323"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Cartesian Coordinate System"@en ; + "Rectangular Coordinate System"@en ; + "A Spatial Reference System that identifies each point in a spatial region of n-dimensions using an ordered n-tuple of numerical coordinates that are the signed (i.e. positive or negative) distances measured in the same unit of length from the zero point where the fixed perpendicular Coordinate System Axes meet."@en ; + "https://en.wikipedia.org/w/index.php?title=Cartesian_coordinate_system&oldid=1058613323"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001352 -cco:ont00001352 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000829 ; - rdfs:comment "Greenwich Mean Time (GMT) is the mean solar time at the Royal Observatory in Greenwich, London and has been superseded by Coordinated Universal Time (UTC)."@en ; - rdfs:label "Greenwich Mean Time Zone Identifier"@en ; - skos:definition "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Greenwich Mean Time."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Greenwich Mean Time Zone Identifier"@en ; + "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Greenwich Mean Time."@en ; + "Greenwich Mean Time (GMT) is the mean solar time at the Royal Observatory in Greenwich, London and has been superseded by Coordinated Universal Time (UTC)."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001353 -cco:ont00001353 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000448 ; - rdfs:label "Speed Artifact Function"@en ; - skos:definition "A Motion Artifact Function that is realized in some process in which its bearer has some speed."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Speed Artifact Function"@en ; + "A Motion Artifact Function that is realized in some process in which its bearer has some speed."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001354 -cco:ont00001354 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Vermilion"@en ; - skos:definition "A Color consisting of red and orange hue with a slight amount of gray."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Vermilion"@en ; + "A Color consisting of red and orange hue with a slight amount of gray."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001355 -cco:ont00001355 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000928 ; - rdfs:label "Freight Train Car"@en ; - skos:altLabel "Freight Car"@en ; - skos:definition "A Train Car that is designed to transport cargo."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Goods_wagon&oldid=1062686785"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Freight Train Car"@en ; + "Freight Car"@en ; + "A Train Car that is designed to transport cargo."@en ; + "https://en.wikipedia.org/w/index.php?title=Goods_wagon&oldid=1062686785"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001356 -cco:ont00001356 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000611 ; - rdfs:label "Increase of Disposition"@en ; - skos:definition "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Disposition that it bears."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Increase of Disposition"@en ; + "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Disposition that it bears."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001357 -cco:ont00001357 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000120 ; - rdfs:label "Measurement Unit of Time"@en ; - skos:definition "A Measurement Unit that is used as a standard for measurement of temporal regions."@en ; - skos:example "second, minute, hour, day" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Measurement Unit of Time"@en ; + "A Measurement Unit that is used as a standard for measurement of temporal regions."@en ; + "second, minute, hour, day" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001358 -cco:ont00001358 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000270 ; - rdfs:label "School"@en ; - skos:definition "An Education Facility that is designed to provide learning space and environments for teaching of students under the direction of teachers."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=School&oldid=1063515394"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "School"@en ; + "An Education Facility that is designed to provide learning space and environments for teaching of students under the direction of teachers."@en ; + "https://en.wikipedia.org/w/index.php?title=School&oldid=1063515394"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001359 -cco:ont00001359 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000908 ; - rdfs:comment "An Act of Manufacturing typically involves the mass production of goods."@en ; - rdfs:label "Act of Manufacturing"@en ; - skos:definition "An Act of Artifact Processing wherein Material Artifacts are mass produced in a Facility for the purpose of being sold or distributed to consumers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Manufacturing"@en ; + "An Act of Material Artifact Processing wherein Material Artifacts are mass produced in a Facility for the purpose of being sold or distributed to consumers."@en ; + "An Act of Manufacturing typically involves the mass production of goods."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001360 -cco:ont00001360 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Three Dimensional Shape"@en ; - skos:definition "A Shape Quality that inheres only in a three dimensional entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Three Dimensional Shape"@en ; + "A Shape Quality that inheres only in a three dimensional entity."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001361 -cco:ont00001361 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Healing Artifact Function"@en ; - skos:definition "An Artifact Function that is realized in a process in which health is restored to an unbalanced, diseased, or damaged organism."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Healing&oldid=1053920678"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Healing Artifact Function"@en ; + "An Artifact Function that is realized in a process in which health is restored to an unbalanced, diseased, or damaged organism."@en ; + "https://en.wikipedia.org/w/index.php?title=Healing&oldid=1053920678"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001362 -cco:ont00001362 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001283 ; - rdfs:label "Gas Processing Facility"@en ; - skos:definition "A Refinery that is designed for refining natural gas into products of value."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Natural-gas_processing&oldid=1056700541"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gas Processing Facility"@en ; + "A Refinery that is designed for refining natural gas into products of value."@en ; + "https://en.wikipedia.org/w/index.php?title=Natural-gas_processing&oldid=1056700541"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001363 -cco:ont00001363 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001033 ; - rdfs:label "Male Sex"@en ; - skos:definition "A Biological Sex inhering in an individual whose sex organs contain only male gametes."@en ; - cco:ont00001754 "http://purl.org/obo/owl/PATO#PATO_0000384" ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Male Sex"@en ; + "A Biological Sex inhering in an individual whose sex organs contain only male gametes."@en ; + "http://purl.org/obo/owl/PATO#PATO_0000384" ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001364 -cco:ont00001364 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00001163 - [ rdf:type owl:Restriction ; - owl:onProperty cco:ont00001877 ; - owl:someValuesFrom obo:BFO_0000001 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00001163 ; - rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; - rdfs:label "Interval Measurement Information Content Entity"@en ; - skos:definition "A Measurement Information Content Entity that places a Quality of an Entity onto some interval scale having no true zero value."@en ; - skos:example "The sentence \"The temperature reached -27 degrees Fahrenheit on January 20, 1985 in Chicago, IL.\" is the carrier of an interval measurement as 0 degrees on the Fahrenheit scale does not describe absolute zero."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Interval Measurement Information Content Entity"@en ; + "A Measurement Information Content Entity that places a Quality of an Entity onto some interval scale having no true zero value."@en ; + "The sentence \"The temperature reached -27 degrees Fahrenheit on January 20, 1985 in Chicago, IL.\" is the carrier of an interval measurement as 0 degrees on the Fahrenheit scale does not describe absolute zero."@en ; + "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001365 -cco:ont00001365 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001353 ; - rdfs:label "Maximum Speed Artifact Function"@en ; - skos:definition "A Speed Artifact Function that is realized in some process in which the Material Artifact bearing the Artifact Function attains the highest speed at which that Material Artifact is designed to operate."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Maximum Speed Artifact Function"@en ; + "A Speed Artifact Function that is realized in some process in which the Material Artifact bearing the Artifact Function attains the highest speed at which that Material Artifact is designed to operate."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001366 -cco:ont00001366 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Powering Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by processes in which some Material Artifact is used to supply power to some Material Artifact."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Powering Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Material Artifact is used to supply power to some Material Artifact."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001367 -cco:ont00001367 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001202 ; - rdfs:comment "Subclasses of one dimensional extent are included for usability. It is doubtful any of them can be objectively distinguished (on the side of the bearing entity) without some reference to external properties such as orientation and perspective."@en ; - rdfs:label "One Dimensional Extent"@en ; - skos:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in one dimension."@en ; - cco:ont00001754 "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "One Dimensional Extent"@en ; + "A Size Quality that inheres in a bearer in virtue of the bearer's extension in one dimension."@en ; + "Subclasses of one dimensional extent are included for usability. It is doubtful any of them can be objectively distinguished (on the side of the bearing entity) without some reference to external properties such as orientation and perspective."@en ; + "International Organization for Standardization. 2019. Quantities and units -- Part 3: Space and time (ISO 80000-3:2019). International Organization for Standardization. Available at: https://www.iso.org/standard/64974.html."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001368 -cco:ont00001368 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001306 ; - rdfs:label "Motion Observation Artifact Function"@en ; - skos:definition "An Observation Artifact Function that is realized during events in which a Material Artifact is used to collect information about the Motion of a specified object or class of objects."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Motion Observation Artifact Function"@en ; + "An Observation Artifact Function that is realized during events in which a Material Artifact is used to collect information about the Motion of a specified object or class of objects."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001369 -cco:ont00001369 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001059 ; - rdfs:label "Rectangular"@en ; - skos:definition "A Shape Quality inhering in a bearer in virtue of having four sides and four 90 degree angles."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Rectangular"@en ; + "A Shape Quality inhering in a bearer in virtue of having four sides and four 90 degree angles."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001370 -cco:ont00001370 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Machine Bearing"@en ; - skos:definition "A Material Artifact that is designed to constrain relative motion to only desired motion and reduces friction between moving parts."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Machine Bearing"@en ; + "A Material Artifact that is designed to constrain relative motion to only desired motion and reduces friction between moving parts."@en ; + "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001371 -cco:ont00001371 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Electromagnetic Induction Artifact Function"@en ; - skos:definition "An Artifact Function that is realized by processes in which some Material Artifact that is used to produce electromotive force across an electrical conductor due to its dynamic interaction with a magnetic field."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Electromagnetic_induction&oldid=1061836930"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electromagnetic Induction Artifact Function"@en ; + "An Artifact Function that is realized by processes in which some Material Artifact that is used to produce electromotive force across an electrical conductor due to its dynamic interaction with a magnetic field."@en ; + "https://en.wikipedia.org/w/index.php?title=Electromagnetic_induction&oldid=1061836930"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001372 -cco:ont00001372 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000437 ; - rdfs:label "Fertilizer Artifact Function"@en ; - skos:definition "An Enhancing Artifact Function that is realized in processes of supplying soilds or plant tissues with one or more plant nutrients essential to growth."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fertilizer&oldid=1062923261"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fertilizer Artifact Function"@en ; + "An Enhancing Artifact Function that is realized in processes of supplying soilds or plant tissues with one or more plant nutrients essential to growth."@en ; + "https://en.wikipedia.org/w/index.php?title=Fertilizer&oldid=1062923261"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001373 -cco:ont00001373 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001051 ; - rdfs:label "Bow"@en ; - skos:definition "A Projectile Launcher that is designed to launch Arrows."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Bow_and_arrow&oldid=1062193194"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Bow"@en ; + "A Projectile Launcher that is designed to launch Arrows."@en ; + "https://en.wikipedia.org/w/index.php?title=Bow_and_arrow&oldid=1062193194"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001374 -cco:ont00001374 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000402 ; - rdfs:comment "Examples: Baptism, Sentencing a person to imprisonment, Pronouncing a couple husband and wife, Declaring war"@en ; - rdfs:label "Act of Declarative Communication"@en ; - skos:definition "An Act of Communication that changes the reality in accord with the proposition of the declaration."@en ; - cco:ont00001754 "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Declarative Communication"@en ; + "An Act of Communication that changes the reality in accord with the proposition of the declaration."@en ; + "Examples: Baptism, Sentencing a person to imprisonment, Pronouncing a couple husband and wife, Declaring war"@en ; + "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001375 -cco:ont00001375 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000192 ; - rdfs:label "Washing Facility"@en ; - skos:definition "A Facility that is designed to wash personnel or equipment."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Washing&oldid=1035998791"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Washing Facility"@en ; + "A Facility that is designed to wash personnel or equipment."@en ; + "https://en.wikipedia.org/w/index.php?title=Washing&oldid=1035998791"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001376 -cco:ont00001376 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000570 ; - rdfs:label "Torque"@en ; - skos:altLabel "Moment of Force"@en ; - skos:definition "A Force that is applied to an object in a direction that would tend to cause the object to rotate around an Axis of Rotation and is the rate of change of an object's Angular Momentum."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Torque&oldid=1063339484"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Torque"@en ; + "Moment of Force"@en ; + "A Force that is applied to an object in a direction that would tend to cause the object to rotate around an Axis of Rotation and is the rate of change of an object's Angular Momentum."@en ; + "https://en.wikipedia.org/w/index.php?title=Torque&oldid=1063339484"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001377 -cco:ont00001377 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000378 ; - rdfs:label "Gold Color"@en ; - skos:definition "A Color that resembles a yellow-orange Hue with the added feature of having a metallic shine."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Gold Color"@en ; + "A Color that resembles a yellow-orange Hue with the added feature of having a metallic shine."@en ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001378 -cco:ont00001378 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00001301 ; - rdfs:label "Hospitality Artifact Function"@en ; - skos:definition "A Service Artifact Function that is realized in processes of accommodation food and beverage meeting and events gaming entertainment and recreation tourism services and visitor information."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Hospitality&oldid=1049599161"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Hospitality Artifact Function"@en ; + "A Service Artifact Function that is realized in processes of accommodation food and beverage meeting and events gaming entertainment and recreation tourism services and visitor information."@en ; + "https://en.wikipedia.org/w/index.php?title=Hospitality&oldid=1049599161"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001379 -cco:ont00001379 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000017 ; - rdfs:label "Agent Capability"@en ; - skos:definition "A Realizable Entity that inheres in a Material Entity in virtue of that Material Entity's capacity to realize it in some Planned Act."@en ; - cco:ont00001754 "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Agent Capability"@en ; + "A Realizable Entity that inheres in a Material Entity in virtue of that Material Entity's capacity to realize it in some Planned Act."@en ; + "Schlosser, Markus, \"Agency\", The Stanford Encyclopedia of Philosophy (Winter 2019 Edition), Edward N. Zalta (ed.), available at: https://plato.stanford.edu/archives/win2019/entries/agency/"@en ; + "https://www.commoncoreontologies.org/AgentOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001380 -cco:ont00001380 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000339 ; - rdfs:label "Farm"@en ; - skos:definition "An Agricultural Facility that is designed to produce food and other crops."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Farm&oldid=1058311769"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Farm"@en ; + "An Agricultural Facility that is designed to produce food and other crops."@en ; + "https://en.wikipedia.org/w/index.php?title=Farm&oldid=1058311769"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001381 -cco:ont00001381 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Medical Artifact"@en ; - skos:definition "A Material Artifact that is designed for diagnosing, treating, or preventing disease, disability, or death."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Medical Artifact"@en ; + "A Material Artifact that is designed for diagnosing, treating, or preventing disease, disability, or death."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001382 -cco:ont00001382 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000475 ; - rdfs:label "Electronic Cash"@en ; - skos:definition "A Portion of Cash that consists of Bytes."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Electronic Cash"@en ; + "A Portion of Cash that consists of Bytes."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001383 -cco:ont00001383 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000479 ; - rdfs:label "Fire Station"@en ; - skos:altLabel "Fire Hall"@en , - "Fire House"@en ; - skos:definition "A Public Safety Facility that is designed for the storage of firefighting apparatus."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Fire_station&oldid=1060666629"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Fire Station"@en ; + "Fire Hall"@en , + "Fire House"@en ; + "A Public Safety Facility that is designed for the storage of firefighting apparatus."@en ; + "https://en.wikipedia.org/w/index.php?title=Fire_station&oldid=1060666629"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/FacilityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001384 -cco:ont00001384 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000628 ; - rdfs:comment "Note that it is important to specify the frequency of electromagnetic radiation when representing a bearer's Opacity since a bearer may be Opaque with respect to electromagnetic radiation of one frequency, but be transparent with respect to electromagnetic radiation of another frequency. Unless otherwise stated, statements about a bearer's Opacity are assumed to be about electromagnetic radiation with a frequency in the visible spectrum."@en ; - rdfs:label "Opacity"@en ; - skos:definition "A Disposition to Interact with Electromagnetic Radiation that inheres in a bearer in virtue of that bearer's capacity to transmit electromagnetic radiation of a given frequency through the bearer instead of reflecting, scattering, or absorbing electromangentic radiation of that frequency."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Opacity_(optics)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Opacity"@en ; + "A Disposition to Interact with Electromagnetic Radiation that inheres in a bearer in virtue of that bearer's capacity to transmit electromagnetic radiation of a given frequency through the bearer instead of reflecting, scattering, or absorbing electromangentic radiation of that frequency."@en ; + "Note that it is important to specify the frequency of electromagnetic radiation when representing a bearer's Opacity since a bearer may be Opaque with respect to electromagnetic radiation of one frequency, but be transparent with respect to electromagnetic radiation of another frequency. Unless otherwise stated, statements about a bearer's Opacity are assumed to be about electromagnetic radiation with a frequency in the visible spectrum."@en ; + "https://en.wikipedia.org/wiki/Opacity_(optics)" ; + "https://www.commoncoreontologies.org/QualityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001999 -cco:ont00001999 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:comment """Although its basic function remains the same, a Filter can be used in 2 different ways: + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Filter Function"@en ; + "An Artifact Function that is realized in a process where entities of a specific type or which have specified properties enter it or pass through it."@en ; + """Although its basic function remains the same, a Filter can be used in 2 different ways: (1) to allow only the desired entities to pass through (e.g. removing dirt from engine oil); or (2) to allow everything except the desired entities to pass through (e.g. panning for gold)."""@en ; - rdfs:label "Filter Function"@en ; - skos:definition "An Artifact Function that is realized in a process where entities of a specific type or which have specified properties enter it or pass through it."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002000 -cco:ont00002000 rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000147 ; - rdfs:label "Center of Mass"@en ; - skos:definition "A Fiat Point that is where the weighted position vectors of the distributed Mass of a Material Entity relative to this point sum to zero."@en ; - cco:ont00001754 "Asimov, Isaac. Understanding Physics. New York: Barnes and Noble, 1993. 76-79. Available at: https://archive.org/details/understandingphy00isaa/page/n91/mode/2up"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Center of Mass"@en ; + "A Fiat Point that is where the weighted position vectors of the distributed Mass of a Material Entity relative to this point sum to zero."@en ; + "Asimov, Isaac. Understanding Physics. New York: Barnes and Noble, 1993. 76-79. Available at: https://archive.org/details/understandingphy00isaa/page/n91/mode/2up"@en ; + "https://www.commoncoreontologies.org/GeospatialOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002001 -cco:ont00002001 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000958 ; - rdfs:comment "By 'canonical', it is intended that the media format is of a commonly recognized format, such as mass media formats such as books, magazines, and journals, as well as digital media forms (e.g. ebooks), to include, too, file types, such as those recognized by the Internet Assigned Numbers Authority (IANA)'s Media Types standard [RFC2046]." ; - rdfs:label "Media Content Entity" ; - skos:definition "An information content entity presented in a canonical media format."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Media Content Entity" ; + "An information content entity presented in a canonical media format."@en ; + "By 'canonical', it is intended that the media format is of a commonly recognized format, such as mass media formats such as books, magazines, and journals, as well as digital media forms (e.g. ebooks), to include, too, file types, such as those recognized by the Internet Assigned Numbers Authority (IANA)'s Media Types standard [RFC2046]." ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002002 -cco:ont00002002 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002001 ; - rdfs:label "Certificate"@en ; - skos:definition "A Media Content Entity that attests to certain demonstrated characteristics of an Object, Person, or Organization."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/degree" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Certificate"@en ; + "A Media Content Entity that attests to certain demonstrated characteristics of an Object, Person, or Organization."@en ; + "http://www.dictionary.com/browse/degree" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002003 -cco:ont00002003 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002002 ; - rdfs:label "Academic Degree"@en ; - skos:definition "A Certificate issued by an Educational Organization to a Person to indicate that the Person has satisfactorily completed a course of study, or as an honorary recognition of the Person's achievement."@en ; - cco:ont00001754 "http://www.dictionary.com/browse/degree" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Academic Degree"@en ; + "A Certificate issued by an Educational Organization to a Person to indicate that the Person has satisfactorily completed a course of study, or as an honorary recognition of the Person's achievement."@en ; + "http://www.dictionary.com/browse/degree" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002004 -cco:ont00002004 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002001 ; - rdfs:label "Image"@en ; - skos:definition "A Media Content Entity represents some entity owing to a visual isomorphism between the carrying artifact and the entity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Image&oldid=1062709732"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Image"@en ; + "A Media Content Entity represents some entity owing to a visual isomorphism between the carrying artifact and the entity."@en ; + "https://en.wikipedia.org/w/index.php?title=Image&oldid=1062709732"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002005 -cco:ont00002005 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002004 ; - rdfs:label "Chart"@en ; - skos:definition "An Image that is prescribed by some canonical visual format."@en ; - cco:ont00001754 "Adapted from “Chart.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/chart. Accessed 4 Aug. 2024." ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Chart"@en ; + "An Image that is prescribed by some canonical visual format."@en ; + "Adapted from “Chart.” Merriam-Webster.com Dictionary, Merriam-Webster, https://www.merriam-webster.com/dictionary/chart. Accessed 4 Aug. 2024." ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002006 -cco:ont00002006 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002001 ; - rdfs:label "Database"@en ; - skos:definition "A Media Content Entity that is designed to be rapidly searchable and retrievable."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Database&oldid=1057024641"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Database"@en ; + "A Media Content Entity that is designed to be rapidly searchable and retrievable."@en ; + "https://en.wikipedia.org/w/index.php?title=Database&oldid=1057024641"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002007 -cco:ont00002007 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002001 ; - rdfs:label "List"@en ; - skos:definition "A Media Content Entity whose parts are the subject of some Sequence Position Ordinality."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=List_(abstract_data_type)&oldid=1041588680"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "List"@en ; + "A Media Content Entity whose parts are the subject of some Sequence Position Ordinality."@en ; + "https://en.wikipedia.org/w/index.php?title=List_(abstract_data_type)&oldid=1041588680"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002008 -cco:ont00002008 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002007 ; - rdfs:label "Code List"@en ; - skos:definition "A List whose parts are Code Identifiers."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Code List"@en ; + "A List whose parts are Code Identifiers."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002009 -cco:ont00002009 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002001 ; - rdfs:label "Video"@en ; - skos:definition "A Media Content Entity that contains a sequence of representations that are presented sufficiently rapidly to create the appearance of motion and continuity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Video&oldid=1049376249"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Video"@en ; + "A Media Content Entity that contains a sequence of representations that are presented sufficiently rapidly to create the appearance of motion and continuity."@en ; + "https://en.wikipedia.org/w/index.php?title=Video&oldid=1049376249"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002010 -cco:ont00002010 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002001 ; - rdfs:label "Message"@en ; - skos:definition "A Media Content Entity that is relatively brief and designed to be transmitted from a sender to a recipient."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Message&oldid=1060098631"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Message"@en ; + "A Media Content Entity that is relatively brief and designed to be transmitted from a sender to a recipient."@en ; + "https://en.wikipedia.org/w/index.php?title=Message&oldid=1060098631"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002011 -cco:ont00002011 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002010 ; - rdfs:label "Warning Message"@en ; - skos:definition "A Message that describes a possible or impending threat."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Warning Message"@en ; + "A Message that describes a possible or impending threat."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002012 -cco:ont00002012 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002010 ; - rdfs:label "Email Message"@en ; - skos:definition "A Message that is transmitted to the recipient's Email Box."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Email Message"@en ; + "A Message that is transmitted to the recipient's Email Box."@en ; + "https://en.wikipedia.org/w/index.php?title=Email&oldid=1063646749"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002013 -cco:ont00002013 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002010 ; - rdfs:label "Notification Message"@en ; - skos:definition "A Message that describes a scenario that has been determined to merit attention by the recipient."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Notification Message"@en ; + "A Message that describes a scenario that has been determined to merit attention by the recipient."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002014 -cco:ont00002014 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002001 ; - rdfs:comment "For information on types of barcodes, see: https://www.scandit.com/types-barcodes-choosing-right-barcode/"@en ; - rdfs:label "Barcode"@en ; - skos:definition "A Media Content Entity that represents one or more geometric shapes that have, as part, some Directive Information Content Entity."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Barcode&oldid=1059844765"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002015 -cco:ont00002015 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002014 ; - rdfs:label "Two-Dimensional Barcode"@en ; - skos:definition "A Barcode that represents lines of varying widths, spacing, height, and color that has, as part, some Directive Information Content Entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002016 -cco:ont00002016 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002015 ; - rdfs:label "Aztec Code"@en ; - skos:definition "A Two-Dimensional Barcode that is used by the transportation industry to scan tickets."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002017 -cco:ont00002017 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002015 ; - rdfs:label "Data Matrix Code"@en ; - skos:definition "A Two-Dimensional Barcode that represents cells arranged in rectangular patterns and is used for marking small items in logistics and operations."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002018 -cco:ont00002018 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002015 ; - rdfs:label "QR Code"@en ; - skos:definition "A Two-Dimensional Barcode that represents numeric, alphanumeric, binary, or kanji information and is used primarily for tracking and marketing."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002019 -cco:ont00002019 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002015 ; - rdfs:label "PDF417 Code"@en ; - skos:definition "A Two-Dimensional Barcode that is used in applications that require the storage of huge amounts of data."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002020 -cco:ont00002020 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002014 ; - rdfs:label "One-Dimensional Barcode"@en ; - skos:definition "A Barcode that represents parallel lines of varying widths and spacing that concretize some Directive Information Content Entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002021 -cco:ont00002021 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002020 ; - rdfs:label "Codabar Barcode"@en ; - skos:definition "A One-Dimensional Barcode that represents numbers 0-9 and the characters -$:/.+ and is intended for use by logistics and healthcare professionals."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002022 -cco:ont00002022 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002020 ; - rdfs:label "Code 93 Barcode"@en ; - skos:definition "A One-Dimensional Barcode that represents 93 ASCII characters and is used in logistics to identify packages in retail inventory, lable electornic components, and provide supplementary delivery information."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002023 -cco:ont00002023 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002020 ; - rdfs:label "ITF Barcode"@en ; - skos:definition "A One-Dimensional Barcode that represents an even number of numerical characters and is used primarily in packaging and distribution."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002024 -cco:ont00002024 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002020 ; - rdfs:label "MSI Plessey Barcode"@en ; - skos:definition "A One-Dimensional Barcode that represents an indefinite number of numerical characters and is used for inventory control and marking storage containers and shelves in warehouse environments."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002025 -cco:ont00002025 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002020 ; - rdfs:label "EAN Barcode"@en ; - skos:definition "A One-Dimensional Barcode that represents 8 or 13 numerical digits and is used to scan consumer goods."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002026 -cco:ont00002026 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002025 ; - rdfs:label "ISSN Barcode"@en ; - skos:definition "An EAN Barcode that is designed to designate a periodical."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002027 -cco:ont00002027 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002025 ; - rdfs:label "JAN-13 Barcode"@en ; - skos:definition "An EAN Barcode that is designed to designate 13 numerical digits and is used primarily in Japan to designate products at the point of sale."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002028 -cco:ont00002028 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002025 ; - rdfs:label "EAN-13 Barcode"@en ; - skos:definition "An EAN Barcode that represents 13 numerical digits and is used to designate products at the point of sale."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002029 -cco:ont00002029 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002025 ; - rdfs:label "EAN-8 Barcode"@en ; - skos:definition "An EAN Barcode that represents 8 numerical digits and is used to designate products at the point of sale."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002030 -cco:ont00002030 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002025 ; - rdfs:label "ISBN Barcode"@en ; - skos:definition "An EAN Barcode that is designed to designate a book."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002031 -cco:ont00002031 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002020 ; - rdfs:comment "Further variants of GS1 DataBar have not been defined here."@en ; - rdfs:label "GS1 DataBar Barcode"@en ; - skos:definition "A One-Dimensional Barcode that represents 12-14 numerical digits and is used in retail and healthcare."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002032 -cco:ont00002032 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002020 ; - rdfs:label "Code 39 Barcode"@en ; - skos:definition "A One-Dimensional Barcode that represents 39 characters that are numbers 0-9, capital letters A-Z, or the symbols -.$/+% and space and is used primarily in automotive and defense industries."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002033 -cco:ont00002033 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002020 ; - rdfs:label "Code 128 Barcode"@en ; - skos:definition "A One-Dimensional Barcode that represents to 128 ASCII characters and is used primarily in supply chains."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002034 -cco:ont00002034 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002020 ; - rdfs:label "UPC Barcode"@en ; - skos:definition "A One-Dimensional Barcode that represents 6 or 12 numerical digits and is used to scan consumer goods."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002035 -cco:ont00002035 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002034 ; - rdfs:label "UPC-A Barcode"@en ; - skos:definition "A UPC Barcode that represents 12 numerical digits."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . - - -### https://www.commoncoreontologies.org/ont00002036 -cco:ont00002036 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002034 ; - rdfs:label "UPC-E Barcode"@en ; - skos:definition "A UPC Barcode that represents 6 numerical digits."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Barcode"@en ; + "A Media Content Entity that represents one or more geometric shapes that have, as part, some Prescriptive Information Content Entity."@en ; + "For information on types of barcodes, see: https://www.scandit.com/types-barcodes-choosing-right-barcode/"@en ; + "https://en.wikipedia.org/w/index.php?title=Barcode&oldid=1059844765"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002037 -cco:ont00002037 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002001 ; - rdfs:label "Information Line"@en ; - skos:definition "A Media Content entity consisting of a single line or row in some Document Content entity of which it is a part."@en ; - skos:example "a line in a computer file that bears a portion of code for some computer program" , - "a line of data in a database" , - "a line of text in a book" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Information Line"@en ; + "A Media Content entity consisting of a single line or row in some Document Content entity of which it is a part."@en ; + "a line in a computer file that bears a portion of code for some computer program" , + "a line of data in a database" , + "a line of text in a book" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002038 -cco:ont00002038 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002001 , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000176 ; - owl:someValuesFrom cco:ont00002039 - ] ; - rdfs:label "Document Field Content"@en ; - skos:altLabel "Document Field"@en ; - skos:definition "A Media Content Entity that is a part of some document content entity, and which prescribes the eliciation of information to be written or selected within the document content entity."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] ; + rdfs:label "Document Field Content"@en ; + "Document Field"@en ; + "A Media Content Entity that is a part of some document content entity, and which prescribes the eliciation of information to be written or selected within the document content entity."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002039 -cco:ont00002039 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002001 ; - rdfs:label "Document Content Entity"@en ; - skos:altLabel "Document"@en ; - skos:definition "A Media Content Entity that consists of a series of paragraphs of text or diagrams that are intended to be carried by physical pieces of paper or an electronic word processor file."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Document&oldid=1057829688"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Document Content Entity"@en ; + "Document"@en ; + "A Media Content Entity that consists of a series of paragraphs of text or diagrams that are intended to be carried by physical pieces of paper or an electronic word processor file."@en ; + "https://en.wikipedia.org/w/index.php?title=Document&oldid=1057829688"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002040 -cco:ont00002040 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002039 ; - rdfs:label "Book"@en ; - skos:definition "A Document Content Entity that canonically appears as ink on paper or parchment, or other materials fastened together to hinge at one side."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Book&oldid=1063132471"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Book"@en ; + "A Document Content Entity that canonically appears as ink on paper or parchment, or other materials fastened together to hinge at one side."@en ; + "https://en.wikipedia.org/w/index.php?title=Book&oldid=1063132471"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002041 -cco:ont00002041 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002039 ; - rdfs:label "Transcript"@en ; - skos:definition "A Document Content Entity that was originally recorded in a different medium."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Transcript&oldid=1038510063"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Transcript"@en ; + "A Document Content Entity that was originally recorded in a different medium."@en ; + "https://en.wikipedia.org/w/index.php?title=Transcript&oldid=1038510063"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002042 -cco:ont00002042 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002039 ; - rdfs:label "Spreadsheet"@en ; - skos:definition "A Document Content Entity that canonically appears as a interactive, tabular form."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Spreadsheet&oldid=1064060503"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Spreadsheet"@en ; + "A Document Content Entity that canonically appears as a interactive, tabular form."@en ; + "https://en.wikipedia.org/w/index.php?title=Spreadsheet&oldid=1064060503"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002043 -cco:ont00002043 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002039 ; - rdfs:label "Report"@en ; - skos:definition "A Document Content entity that conveys an account of some event, situation, or the result of some observation or inquiry."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Report&oldid=1063765657"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Report"@en ; + "A Document Content entity that conveys an account of some event, situation, or the result of some observation or inquiry."@en ; + "https://en.wikipedia.org/w/index.php?title=Report&oldid=1063765657"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002044 -cco:ont00002044 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002039 ; - rdfs:label "Form Document"@en ; - skos:definition "A Document Content Entity that has Document Field Contents as parts."@en ; - cco:ont00001754 "https://en.wikipedia.org/wiki/Form_(document)" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Form Document"@en ; + "A Document Content Entity that has Document Field Contents as parts."@en ; + "https://en.wikipedia.org/wiki/Form_(document)" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002045 -cco:ont00002045 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002039 ; - rdfs:label "Journal Article"@en ; - skos:definition "A Document Content Entity that is part of a Journal Issue."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Academic_journal&oldid=1059723283"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Journal Article"@en ; + "A Document Content Entity that is part of a Journal Issue."@en ; + "https://en.wikipedia.org/w/index.php?title=Academic_journal&oldid=1059723283"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002066 -cco:ont00002066 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000552 ; - rdfs:label "Explosive Mine"@en ; - skos:altLabel "Mine"@en , - "Mine Weapon"@en ; - skos:definition "An Explosive Weapon that is designed to be concealed and to detonate as its target passes near it."@en ; - skos:scopeNote "Being (relatively) stationary is a common but not necessary feature of explosive mines."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Explosive_mine&oldid=1116284461"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Explosive Mine"@en ; + "Mine"@en , + "Mine Weapon"@en ; + "An Explosive Weapon that is designed to be concealed and to detonate as its target passes near it."@en ; + "Being (relatively) stationary is a common but not necessary feature of explosive mines."@en ; + "https://en.wikipedia.org/w/index.php?title=Explosive_mine&oldid=1116284461"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002067 -cco:ont00002067 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00002066 ; - rdfs:label "Explosive Naval Mine"@en ; - skos:altLabel "Naval Mine"@en , - "Sea Mine"@en ; - skos:definition "An Explosive Mine that is designed to be concealed on or under water."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Naval_mine&oldid=1299942380"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Explosive Naval Mine"@en ; + "Naval Mine"@en , + "Sea Mine"@en ; + "An Explosive Mine that is designed to be concealed on or under water."@en ; + "https://en.wikipedia.org/w/index.php?title=Naval_mine&oldid=1299942380"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002068 -cco:ont00002068 rdf:type owl:Class ; - owl:equivalentClass [ owl:intersectionOf ( cco:ont00000995 - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000196 ; - owl:someValuesFrom cco:ont00002069 - ] - ) ; - rdf:type owl:Class - ] ; - rdfs:subClassOf cco:ont00000995 ; - rdfs:label "Display Instrument"@en ; - skos:definition "A Material Artifact that is designed to bear an Image Display Artifact Function."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Display Instrument"@en ; + "A Material Artifact that is designed to bear an Image Display Artifact Function."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00002069 -cco:ont00002069 rdf:type owl:Class ; - rdfs:subClassOf cco:ont00000323 ; - rdfs:label "Image Display Artifact Function"@en ; - skos:definition "An Artifact Function that inheres in Material Artifacts that are designed to display an Image."@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Image Display Artifact Function"@en ; + "An Artifact Function that inheres in Material Artifacts that are designed to display an Image."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00002070 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:altLabel "Email Box Identifier"@en ; + rdfs:label "Email Address"@en ; + "A Designative Name created in order to identify some Email Box as the destination of an email message for the purpose of Email Messaging."@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00002071 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Act of Employment"@en ; + "An Act of Association wherein an Agent assigns a set of activities to some Person to be performed in exchange for financial compensation."@en ; + "https://www.commoncoreontologies.org/EventOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00002073 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sensor Role"@en ; + "A Role that inheres in an entity in virtue of it being used in a process wherein an attribute of its bearer acts as a proxy for some aspect of its sensing environment."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00002074 + rdf:type owl:Class ; + rdfs:subClassOf ; + rdfs:label "Sensor Platform Role"@en ; + "A Role that inheres in an entity in virtue of it being used to support or convey a Sensor during its deployment and functioning."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . + + +### https://www.commoncoreontologies.org/ont00002075 + rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:someValuesFrom [ rdf:type owl:Class ; + owl:unionOf ( + + ) + ] + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf ; + rdfs:label "Sensing Process"@en ; + "A Process that realizes a Sensor Function or Sensor Role."@en ; + "https://www.commoncoreontologies.org/ArtifactOntology"^^xsd:anyURI . ################################################################# @@ -17559,2871 +16640,2871 @@ cco:ont00002069 rdf:type owl:Class ; ################################################################# ### https://www.commoncoreontologies.org/ont00001385 -cco:ont00001385 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Haiti Gourde"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Haiti Gourde"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001386 -cco:ont00001386 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Yemeni Rial"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Yemeni Rial"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001387 -cco:ont00001387 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Mauritania Ouguiya"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mauritania Ouguiya"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001388 -cco:ont00001388 rdf:type owl:NamedIndividual , - cco:ont00000707 ; - rdfs:label "Minute of Arc Measurement Unit"@en ; - skos:altLabel "Arcminute"@en , - "MOA"@en , - "am"@en , - "amin"@en , - "arcmin"@en ; - cco:ont00001740 "'" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Minute of Arc Measurement Unit"@en ; + "Arcminute"@en , + "MOA"@en , + "am"@en , + "amin"@en , + "arcmin"@en ; + "'" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001389 -cco:ont00001389 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Kenyan Shilling"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kenyan Shilling"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001390 -cco:ont00001390 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Slug Measurement Unit"@en ; - skos:altLabel "slug"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Slug Measurement Unit"@en ; + "slug"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001391 -cco:ont00001391 rdf:type owl:NamedIndividual , - cco:ont00000229 , - cco:ont00000444 , - cco:ont00000852 ; - rdfs:label "Erg Measurement Unit"@en ; - skos:altLabel "erg"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + , + , + ; + rdfs:label "Erg Measurement Unit"@en ; + "erg"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001392 -cco:ont00001392 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-8"@en ; - skos:altLabel "PST"@en , - "Pacific Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-8"@en ; + "PST"@en , + "Pacific Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001393 -cco:ont00001393 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Tablespoon Measurement Unit"@en ; - cco:ont00001753 "T" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tablespoon Measurement Unit"@en ; + "T" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001394 -cco:ont00001394 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Papua New Guinea Kina"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Papua New Guinea Kina"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001395 -cco:ont00001395 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-3:30"@en ; - skos:altLabel "Newfoundland Standard Time"@en ; - cco:ont00001753 "NST" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-3:30"@en ; + "Newfoundland Standard Time"@en ; + "NST" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001396 -cco:ont00001396 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Viet Nam Dong"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Viet Nam Dong"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001397 -cco:ont00001397 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Centimeter Measurement Unit"@en ; - skos:altLabel "cm"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Centimeter Measurement Unit"@en ; + "cm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001398 -cco:ont00001398 rdf:type owl:NamedIndividual , - cco:ont00000469 ; - rdfs:label "Global Area Reference System"@en ; - cco:ont00001753 "GARS" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Global Area Reference System"@en ; + "GARS" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001399 -cco:ont00001399 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Ghana Cedi"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Ghana Cedi"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001400 -cco:ont00001400 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Sri Lanka Rupee"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sri Lanka Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001401 -cco:ont00001401 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "South Africa Rand"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "South Africa Rand"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001402 -cco:ont00001402 rdf:type owl:NamedIndividual , - cco:ont00000770 ; - rdfs:label "Kilogram Per Liter Measurement Unit"@en ; - cco:ont00001740 "kg/L" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Per Liter Measurement Unit"@en ; + "kg/L" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001403 -cco:ont00001403 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+2"@en ; - rdfs:label "Bravo Time Zone"@en ; - cco:ont00001753 "B" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bravo Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+2"@en ; + "B" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001404 -cco:ont00001404 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Afghanistan Afghani"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Afghanistan Afghani"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001405 -cco:ont00001405 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-2"@en ; - skos:altLabel "BET"@en , - "Brazil Eastern Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-2"@en ; + "BET"@en , + "Brazil Eastern Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001406 -cco:ont00001406 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+9:30"@en ; - skos:altLabel "Australian Central Standard Time"@en ; - cco:ont00001753 "ACST" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+9:30"@en ; + "Australian Central Standard Time"@en ; + "ACST" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001407 -cco:ont00001407 rdf:type owl:NamedIndividual , - cco:ont00000229 ; - rdfs:label "Shaft Horsepower Measurement Unit"@en ; - skos:altLabel "shp"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Shaft Horsepower Measurement Unit"@en ; + "shp"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001408 -cco:ont00001408 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-11"@en ; - rdfs:label "X-ray Time Zone"@en ; - cco:ont00001753 "X" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "X-ray Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-11"@en ; + "X" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001409 -cco:ont00001409 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Singapore Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Singapore Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001410 -cco:ont00001410 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Guyana Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Guyana Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001411 -cco:ont00001411 rdf:type owl:NamedIndividual , - cco:ont00000497 ; - rdfs:label "Pound Force Measurement Unit"@en ; - skos:altLabel "lbf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound Force Measurement Unit"@en ; + "lbf"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001412 -cco:ont00001412 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+0"@en ; - rdfs:label "GMT"@en ; - skos:altLabel "Greenwich Mean Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT"@en ; + "Greenwich Mean Time"@en ; + "Offset from Universal Coordinated Time = UTC+0"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001413 -cco:ont00001413 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Milligram Measurement Unit"@en ; - skos:altLabel "mg"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Milligram Measurement Unit"@en ; + "mg"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001414 -cco:ont00001414 rdf:type owl:NamedIndividual , - cco:ont00001328 ; - rdfs:comment "TT is an astronomical time standard that is a theoretical ideal designed to be free of the irregularities in Earth's rotation and is primarily used for time measurements of astronomical observations made from the surface of Earth. It was formerly called Terrestrial Dynamical Time (TDT), which was formulated to replace Ephemeris Time (ET)."@en ; - rdfs:label "Terrestrial Time"@en ; - cco:ont00001753 "TT" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Terrestrial Time"@en ; + "TT is an astronomical time standard that is a theoretical ideal designed to be free of the irregularities in Earth's rotation and is primarily used for time measurements of astronomical observations made from the surface of Earth. It was formerly called Terrestrial Dynamical Time (TDT), which was formulated to replace Ephemeris Time (ET)."@en ; + "TT" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001415 -cco:ont00001415 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Swiss Franc"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Swiss Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001416 -cco:ont00001416 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Cubic Centimeter Measurement Unit"@en ; - skos:altLabel "cm^3"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Centimeter Measurement Unit"@en ; + "cm^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001417 -cco:ont00001417 rdf:type owl:NamedIndividual , - cco:ont00001328 ; - rdfs:comment "ET is an astronomical time scale that was adopted as a standard in 1952 by the IAU but has since been superseded and is no longer actively used. ET is based on the ephemeris second, which was defined as a fraction of the tropical year for 1900 January 01 as calculated using Newcomb's 1895 tables of the Sun. ET was designed to avoid problems caused by variations in Earth's rotational period and was used for Solar System ephemeris calculations until being replaced by Terrestrial Dynamical Time (TDT) in 1979."@en ; - rdfs:label "Ephemeris Time"@en ; - cco:ont00001753 "ET" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Ephemeris Time"@en ; + "ET is an astronomical time scale that was adopted as a standard in 1952 by the IAU but has since been superseded and is no longer actively used. ET is based on the ephemeris second, which was defined as a fraction of the tropical year for 1900 January 01 as calculated using Newcomb's 1895 tables of the Sun. ET was designed to avoid problems caused by variations in Earth's rotational period and was used for Solar System ephemeris calculations until being replaced by Terrestrial Dynamical Time (TDT) in 1979."@en ; + "ET" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001418 -cco:ont00001418 rdf:type owl:NamedIndividual , - cco:ont00000140 ; - rdfs:label "Kilogram-Mole Measurement Unit"@en ; - skos:altLabel "kg-mol"@en , - "kilogram-mole"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram-Mole Measurement Unit"@en ; + "kg-mol"@en , + "kilogram-mole"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001419 -cco:ont00001419 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+5"@en ; - skos:altLabel "PLT"@en , - "Pakistan Lahore Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+5"@en ; + "PLT"@en , + "Pakistan Lahore Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001420 -cco:ont00001420 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Dominican Peso"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Dominican Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001421 -cco:ont00001421 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-6"@en ; - rdfs:label "Sierra Time Zone"@en ; - cco:ont00001753 "S" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sierra Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-6"@en ; + "S" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001422 -cco:ont00001422 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Quart Measurement Unit"@en ; - cco:ont00001753 "qt" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Quart Measurement Unit"@en ; + "qt" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001423 -cco:ont00001423 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Deciliter Measurement Unit"@en ; - skos:altLabel "dL"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Deciliter Measurement Unit"@en ; + "dL"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001424 -cco:ont00001424 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+1"@en ; - rdfs:label "Alpha Time Zone"@en ; - cco:ont00001753 "A" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Alpha Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+1"@en ; + "A" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001425 -cco:ont00001425 rdf:type owl:NamedIndividual , - cco:ont00000969 ; - rdfs:label "Miles Per Second Measurement Unit"@en ; - skos:altLabel "mi/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Miles Per Second Measurement Unit"@en ; + "mi/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001426 -cco:ont00001426 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Chinese Renminbi"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Chinese Renminbi"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001427 -cco:ont00001427 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Canadian Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Canadian Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001428 -cco:ont00001428 rdf:type owl:NamedIndividual , - cco:ont00000969 ; - rdfs:label "Kilometers Per Hour Measurement Unit"@en ; - skos:altLabel "km/h"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilometers Per Hour Measurement Unit"@en ; + "km/h"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001429 -cco:ont00001429 rdf:type owl:NamedIndividual , - cco:ont00000140 ; - rdfs:label "Gram-Mole Measurement Unit"@en ; - skos:altLabel "g-mol"@en , - "gram-mole"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gram-Mole Measurement Unit"@en ; + "g-mol"@en , + "gram-mole"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001430 -cco:ont00001430 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+6"@en ; - rdfs:label "Foxtrot Time Zone"@en ; - cco:ont00001753 "F" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Foxtrot Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+6"@en ; + "F" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001431 -cco:ont00001431 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-10"@en ; - rdfs:label "Whiskey Time Zone"@en ; - cco:ont00001753 "W" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Whiskey Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-10"@en ; + "W" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001432 -cco:ont00001432 rdf:type owl:NamedIndividual , - cco:ont00001090 ; - rdfs:label "Kilogram Force Per Centimeter Square Measurement Unit"@en ; - skos:altLabel "Kilogram Per Square Centimeter Measurement Unit"@en , - "Kilopond Per Centimeter Square Measurement Unit"@en ; - cco:ont00001753 "kg/cm^2" , - "kgf/cm^2" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Force Per Centimeter Square Measurement Unit"@en ; + "Kilogram Per Square Centimeter Measurement Unit"@en , + "Kilopond Per Centimeter Square Measurement Unit"@en ; + "kg/cm^2" , + "kgf/cm^2" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001433 -cco:ont00001433 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Mile Measurement Unit"@en ; - skos:altLabel "mi"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mile Measurement Unit"@en ; + "mi"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001434 -cco:ont00001434 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+1"@en ; - skos:altLabel "ECT"@en , - "European Central Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+1"@en ; + "ECT"@en , + "European Central Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001435 -cco:ont00001435 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Colombian Peso"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Colombian Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001436 -cco:ont00001436 rdf:type owl:NamedIndividual , - cco:ont00000630 ; - rdfs:label "Universal Time 1 D"@en ; - cco:ont00001753 "UT1D" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Time 1 D"@en ; + "UT1D" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001437 -cco:ont00001437 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Liter Measurement Unit"@en ; - skos:altLabel "Litre"@en ; - cco:ont00001740 "L" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Liter Measurement Unit"@en ; + "Litre"@en ; + "L" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001438 -cco:ont00001438 rdf:type owl:NamedIndividual , - cco:ont00000217 ; - rdfs:label "Square Yard Measurement Unit"@en ; - skos:altLabel "yd^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Yard Measurement Unit"@en ; + "yd^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001439 -cco:ont00001439 rdf:type owl:NamedIndividual , - cco:ont00000263 ; - rdfs:label "Twenty-Four-Hour Clock Time System"@en ; - skos:altLabel "24-Hour Clock"@en , - "24-Hour Clock Time System"@en , - "Military Time"@en , - "Military Time System"@en , - "Twenty-Four Hour Clock Time System"@en , - "Twenty-Four-Hour Clock"@en ; - skos:definition "A Clock Time System for time keeping in which the Day runs from midnight to midnight and is divided into 24 Hours, indicated by the Hours passed since midnight, from 0 to 23."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=24-hour_clock&oldid=1063744105"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Twenty-Four-Hour Clock Time System"@en ; + "24-Hour Clock"@en , + "24-Hour Clock Time System"@en , + "Military Time"@en , + "Military Time System"@en , + "Twenty-Four Hour Clock Time System"@en , + "Twenty-Four-Hour Clock"@en ; + "A Clock Time System for time keeping in which the Day runs from midnight to midnight and is divided into 24 Hours, indicated by the Hours passed since midnight, from 0 to 23."@en ; + "https://en.wikipedia.org/w/index.php?title=24-hour_clock&oldid=1063744105"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001440 -cco:ont00001440 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-9"@en ; - skos:altLabel "AST"@en , - "Alaska Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-9"@en ; + "AST"@en , + "Alaska Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001441 -cco:ont00001441 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Rwanda Franc"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Rwanda Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001442 -cco:ont00001442 rdf:type owl:NamedIndividual , - cco:ont00001357 ; - rdfs:label "Week Measurement Unit"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Week Measurement Unit"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001443 -cco:ont00001443 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Albania Lek"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Albania Lek"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001444 -cco:ont00001444 rdf:type owl:NamedIndividual , - cco:ont00001357 ; - rdfs:label "Year Measurement Unit"@en ; - skos:altLabel "yr"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Year Measurement Unit"@en ; + "yr"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001445 -cco:ont00001445 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Centiliter Measurement Unit"@en ; - skos:altLabel "cL"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Centiliter Measurement Unit"@en ; + "cL"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001446 -cco:ont00001446 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Mike Time Zone is the same local time as Yankee Time Zone, but is 1 Day (i.e. 24 Hours) ahead of Yankee Time Zone as they are on opposite sides of the International Date Line."@en , - "Offset from Universal Coordinated Time = UTC+12"@en ; - rdfs:label "Mike Time Zone"@en ; - cco:ont00001753 "M" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mike Time Zone"@en ; + "Mike Time Zone is the same local time as Yankee Time Zone, but is 1 Day (i.e. 24 Hours) ahead of Yankee Time Zone as they are on opposite sides of the International Date Line."@en , + "Offset from Universal Coordinated Time = UTC+12"@en ; + "M" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001447 -cco:ont00001447 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "CFP Franc"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "CFP Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001448 -cco:ont00001448 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Malawi Kwacha"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Malawi Kwacha"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001449 -cco:ont00001449 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Czech Koruna"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Czech Koruna"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001450 -cco:ont00001450 rdf:type owl:NamedIndividual , - cco:ont00001004 ; - rdfs:label "Volt Measurement Unit"@en ; - skos:altLabel "V"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Volt Measurement Unit"@en ; + "V"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001451 -cco:ont00001451 rdf:type owl:NamedIndividual , - cco:ont00001004 ; - rdfs:label "Milliampere Measurement Unit"@en ; - skos:altLabel "mA"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Milliampere Measurement Unit"@en ; + "mA"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001452 -cco:ont00001452 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Indian Rupee"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Indian Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001453 -cco:ont00001453 rdf:type owl:NamedIndividual , - cco:ont00000707 ; - rdfs:label "Binary Degree Measurement Unit"@en ; - skos:altLabel "Binary Radian"@en , - "Brad"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Binary Degree Measurement Unit"@en ; + "Binary Radian"@en , + "Brad"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001454 -cco:ont00001454 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+11"@en ; - rdfs:label "Lima Time Zone"@en ; - cco:ont00001753 "L" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Lima Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+11"@en ; + "L" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001455 -cco:ont00001455 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Bolivia Boliviano"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bolivia Boliviano"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001456 -cco:ont00001456 rdf:type owl:NamedIndividual , - cco:ont00000217 ; - rdfs:label "Square Mile Measurement Unit"@en ; - skos:altLabel "mi^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Mile Measurement Unit"@en ; + "mi^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001457 -cco:ont00001457 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-4"@en ; - rdfs:label "Quebec Time Zone"@en ; - cco:ont00001753 "Q" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Quebec Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-4"@en ; + "Q" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001458 -cco:ont00001458 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Costa Rica Colon"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Costa Rica Colon"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001459 -cco:ont00001459 rdf:type owl:NamedIndividual , - cco:ont00001307 ; - rdfs:label "Pound Per Second Measurement Unit"@en ; - skos:altLabel "lb/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound Per Second Measurement Unit"@en ; + "lb/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001460 -cco:ont00001460 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Mauritius Rupee"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mauritius Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001461 -cco:ont00001461 rdf:type owl:NamedIndividual , - cco:ont00001328 ; - rdfs:comment "TDB is a linear scaling of Barycentric Coordinate Time (TCB) and is a relativistic coordinate time scale used in astronomy as a time standard that accounts for time dilation when calculating Orbits and Ephemerides of Astronomical Bodies and interplanetary Spacecraft in the Solar System. TDB is a successor of Ephemeris Time (ET) and is nearly equivalent to the time scale Teph used for DE405 planetary and lunar ephemerides generated by the Jet Propulsion Laboratory."@en ; - rdfs:label "Barycentric Dynamical Time"@en ; - cco:ont00001753 "TDB" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Barycentric Dynamical Time"@en ; + "TDB is a linear scaling of Barycentric Coordinate Time (TCB) and is a relativistic coordinate time scale used in astronomy as a time standard that accounts for time dilation when calculating Orbits and Ephemerides of Astronomical Bodies and interplanetary Spacecraft in the Solar System. TDB is a successor of Ephemeris Time (ET) and is nearly equivalent to the time scale Teph used for DE405 planetary and lunar ephemerides generated by the Jet Propulsion Laboratory."@en ; + "TDB" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001462 -cco:ont00001462 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Twenty Foot Equivalent Unit"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Twenty Foot Equivalent Unit"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001463 -cco:ont00001463 rdf:type owl:NamedIndividual , - cco:ont00000140 ; - rdfs:label "Kilomole Measurement Unit"@en ; - skos:altLabel "kilomole"@en , - "kmol"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilomole Measurement Unit"@en ; + "kilomole"@en , + "kmol"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001464 -cco:ont00001464 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Uzbekistan Sum"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Uzbekistan Sum"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001465 -cco:ont00001465 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Namibia Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Namibia Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001466 -cco:ont00001466 rdf:type owl:NamedIndividual , - cco:ont00000959 ; - rdfs:label "Revolutions Per Day Measurement Unit"@en ; - skos:altLabel "r/day"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Revolutions Per Day Measurement Unit"@en ; + "r/day"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001467 -cco:ont00001467 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-4"@en ; - skos:altLabel "PRT"@en , - "Puerto Rico and US Virgin Islands Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-4"@en ; + "PRT"@en , + "Puerto Rico and US Virgin Islands Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001468 -cco:ont00001468 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+10"@en ; - skos:altLabel "AET"@en , - "Australia Eastern Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+10"@en ; + "AET"@en , + "Australia Eastern Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001469 -cco:ont00001469 rdf:type owl:NamedIndividual , - cco:ont00000969 ; - rdfs:label "Kilometers Per Second Measurement Unit"@en ; - skos:altLabel "km/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilometers Per Second Measurement Unit"@en ; + "km/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001470 -cco:ont00001470 rdf:type owl:NamedIndividual , - cco:ont00000959 ; - rdfs:label "Megahertz Measurement Unit"@en ; - skos:altLabel "MHz"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Megahertz Measurement Unit"@en ; + "MHz"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001471 -cco:ont00001471 rdf:type owl:NamedIndividual , - cco:ont00000217 ; - rdfs:label "Square Centimeter Measurement Unit"@en ; - skos:altLabel "cm^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Centimeter Measurement Unit"@en ; + "cm^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001472 -cco:ont00001472 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Cubic Millimeter Measurement Unit"@en ; - skos:altLabel "mm^3"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Millimeter Measurement Unit"@en ; + "mm^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001473 -cco:ont00001473 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Euro"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Euro"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001474 -cco:ont00001474 rdf:type owl:NamedIndividual , - cco:ont00001090 ; - rdfs:label "Atmosphere Measurement Unit"@en ; - skos:altLabel "atm"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Atmosphere Measurement Unit"@en ; + "atm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001475 -cco:ont00001475 rdf:type owl:NamedIndividual , - cco:ont00000959 ; - rdfs:label "Kilohertz Measurement Unit"@en ; - skos:altLabel "kHz"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilohertz Measurement Unit"@en ; + "kHz"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001476 -cco:ont00001476 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+4"@en ; - skos:altLabel "NET"@en , - "Near East Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+4"@en ; + "NET"@en , + "Near East Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001477 -cco:ont00001477 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Kilogram Measurement Unit"@en ; - cco:ont00001738 "kilogram" ; - cco:ont00001740 "kg" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Measurement Unit"@en ; + "kilogram" ; + "kg" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001478 -cco:ont00001478 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Angstrom Measurement Unit"@en ; - skos:altLabel "Angstrom"@en , - "Å"@en , - "Ångström"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Angstrom Measurement Unit"@en ; + "Angstrom"@en , + "Å"@en , + "Ångström"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001479 -cco:ont00001479 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Angolan Kwanza"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Angolan Kwanza"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001480 -cco:ont00001480 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+9"@en ; - rdfs:label "India Time Zone"@en ; - cco:ont00001753 "I" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "India Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+9"@en ; + "I" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001481 -cco:ont00001481 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Macao Pataca"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Macao Pataca"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001482 -cco:ont00001482 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Algerian Dinar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Algerian Dinar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001483 -cco:ont00001483 rdf:type owl:NamedIndividual , - cco:ont00000140 ; - rdfs:comment "One mole contains exactly 6.02214076×10^23 elementary entities."@en ; - rdfs:label "Mole Measurement Unit"@en ; - cco:ont00001738 "mole" ; - cco:ont00001740 "mol" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mole Measurement Unit"@en ; + "One mole contains exactly 6.02214076×10^23 elementary entities."@en ; + "mole" ; + "mol" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001484 -cco:ont00001484 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Bangladesh Taka"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bangladesh Taka"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001485 -cco:ont00001485 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Surinamese Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Surinamese Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001486 -cco:ont00001486 rdf:type owl:NamedIndividual , - cco:ont00000217 ; - rdfs:label "Square Kilometer Measurement Unit"@en ; - skos:altLabel "km^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Kilometer Measurement Unit"@en ; + "km^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001487 -cco:ont00001487 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Peru Nuevo Sol"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Peru Nuevo Sol"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001488 -cco:ont00001488 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-7"@en ; - rdfs:label "Tango Time Zone"@en ; - cco:ont00001753 "T" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tango Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-7"@en ; + "T" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001489 -cco:ont00001489 rdf:type owl:NamedIndividual , - cco:ont00000707 ; - rdfs:label "Radian Measurement Unit"@en ; - cco:ont00001738 "radian" ; - cco:ont00001740 "rad" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Radian Measurement Unit"@en ; + "radian" ; + "rad" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001490 -cco:ont00001490 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Bulgarian Lev"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bulgarian Lev"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001491 -cco:ont00001491 rdf:type owl:NamedIndividual , - cco:ont00000630 ; - rdfs:label "Universal Time 1 A"@en ; - cco:ont00001753 "UT1A" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Time 1 A"@en ; + "UT1A" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001492 -cco:ont00001492 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Lebanese Pound"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Lebanese Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001493 -cco:ont00001493 rdf:type owl:NamedIndividual , - cco:ont00000497 ; - rdfs:label "Kilonewton Measurement Unit"@en ; - skos:altLabel "kN"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilonewton Measurement Unit"@en ; + "kN"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001494 -cco:ont00001494 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Yard Measurement Unit"@en ; - skos:altLabel "yrd"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Yard Measurement Unit"@en ; + "yrd"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001495 -cco:ont00001495 rdf:type owl:NamedIndividual , - cco:ont00000198 ; - rdfs:label "Sone Measurement Unit"@en ; - skos:altLabel "sone"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sone Measurement Unit"@en ; + "sone"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001496 -cco:ont00001496 rdf:type owl:NamedIndividual , - cco:ont00000217 ; - rdfs:label "Square Meter Measurement Unit"@en ; - skos:altLabel "m^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Meter Measurement Unit"@en ; + "m^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001497 -cco:ont00001497 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Kuwaiti Dinar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kuwaiti Dinar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001498 -cco:ont00001498 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Fiji Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Fiji Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001499 -cco:ont00001499 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Kiloliter Measurement Unit"@en ; - skos:altLabel "kL"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kiloliter Measurement Unit"@en ; + "kL"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001500 -cco:ont00001500 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+5"@en ; - rdfs:label "Echo Time Zone"@en ; - cco:ont00001753 "E" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Echo Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+5"@en ; + "E" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001501 -cco:ont00001501 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Tanzania Shilling"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tanzania Shilling"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001502 -cco:ont00001502 rdf:type owl:NamedIndividual , - cco:ont00000229 ; - dcterms:contributor "Donna Jones" , - "Olivia Hobai" ; - rdfs:label "Decibel Isotropic Measurement Unit"@en ; - skos:altLabel "Decibels Over Isotropic" , - "Decibels Over Isotropic Antenna" , - "Decibels Relative to Isotrope" , - "Decibels Relative to Isotropic Radiator" , - "Decibels Relative to an Isotropic Reference Antenna" ; - cco:ont00001740 "dBi" ; - cco:ont00001754 "https://shopdelta.eu/dbi-power-gain-of-isotropic-antenna_l2_aid836.html"^^xsd:anyURI , - "https://www.techtarget.com/whatis/definition/decibels-relative-to-isotropic-radiator-dBi"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + "Donna Jones" , + "Olivia Hobai" ; + rdfs:label "Decibel Isotropic Measurement Unit"@en ; + "Decibels Over Isotropic" , + "Decibels Over Isotropic Antenna" , + "Decibels Relative to Isotrope" , + "Decibels Relative to Isotropic Radiator" , + "Decibels Relative to an Isotropic Reference Antenna" ; + "dBi" ; + "https://shopdelta.eu/dbi-power-gain-of-isotropic-antenna_l2_aid836.html"^^xsd:anyURI , + "https://www.techtarget.com/whatis/definition/decibels-relative-to-isotropic-radiator-dBi"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001503 -cco:ont00001503 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Hungary Forint"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Hungary Forint"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001504 -cco:ont00001504 rdf:type owl:NamedIndividual , - cco:ont00000659 ; - rdfs:label "Newton Meter Measurement Unit"@en ; - cco:ont00001740 "N-m" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Newton Meter Measurement Unit"@en ; + "N-m" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001505 -cco:ont00001505 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Uruguay Peso"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Uruguay Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001506 -cco:ont00001506 rdf:type owl:NamedIndividual , - cco:ont00000630 ; - rdfs:label "Universal Time 1 F"@en ; - cco:ont00001753 "UT1F" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Time 1 F"@en ; + "UT1F" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001507 -cco:ont00001507 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Lesotho Loti"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Lesotho Loti"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001508 -cco:ont00001508 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Brunei Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Brunei Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001509 -cco:ont00001509 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Belarussian Ruble"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Belarussian Ruble"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001510 -cco:ont00001510 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Tonga Pa anga"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tonga Pa anga"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001511 -cco:ont00001511 rdf:type owl:NamedIndividual , - cco:ont00000969 ; - rdfs:label "Meters Per Second Measurement Unit"@en ; - skos:altLabel "m/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Meters Per Second Measurement Unit"@en ; + "m/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001512 -cco:ont00001512 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "South Sudanese Pound"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "South Sudanese Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001513 -cco:ont00001513 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Mexican Peso"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mexican Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001514 -cco:ont00001514 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Laos Kip"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Laos Kip"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001515 -cco:ont00001515 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Liberian Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Liberian Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001516 -cco:ont00001516 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-2"@en ; - rdfs:label "Oscar Time Zone"@en ; - cco:ont00001753 "O" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Oscar Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-2"@en ; + "O" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001517 -cco:ont00001517 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Nicaragua Cordoba Oro"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Nicaragua Cordoba Oro"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001518 -cco:ont00001518 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Madagascar Malagasy Ariary"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Madagascar Malagasy Ariary"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001519 -cco:ont00001519 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Turkish Lira"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Turkish Lira"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001520 -cco:ont00001520 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Zambia Kwacha"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Zambia Kwacha"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001521 -cco:ont00001521 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Philippine Peso"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Philippine Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001522 -cco:ont00001522 rdf:type owl:NamedIndividual , - cco:ont00000217 ; - rdfs:label "Square Foot Measurement Unit"@en ; - skos:altLabel "ft^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Foot Measurement Unit"@en ; + "ft^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001523 -cco:ont00001523 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Pint Measurement Unit"@en ; - skos:altLabel "pt"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pint Measurement Unit"@en ; + "pt"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001524 -cco:ont00001524 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-11"@en ; - skos:altLabel "MIT"@en , - "Midway Islands Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-11"@en ; + "MIT"@en , + "Midway Islands Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001525 -cco:ont00001525 rdf:type owl:NamedIndividual , - cco:ont00000497 ; - rdfs:label "Newton Measurement Unit"@en ; - cco:ont00001738 "newton" ; - cco:ont00001740 "N" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Newton Measurement Unit"@en ; + "newton" ; + "N" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001526 -cco:ont00001526 rdf:type owl:NamedIndividual , - cco:ont00000969 ; - rdfs:label "Mach Measurement Unit"@en ; - skos:altLabel "M"@en , - "Ma"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mach Measurement Unit"@en ; + "M"@en , + "Ma"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001527 -cco:ont00001527 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+8"@en ; - rdfs:label "Hotel Time Zone"@en ; - cco:ont00001753 "H" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Hotel Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+8"@en ; + "H" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001528 -cco:ont00001528 rdf:type owl:NamedIndividual , - cco:ont00000940 ; - rdfs:label "Kilogram Meter Per Second Measurement Unit"@en ; - skos:altLabel "kg m/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Meter Per Second Measurement Unit"@en ; + "kg m/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001529 -cco:ont00001529 rdf:type owl:NamedIndividual , - cco:ont00001328 ; - rdfs:comment """\"TCG is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to precession, nutation, the Moon, and artificial satellites of the Earth. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the center of the Earth: that is, a clock that performs exactly the same movements as the Earth but is outside the Earth's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Earth.\" + rdf:type owl:NamedIndividual , + ; + rdfs:label "Geocentric Coordinate Time"@en ; + """\"TCG is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to precession, nutation, the Moon, and artificial satellites of the Earth. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the center of the Earth: that is, a clock that performs exactly the same movements as the Earth but is outside the Earth's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Earth.\" From: (https://en.wikipedia.org/wiki/Geocentric_Coordinate_Time)"""@en ; - rdfs:label "Geocentric Coordinate Time"@en ; - cco:ont00001753 "TCG" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + "TCG" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001530 -cco:ont00001530 rdf:type owl:NamedIndividual , - cco:ont00000374 ; - rdfs:label "Cubic Meter Per Second Measurement Unit"@en ; - cco:ont00001740 "m^3/s" ; - cco:ont00001753 "cumec" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Meter Per Second Measurement Unit"@en ; + "m^3/s" ; + "cumec" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001531 -cco:ont00001531 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Botswana Pula"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Botswana Pula"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001532 -cco:ont00001532 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Egyptian Pound"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Egyptian Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001533 -cco:ont00001533 rdf:type owl:NamedIndividual , - cco:ont00001357 ; - rdfs:label "Hour Measurement Unit"@en ; - skos:altLabel "hr"@en ; - cco:ont00001740 "h" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Hour Measurement Unit"@en ; + "hr"@en ; + "h" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001534 -cco:ont00001534 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+7"@en ; - skos:altLabel "VST"@en , - "Vietnam Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+7"@en ; + "VST"@en , + "Vietnam Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001535 -cco:ont00001535 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Sudanese Pound"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sudanese Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001536 -cco:ont00001536 rdf:type owl:NamedIndividual , - cco:ont00001357 ; - rdfs:label "Second Measurement Unit"@en ; - cco:ont00001738 "second" ; - cco:ont00001740 "s" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Second Measurement Unit"@en ; + "second" ; + "s" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001537 -cco:ont00001537 rdf:type owl:NamedIndividual , - cco:ont00000067 , - cco:ont00000630 ; - rdfs:comment "UTC is a variant of Universal Time that is calculated by combining Universal Time 1 with International Atomic Time by occasionally adding leap seconds to TAI in order to maintain UTC within 0.9 seconds of UT1. The difference between UTC and UT1 is called DUT1 and always has a value between -0.9 seconds and +0.9 seconds. Coordinated Universal Time is the current basis for civil time and is the reference time for time zones, whose local times are defined based on an offset from UTC."@en ; - rdfs:label "Coordinated Universal Time"@en ; - cco:ont00001753 "UTC" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + , + ; + rdfs:label "Coordinated Universal Time"@en ; + "UTC is a variant of Universal Time that is calculated by combining Universal Time 1 with International Atomic Time by occasionally adding leap seconds to TAI in order to maintain UTC within 0.9 seconds of UT1. The difference between UTC and UT1 is called DUT1 and always has a value between -0.9 seconds and +0.9 seconds. Coordinated Universal Time is the current basis for civil time and is the reference time for time zones, whose local times are defined based on an offset from UTC."@en ; + "UTC" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001538 -cco:ont00001538 rdf:type owl:NamedIndividual , - cco:ont00000074 ; - rdfs:label "Meters Per Second Per Second Measurement Unit"@en ; - skos:altLabel "m/s/s"@en , - "m/s^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Meters Per Second Per Second Measurement Unit"@en ; + "m/s/s"@en , + "m/s^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001539 -cco:ont00001539 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Tajikistan Somoni"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tajikistan Somoni"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001540 -cco:ont00001540 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Israel Shekel"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Israel Shekel"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001541 -cco:ont00001541 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+12"@en ; - skos:altLabel "NST"@en , - "New Zealand Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+12"@en ; + "NST"@en , + "New Zealand Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001542 -cco:ont00001542 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Paraguay Guarani"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Paraguay Guarani"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001543 -cco:ont00001543 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Decimeter Measurement Unit"@en ; - skos:altLabel "dm"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Decimeter Measurement Unit"@en ; + "dm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001544 -cco:ont00001544 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Short Ton Measurement Unit"@en ; - skos:altLabel "Net Ton"@en , - "ton (US)"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Short Ton Measurement Unit"@en ; + "Net Ton"@en , + "ton (US)"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001545 -cco:ont00001545 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Swaziland Lilangeni"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Swaziland Lilangeni"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001546 -cco:ont00001546 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Democratic Republic Of Congo Franc"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Democratic Republic Of Congo Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001547 -cco:ont00001547 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Syrian Pound"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Syrian Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001548 -cco:ont00001548 rdf:type owl:NamedIndividual , - cco:ont00000630 ; - rdfs:comment "UT1R is a variant of Universal Time that is a smoothed version of UT1 by filtering out periodic variations due to tidal waves."@en ; - rdfs:label "Universal Time 1 R"@en ; - cco:ont00001753 "UT1R" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Time 1 R"@en ; + "UT1R is a variant of Universal Time that is a smoothed version of UT1 by filtering out periodic variations due to tidal waves."@en ; + "UT1R" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001549 -cco:ont00001549 rdf:type owl:NamedIndividual , - cco:ont00000497 ; - rdfs:label "Dyne Measurement Unit"@en ; - skos:altLabel "dyn"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Dyne Measurement Unit"@en ; + "dyn"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001550 -cco:ont00001550 rdf:type owl:NamedIndividual , - cco:ont00000276 ; - rdfs:comment "The Julian Calendar was proposed by Julius Caesar as a reform of the Roman Calendar, took effect on 1 January 46 BC, and was the predominant Calendar System in Europe until being largely replaced by the Gregorian Calendar."@en ; - rdfs:label "Julian Calendar"@en ; - skos:definition "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years such that the average length of a Julian Year is 365.25 Days."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Julian_calendar&oldid=1063127575"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Julian Calendar"@en ; + "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years such that the average length of a Julian Year is 365.25 Days."@en ; + "The Julian Calendar was proposed by Julius Caesar as a reform of the Roman Calendar, took effect on 1 January 46 BC, and was the predominant Calendar System in Europe until being largely replaced by the Gregorian Calendar."@en ; + "https://en.wikipedia.org/w/index.php?title=Julian_calendar&oldid=1063127575"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001551 -cco:ont00001551 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Cubic Foot Measurement Unit"@en ; - skos:altLabel "ft^3"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Foot Measurement Unit"@en ; + "ft^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001552 -cco:ont00001552 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Gram Measurement Unit"@en ; - skos:altLabel "g"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gram Measurement Unit"@en ; + "g"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001553 -cco:ont00001553 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+6"@en ; - skos:altLabel "BST"@en , - "Bangladesh Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+6"@en ; + "BST"@en , + "Bangladesh Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001554 -cco:ont00001554 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-10"@en ; - skos:altLabel "HST"@en , - "Hawaii Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-10"@en ; + "HST"@en , + "Hawaii Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001555 -cco:ont00001555 rdf:type owl:NamedIndividual , - cco:ont00000659 ; - rdfs:label "Pound Foot Measurement Unit"@en ; - cco:ont00001753 "lb ft" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound Foot Measurement Unit"@en ; + "lb ft" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001556 -cco:ont00001556 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Samoa Tala"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Samoa Tala"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001557 -cco:ont00001557 rdf:type owl:NamedIndividual , - cco:ont00000527 ; - rdfs:label "Pound Foot Second Square Measurement Unit"@en ; - cco:ont00001753 "lb ft s^2" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound Foot Second Square Measurement Unit"@en ; + "lb ft s^2" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001558 -cco:ont00001558 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "New Zealand Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "New Zealand Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001559 -cco:ont00001559 rdf:type owl:NamedIndividual , - cco:ont00001090 ; - rdfs:label "Pascal Measurement Unit"@en ; - cco:ont00001738 "pascal" ; - cco:ont00001740 "Pa" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pascal Measurement Unit"@en ; + "pascal" ; + "Pa" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001560 -cco:ont00001560 rdf:type owl:NamedIndividual , - cco:ont00000229 , - cco:ont00000444 , - cco:ont00000852 ; - rdfs:label "Calorie Measurement Unit"@en ; - skos:altLabel "cal"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + , + , + ; + rdfs:label "Calorie Measurement Unit"@en ; + "cal"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001561 -cco:ont00001561 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Uganda Shilling"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Uganda Shilling"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001562 -cco:ont00001562 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Cambodian Riel"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cambodian Riel"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001563 -cco:ont00001563 rdf:type owl:NamedIndividual , - cco:ont00000229 , - cco:ont00000444 , - cco:ont00000852 ; - rdfs:label "Horsepower Measurement Unit"@en ; - skos:altLabel "hp"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + , + , + ; + rdfs:label "Horsepower Measurement Unit"@en ; + "hp"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001564 -cco:ont00001564 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Decigram Measurement Unit"@en ; - skos:altLabel "dg"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Decigram Measurement Unit"@en ; + "dg"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001565 -cco:ont00001565 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-5"@en ; - skos:altLabel "EST"@en , - "Eastern Standard Time"@en , - "IET"@en , - "Indiana Eastern Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-5"@en ; + "EST"@en , + "Eastern Standard Time"@en , + "IET"@en , + "Indiana Eastern Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001566 -cco:ont00001566 rdf:type owl:NamedIndividual , - cco:ont00000229 ; - rdfs:label "Watt Measurement Unit"@en ; - cco:ont00001738 "watt" ; - cco:ont00001740 "W" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Watt Measurement Unit"@en ; + "watt" ; + "W" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001567 -cco:ont00001567 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Ounce Measurement Unit"@en ; - skos:altLabel "oz"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Ounce Measurement Unit"@en ; + "oz"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001568 -cco:ont00001568 rdf:type owl:NamedIndividual , - cco:ont00000770 ; - rdfs:label "Gram Per Cubic Centimeter Measurement Unit"@en ; - cco:ont00001740 "g/cm^3" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gram Per Cubic Centimeter Measurement Unit"@en ; + "g/cm^3" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001569 -cco:ont00001569 rdf:type owl:NamedIndividual , - cco:ont00000770 ; - rdfs:label "Kilogram Per Cubic Meter Measurement Unit"@en ; - cco:ont00001738 "kg/m^3" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Per Cubic Meter Measurement Unit"@en ; + "kg/m^3" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001570 -cco:ont00001570 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+2"@en ; - skos:altLabel "EET"@en , - "Eastern European Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+2"@en ; + "EET"@en , + "Eastern European Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001571 -cco:ont00001571 rdf:type owl:NamedIndividual , - cco:ont00001357 ; - rdfs:label "Day Measurement Unit"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Day Measurement Unit"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001572 -cco:ont00001572 rdf:type owl:NamedIndividual , - cco:ont00000844 ; - rdfs:label "Kelvin Measurement Unit"@en ; - cco:ont00001738 "kelvin" ; - cco:ont00001740 "K" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kelvin Measurement Unit"@en ; + "kelvin" ; + "K" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001573 -cco:ont00001573 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Teaspoon Measurement Unit"@en ; - cco:ont00001753 "t" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Teaspoon Measurement Unit"@en ; + "t" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001574 -cco:ont00001574 rdf:type owl:NamedIndividual , - cco:ont00000959 ; - rdfs:label "Revolutions Per Minute Measurement Unit"@en ; - skos:altLabel "r/min"@en , - "rpm"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Revolutions Per Minute Measurement Unit"@en ; + "r/min"@en , + "rpm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001575 -cco:ont00001575 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "CFA Franc"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "CFA Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001576 -cco:ont00001576 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Milliliter Measurement Unit"@en ; - skos:altLabel "mL"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Milliliter Measurement Unit"@en ; + "mL"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001577 -cco:ont00001577 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Ukraine Hryvnia"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Ukraine Hryvnia"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001578 -cco:ont00001578 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Nepalese Rupee"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Nepalese Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001579 -cco:ont00001579 rdf:type owl:NamedIndividual , - cco:ont00000374 ; - rdfs:label "Liter Per Second Measurement Unit"@en ; - skos:altLabel "l/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Liter Per Second Measurement Unit"@en ; + "l/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001580 -cco:ont00001580 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-3"@en ; - rdfs:label "Papa Time Zone"@en ; - cco:ont00001753 "P" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Papa Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-3"@en ; + "P" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001581 -cco:ont00001581 rdf:type owl:NamedIndividual , - cco:ont00000469 ; - rdfs:comment """The ITRS definition fulfills the following conditions: + rdf:type owl:NamedIndividual , + ; + rdfs:label "International Terrestrial Reference System"@en ; + """The ITRS definition fulfills the following conditions: 1. It is geocentric, the center of mass being defined for the whole earth, including oceans and atmosphere. 2. The unit of length is the metre (SI). This scale is consistent with the TCG time coordinate for a geocentric local frame, in agreement with IAU and IUGG (1991) resolutions. This is obtained by appropriate relativistic modelling. 3. Its orientation was initially given by the BIH orientation at 1984.0. 4. The time evolution of the orientation is ensured by using a no-net-rotation condition with regards to horizontal tectonic motions over the whole earth. From: (https://www.iers.org/IERS/EN/Science/ITRS/ITRS.html)"""@en ; - rdfs:label "International Terrestrial Reference System"@en ; - cco:ont00001753 "ITRS" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + "ITRS" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001582 -cco:ont00001582 rdf:type owl:NamedIndividual , - cco:ont00000469 ; - rdfs:label "Universal Transverse Mercator Reference System"@en ; - cco:ont00001753 "UTM" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Transverse Mercator Reference System"@en ; + "UTM" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001583 -cco:ont00001583 rdf:type owl:NamedIndividual , - cco:ont00000969 ; - rdfs:label "Feet Per Second Measurement Unit"@en ; - skos:altLabel "ft/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Feet Per Second Measurement Unit"@en ; + "ft/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001584 -cco:ont00001584 rdf:type owl:NamedIndividual , - cco:ont00000469 ; - rdfs:label "World Geographic Reference System"@en ; - cco:ont00001753 "WGRS" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "World Geographic Reference System"@en ; + "WGRS" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001585 -cco:ont00001585 rdf:type owl:NamedIndividual , - cco:ont00000940 ; - rdfs:label "Newton Second Per Kilogram Measurement Unit"@en ; - skos:altLabel "Ns/kg"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Newton Second Per Kilogram Measurement Unit"@en ; + "Ns/kg"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001586 -cco:ont00001586 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Poland Zloty"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Poland Zloty"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001587 -cco:ont00001587 rdf:type owl:NamedIndividual , - cco:ont00001090 ; - rdfs:label "Bayre Measurement Unit"@en ; - skos:altLabel "ba"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bayre Measurement Unit"@en ; + "ba"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001588 -cco:ont00001588 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+9"@en ; - skos:altLabel "JST"@en , - "Japan Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+9"@en ; + "JST"@en , + "Japan Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001589 -cco:ont00001589 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Cubic Inch Measurement Unit"@en ; - skos:altLabel "in^3"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Inch Measurement Unit"@en ; + "in^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001590 -cco:ont00001590 rdf:type owl:NamedIndividual , - cco:ont00001328 ; - rdfs:comment "TAI is a time standard the values of which are generated by calculating the weighted average of the measurements of more than 400 atomic clocks and is based on the International System of Units (SI) definition of one second equals the time it takes a Cesium-133 atom at the ground state to oscillate exactly 9,192,631,770 times. TAI is extremely precise, but does not perfectly synchronize with Earth times, which is why TAI and UT1 are both used to determine UTC. TAI serves as the main realization of TT."@en ; - rdfs:label "International Atomic Time"@en ; - cco:ont00001753 "TAI" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "International Atomic Time"@en ; + "TAI is a time standard the values of which are generated by calculating the weighted average of the measurements of more than 400 atomic clocks and is based on the International System of Units (SI) definition of one second equals the time it takes a Cesium-133 atom at the ground state to oscillate exactly 9,192,631,770 times. TAI is extremely precise, but does not perfectly synchronize with Earth times, which is why TAI and UT1 are both used to determine UTC. TAI serves as the main realization of TT."@en ; + "TAI" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001591 -cco:ont00001591 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-8"@en ; - rdfs:label "Uniform Time Zone"@en ; - cco:ont00001753 "U" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Uniform Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-8"@en ; + "U" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001592 -cco:ont00001592 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Kazakhstan Tenge"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kazakhstan Tenge"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001593 -cco:ont00001593 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Ethiopian Birr"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Ethiopian Birr"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001594 -cco:ont00001594 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "North Korean Won"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "North Korean Won"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001595 -cco:ont00001595 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Swedish Krona"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Swedish Krona"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001596 -cco:ont00001596 rdf:type owl:NamedIndividual , - cco:ont00001307 ; - rdfs:label "Kilogram Per Second Measurement Unit"@en ; - cco:ont00001740 "kg/s" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Per Second Measurement Unit"@en ; + "kg/s" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001597 -cco:ont00001597 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+11"@en ; - skos:altLabel "SST"@en , - "Solomon Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+11"@en ; + "SST"@en , + "Solomon Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001598 -cco:ont00001598 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Kilometer Measurement Unit"@en ; - skos:altLabel "km"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilometer Measurement Unit"@en ; + "km"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001599 -cco:ont00001599 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+3:30"@en ; - skos:altLabel "Iran Standard Time"@en , - "Iran Time"@en ; - cco:ont00001753 "IRST" , - "IT" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+3:30"@en ; + "Iran Standard Time"@en , + "Iran Time"@en ; + "IRST" , + "IT" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001600 -cco:ont00001600 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Guinean Franc"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Guinean Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001601 -cco:ont00001601 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "United Kingdom Pound"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "United Kingdom Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001602 -cco:ont00001602 rdf:type owl:NamedIndividual , - cco:ont00000969 ; - rdfs:label "Miles Per Hour Measurement Unit"@en ; - skos:altLabel "mi/h"@en , - "mph"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Miles Per Hour Measurement Unit"@en ; + "mi/h"@en , + "mph"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001603 -cco:ont00001603 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-1"@en ; - rdfs:label "November Time Zone"@en ; - cco:ont00001753 "N" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "November Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-1"@en ; + "N" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001604 -cco:ont00001604 rdf:type owl:NamedIndividual , - cco:ont00000707 ; - rdfs:label "Degree Measurement Unit"@en ; - cco:ont00001740 "°" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Degree Measurement Unit"@en ; + "°" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001605 -cco:ont00001605 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Argentine Peso"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Argentine Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001606 -cco:ont00001606 rdf:type owl:NamedIndividual , - cco:ont00000844 ; - rdfs:label "Degree Celsius Measurement Unit"@en ; - cco:ont00001738 "degree Celsius" ; - cco:ont00001740 "°C" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Degree Celsius Measurement Unit"@en ; + "degree Celsius" ; + "°C" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001607 -cco:ont00001607 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-9"@en ; - rdfs:label "Victor Time Zone"@en ; - cco:ont00001753 "V" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Victor Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-9"@en ; + "V" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001608 -cco:ont00001608 rdf:type owl:NamedIndividual , - cco:ont00000140 ; - rdfs:label "Pound-Mole Measurement Unit"@en ; - skos:altLabel "lb-mol"@en , - "lbmol"@en , - "pound-mole"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound-Mole Measurement Unit"@en ; + "lb-mol"@en , + "lbmol"@en , + "pound-mole"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001609 -cco:ont00001609 rdf:type owl:NamedIndividual , - cco:ont00000707 ; - rdfs:label "Gradian Measurement Unit"@en ; - skos:altLabel "Gon"@en , - "Grad"@en , - "Grade"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gradian Measurement Unit"@en ; + "Gon"@en , + "Grad"@en , + "Grade"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001610 -cco:ont00001610 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Thai Baht"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Thai Baht"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001611 -cco:ont00001611 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Gallon Measurement Unit"@en ; - skos:altLabel "gal"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gallon Measurement Unit"@en ; + "gal"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001612 -cco:ont00001612 rdf:type owl:NamedIndividual , - cco:ont00001090 ; - rdfs:label "Bar Measurement Unit"@en ; - skos:altLabel "bar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bar Measurement Unit"@en ; + "bar"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001613 -cco:ont00001613 rdf:type owl:NamedIndividual , - cco:ont00001004 ; - rdfs:label "Kilovolt Ampere Measurement Unit"@en ; - skos:altLabel "kVA"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilovolt Ampere Measurement Unit"@en ; + "kVA"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001614 -cco:ont00001614 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Moldovan Leu"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Moldovan Leu"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001615 -cco:ont00001615 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-7"@en ; - skos:altLabel "MST"@en , - "Mountain Standard Time"@en , - "PNT"@en , - "Phoenix Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-7"@en ; + "MST"@en , + "Mountain Standard Time"@en , + "PNT"@en , + "Phoenix Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001616 -cco:ont00001616 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Gambian Dalasi"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gambian Dalasi"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001617 -cco:ont00001617 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Nigeria Naira"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Nigeria Naira"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001618 -cco:ont00001618 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "United States Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "United States Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001619 -cco:ont00001619 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Solomon Island Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Solomon Island Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001620 -cco:ont00001620 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Macedonian Denar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Macedonian Denar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001621 -cco:ont00001621 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Pakistani Rupee"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pakistani Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001622 -cco:ont00001622 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Armenian Dram"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Armenian Dram"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001623 -cco:ont00001623 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Romanian Leu"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Romanian Leu"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001624 -cco:ont00001624 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+7"@en ; - rdfs:label "Golf Time Zone"@en ; - cco:ont00001753 "G" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Golf Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+7"@en ; + "G" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001625 -cco:ont00001625 rdf:type owl:NamedIndividual , - cco:ont00000630 ; - rdfs:comment "UT0 is a variant of Universal Time that is measured by observing the diurnal motion of stars or extragalactic radio sources at a specific location on Earth. It does not take into consideration distorting factors, in particular polar motion, such that its value will differ based on the location it is measured at."@en ; - rdfs:label "Universal Time 0"@en ; - cco:ont00001753 "UT0" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Time 0"@en ; + "UT0 is a variant of Universal Time that is measured by observing the diurnal motion of stars or extragalactic radio sources at a specific location on Earth. It does not take into consideration distorting factors, in particular polar motion, such that its value will differ based on the location it is measured at."@en ; + "UT0" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001626 -cco:ont00001626 rdf:type owl:NamedIndividual , - cco:ont00000263 ; - rdfs:label "Twelve-Hour Clock Time System"@en ; - skos:altLabel "12-Hour Clock"@en , - "12-Hour Clock Time System"@en , - "Twelve Hour Clock"@en , - "Twelve Hour Clock Time System"@en , - "Twelve-Hour Clock"@en ; - skos:definition "A Clock Time System for keeping the Time of Day in which the Day runs from midnight to midnight and is divided into two intervals of 12 Hours each, where: the first interval begins at midnight, ends at noon, and is indicated by the suffix 'a.m.'; the second interval begins at noon, ends at midnight, and is indicated by the suffix 'p.m.'; and the midnight and noon Hours are numbered 12 with subsequent Hours numbered 1-11."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=12-hour_clock&oldid=1057602523"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Twelve-Hour Clock Time System"@en ; + "12-Hour Clock"@en , + "12-Hour Clock Time System"@en , + "Twelve Hour Clock"@en , + "Twelve Hour Clock Time System"@en , + "Twelve-Hour Clock"@en ; + "A Clock Time System for keeping the Time of Day in which the Day runs from midnight to midnight and is divided into two intervals of 12 Hours each, where: the first interval begins at midnight, ends at noon, and is indicated by the suffix 'a.m.'; the second interval begins at noon, ends at midnight, and is indicated by the suffix 'p.m.'; and the midnight and noon Hours are numbered 12 with subsequent Hours numbered 1-11."@en ; + "https://en.wikipedia.org/w/index.php?title=12-hour_clock&oldid=1057602523"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001627 -cco:ont00001627 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "HongKong Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "HongKong Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001628 -cco:ont00001628 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-12"@en , - "Yankee Time Zone is the same local time as Mike Time Zone, but is 1 Day (i.e. 24 Hours) behind Mike Time Zone as they are on opposite sides of the International Date Line."@en ; - rdfs:label "Yankee Time Zone"@en ; - cco:ont00001753 "Y" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Yankee Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-12"@en , + "Yankee Time Zone is the same local time as Mike Time Zone, but is 1 Day (i.e. 24 Hours) behind Mike Time Zone as they are on opposite sides of the International Date Line."@en ; + "Y" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001629 -cco:ont00001629 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Nautical Mile Measurement Unit"@en ; - skos:altLabel "M"@en , - "NM"@en , - "nmi"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Nautical Mile Measurement Unit"@en ; + "M"@en , + "NM"@en , + "nmi"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001630 -cco:ont00001630 rdf:type owl:NamedIndividual , - cco:ont00000469 ; - rdfs:comment """\"WGS 84 is an Earth-centered, Earth-fixed terrestrial reference system and geodetic datum. WGS 84 is based on a consistent set of constants and model parameters that describe the Earth's size, shape, and gravity and geomagnetic fields. WGS 84 is the standard U.S. Department of Defense definition of a global reference system for geospatial information and is the reference system for the Global Positioning System (GPS). It is compatible with the International Terrestrial Reference System (ITRS).\" + rdf:type owl:NamedIndividual , + ; + rdfs:label "World Geodetic System 1984"@en ; + """\"WGS 84 is an Earth-centered, Earth-fixed terrestrial reference system and geodetic datum. WGS 84 is based on a consistent set of constants and model parameters that describe the Earth's size, shape, and gravity and geomagnetic fields. WGS 84 is the standard U.S. Department of Defense definition of a global reference system for geospatial information and is the reference system for the Global Positioning System (GPS). It is compatible with the International Terrestrial Reference System (ITRS).\" From: (http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf)"""@en ; - rdfs:label "World Geodetic System 1984"@en ; - cco:ont00001753 "WGS 84" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + "WGS 84" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001631 -cco:ont00001631 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Seychelles Rupee"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Seychelles Rupee"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001632 -cco:ont00001632 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "South Korean Won"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "South Korean Won"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001633 -cco:ont00001633 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Vanuatu Vatu"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Vanuatu Vatu"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001634 -cco:ont00001634 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-1"@en ; - skos:altLabel "CAT"@en , - "Central African Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-1"@en ; + "CAT"@en , + "Central African Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001635 -cco:ont00001635 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Bosnia And Herzegovina Convertible Mark"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bosnia And Herzegovina Convertible Mark"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001636 -cco:ont00001636 rdf:type owl:NamedIndividual , - cco:ont00000198 ; - rdfs:label "Phon Measurement Unit"@en ; - skos:altLabel "phon"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Phon Measurement Unit"@en ; + "phon"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001637 -cco:ont00001637 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Nanometer Measurement Unit"@en ; - skos:altLabel "Nanometre"@en , - "nm"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Nanometer Measurement Unit"@en ; + "Nanometre"@en , + "nm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001638 -cco:ont00001638 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Comoros Franc"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Comoros Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001639 -cco:ont00001639 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Indonesia Rupiah"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Indonesia Rupiah"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001640 -cco:ont00001640 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Myanmar Kyat"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Myanmar Kyat"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001641 -cco:ont00001641 rdf:type owl:NamedIndividual , - cco:ont00000527 ; - rdfs:label "Kilogram Meter Square Measurement Unit"@en ; - cco:ont00001740 "kg-m^2" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilogram Meter Square Measurement Unit"@en ; + "kg-m^2" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001642 -cco:ont00001642 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Millimeter Measurement Unit"@en ; - skos:altLabel "mm"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Millimeter Measurement Unit"@en ; + "mm"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001643 -cco:ont00001643 rdf:type owl:NamedIndividual , - cco:ont00001090 ; - rdfs:label "Millibar Measurement Unit"@en ; - skos:altLabel "mb"@en , - "mbar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Millibar Measurement Unit"@en ; + "mb"@en , + "mbar"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001644 -cco:ont00001644 rdf:type owl:NamedIndividual , - cco:ont00000374 ; - rdfs:label "Cubic Feet Per Second Measurement Unit"@en ; - skos:altLabel "ft^3/s"@en ; - cco:ont00001753 "cusec" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Feet Per Second Measurement Unit"@en ; + "ft^3/s"@en ; + "cusec" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001645 -cco:ont00001645 rdf:type owl:NamedIndividual , - cco:ont00000217 ; - rdfs:label "Square Inch Measurement Unit"@en ; - skos:altLabel "in^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Inch Measurement Unit"@en ; + "in^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001646 -cco:ont00001646 rdf:type owl:NamedIndividual , - cco:ont00000969 ; - rdfs:label "Knot Measurement Unit"@en ; - skos:altLabel "kn"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Knot Measurement Unit"@en ; + "kn"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001647 -cco:ont00001647 rdf:type owl:NamedIndividual , - cco:ont00000074 ; - rdfs:label "Feet Per Second Per Second Measurement Unit"@en ; - skos:altLabel "ft/s/s"@en , - "ft/s^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Feet Per Second Per Second Measurement Unit"@en ; + "ft/s/s"@en , + "ft/s^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001648 -cco:ont00001648 rdf:type owl:NamedIndividual , - cco:ont00000469 , - cco:ont00001351 ; - rdfs:label "Earth-Centered Earth-Fixed Coordinate System"@en ; - skos:altLabel "Conventional Terrestrial Coordinate System"@en , - "ECEF"@en , - "ECR"@en , - "Earth Centered Earth Fixed"@en , - "Earth Centered Rotational Coordinate System"@en , - "Earth-Centered Earth-Fixed"@en , - "Earth-Centered, Earth-Fixed"@en ; - skos:definition "A Geospatial and Cartesian Coordinate System that identifies positions using an x-axis, y-axis, and z-axis coordinate where the zero point is the center of the Earth, the z-Axis extends toward the North Pole but does not always coincide exactly with the Earth's Axis of Rotation, the x-Axis extends through the intersection of the Prime Meridian and the Equator, the y-Axis completes the right-handed system, and all three axes are fixed to the Earth such that they rotate along with the Earth."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Earth-centered,_Earth-fixed_coordinate_system&oldid=1062678600"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + , + ; + rdfs:label "Earth-Centered Earth-Fixed Coordinate System"@en ; + "Conventional Terrestrial Coordinate System"@en , + "ECEF"@en , + "ECR"@en , + "Earth Centered Earth Fixed"@en , + "Earth Centered Rotational Coordinate System"@en , + "Earth-Centered Earth-Fixed"@en , + "Earth-Centered, Earth-Fixed"@en ; + "A Geospatial and Cartesian Coordinate System that identifies positions using an x-axis, y-axis, and z-axis coordinate where the zero point is the center of the Earth, the z-Axis extends toward the North Pole but does not always coincide exactly with the Earth's Axis of Rotation, the x-Axis extends through the intersection of the Prime Meridian and the Equator, the y-Axis completes the right-handed system, and all three axes are fixed to the Earth such that they rotate along with the Earth."@en ; + "https://en.wikipedia.org/w/index.php?title=Earth-centered,_Earth-fixed_coordinate_system&oldid=1062678600"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001649 -cco:ont00001649 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Mongolia Tugrik"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mongolia Tugrik"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001650 -cco:ont00001650 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Tunisian Dinar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Tunisian Dinar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001651 -cco:ont00001651 rdf:type owl:NamedIndividual , - cco:ont00001307 ; - rdfs:label "Gram Per Second Measurement Unit"@en ; - skos:altLabel "g/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gram Per Second Measurement Unit"@en ; + "g/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001652 -cco:ont00001652 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Russian Rouble"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Russian Rouble"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001653 -cco:ont00001653 rdf:type owl:NamedIndividual , - cco:ont00000229 , - cco:ont00000444 , - cco:ont00000852 ; - rdfs:label "Joule Measurement Unit"@en ; - cco:ont00001738 "joule" ; - cco:ont00001740 "J" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + , + , + ; + rdfs:label "Joule Measurement Unit"@en ; + "joule" ; + "J" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001654 -cco:ont00001654 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Iranian Rial"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Iranian Rial"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001655 -cco:ont00001655 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Cape Verde Escudo"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cape Verde Escudo"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001656 -cco:ont00001656 rdf:type owl:NamedIndividual , - cco:ont00001345 ; - rdfs:label "Newton Second Measurement Unit"@en ; - skos:altLabel "N s"@en , - "Newton second"@en , - "Ns"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Newton Second Measurement Unit"@en ; + "N s"@en , + "Newton second"@en , + "Ns"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001657 -cco:ont00001657 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Trinidad and Tobago Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Trinidad and Tobago Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001658 -cco:ont00001658 rdf:type owl:NamedIndividual , - cco:ont00001328 ; - rdfs:comment "Teph (the 'eph' is written as subscript) is an ephemeris time argument developed and calculated at the Jet Propulsion Laboratory (JPL) and implemented in a series of numerically integrated Development Ephemerides (DE), including the currently used DE405. Teph is characterized as a relativistic coordinate time that is nearly equivalent to the IAU's definition of TCB, though Teph is not currently an IAU time standard. Teph is used by the JPL to generate the ephemerides it publishes to support spacecraft navigation and astronomy."@en ; - rdfs:label "Jet Propulsion Laboratory Ephemeris Time Argument"@en ; - skos:altLabel "JPL Ephemeris Time"@en ; - cco:ont00001753 "Teph" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Jet Propulsion Laboratory Ephemeris Time Argument"@en ; + "JPL Ephemeris Time"@en ; + "Teph (the 'eph' is written as subscript) is an ephemeris time argument developed and calculated at the Jet Propulsion Laboratory (JPL) and implemented in a series of numerically integrated Development Ephemerides (DE), including the currently used DE405. Teph is characterized as a relativistic coordinate time that is nearly equivalent to the IAU's definition of TCB, though Teph is not currently an IAU time standard. Teph is used by the JPL to generate the ephemerides it publishes to support spacecraft navigation and astronomy."@en ; + "Teph" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001659 -cco:ont00001659 rdf:type owl:NamedIndividual , - cco:ont00000707 ; - rdfs:label "Turn Measurement Unit"@en ; - skos:altLabel "Cycle"@en , - "Full Circle"@en , - "Revolution"@en , - "Rotation"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Turn Measurement Unit"@en ; + "Cycle"@en , + "Full Circle"@en , + "Revolution"@en , + "Rotation"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001660 -cco:ont00001660 rdf:type owl:NamedIndividual , - cco:ont00000469 ; - rdfs:comment "This global main field model provides magnetic field values for any location on Earth, e.g. for navigational purposes (declination) or as a standard for core field subtraction for aeromagnetic surveys. An updated version is adopted by International Association of Geomagnetism and Aeronomy (IAGA) every 5 years)."@en ; - rdfs:label "International Geomagnetic Reference Field"@en ; - cco:ont00001754 "Alken, P., Thébault, E., Beggan, C.D. et al. International Geomagnetic Reference Field: the thirteenth generation. Earth Planets Space 73, 49 (2021). https://doi.org/10.1186/s40623-020-01288-x , https://www.iaga-aiga.org/" . + rdf:type owl:NamedIndividual , + ; + rdfs:label "International Geomagnetic Reference Field"@en ; + "This global main field model provides magnetic field values for any location on Earth, e.g. for navigational purposes (declination) or as a standard for core field subtraction for aeromagnetic surveys. An updated version is adopted by International Association of Geomagnetism and Aeronomy (IAGA) every 5 years)."@en ; + "Alken, P., Thébault, E., Beggan, C.D. et al. International Geomagnetic Reference Field: the thirteenth generation. Earth Planets Space 73, 49 (2021). https://doi.org/10.1186/s40623-020-01288-x , https://www.iaga-aiga.org/" . ### https://www.commoncoreontologies.org/ont00001661 -cco:ont00001661 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+8"@en ; - skos:altLabel "CTT"@en , - "China Taiwan Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+8"@en ; + "CTT"@en , + "China Taiwan Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001662 -cco:ont00001662 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Mozambique Metical"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Mozambique Metical"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001663 -cco:ont00001663 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Cubic Meter Measurement Unit"@en ; - skos:altLabel "m^3"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Meter Measurement Unit"@en ; + "m^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001664 -cco:ont00001664 rdf:type owl:NamedIndividual , - cco:ont00000198 ; - rdfs:label "Decibel Measurement Unit"@en ; - cco:ont00001740 "dB" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Decibel Measurement Unit"@en ; + "dB" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001665 -cco:ont00001665 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Georgian Lari"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Georgian Lari"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001666 -cco:ont00001666 rdf:type owl:NamedIndividual , - cco:ont00001328 ; - rdfs:comment """\"Barycentric Coordinate Time (TCB, from the French Temps-coordonnée barycentrique) is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to orbits of planets, asteroids, comets, and interplanetary spacecraft in the Solar system. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the barycenter of the Solar system: that is, a clock that performs exactly the same movements as the Solar system but is outside the system's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Sun and the rest of the system.\" + rdf:type owl:NamedIndividual , + ; + rdfs:label "Barycentric Coordinate Time"@en ; + """\"Barycentric Coordinate Time (TCB, from the French Temps-coordonnée barycentrique) is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to orbits of planets, asteroids, comets, and interplanetary spacecraft in the Solar system. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the barycenter of the Solar system: that is, a clock that performs exactly the same movements as the Solar system but is outside the system's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Sun and the rest of the system.\" From: (https://en.wikipedia.org/wiki/Barycentric_Coordinate_Time)"""@en ; - rdfs:label "Barycentric Coordinate Time"@en ; - cco:ont00001753 "TCB" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + "TCB" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001667 -cco:ont00001667 rdf:type owl:NamedIndividual , - cco:ont00001357 ; - rdfs:label "Minute Measurement Unit"@en ; - cco:ont00001740 "min" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Minute Measurement Unit"@en ; + "min" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001668 -cco:ont00001668 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Sierra Leone Leone"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sierra Leone Leone"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001669 -cco:ont00001669 rdf:type owl:NamedIndividual , - cco:ont00000959 ; - rdfs:label "Gigahertz Measurement Unit"@en ; - skos:altLabel "GHz"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gigahertz Measurement Unit"@en ; + "GHz"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001670 -cco:ont00001670 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Malaysia Ringgit"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Malaysia Ringgit"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001671 -cco:ont00001671 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Azerbaijan Manat"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Azerbaijan Manat"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001672 -cco:ont00001672 rdf:type owl:NamedIndividual , - cco:ont00000217 ; - rdfs:label "Square Decimeter Measurement Unit"@en ; - skos:altLabel "dm^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Decimeter Measurement Unit"@en ; + "dm^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001673 -cco:ont00001673 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Japanese Yen"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Japanese Yen"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001674 -cco:ont00001674 rdf:type owl:NamedIndividual , - cco:ont00000276 ; - rdfs:comment "The Gregorian Calendar was instituted by Pope Gregory XIII via papal bull on 24 February 1582 as a reform of the Julian Calendar to stop the drift of the calendar with respect to the equinoxes and solstices. The Gregorian Calendar is currently the most widely used civil Calendar System in the world and is 13 days ahead of the Julian Calendar Date."@en ; - rdfs:label "Gregorian Calendar"@en ; - skos:definition "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years except Years that are evenly divisible by 100 but not 400 such that there are 97 leap Years every 400 Years and the average length of a Gregorian Year is 365.2425 Days (365 Days 5 Hours 49 Minutes 12 Seconds)."@en ; - cco:ont00001754 "https://en.wikipedia.org/w/index.php?title=Gregorian_calendar&oldid=1062360692"^^xsd:anyURI ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gregorian Calendar"@en ; + "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years except Years that are evenly divisible by 100 but not 400 such that there are 97 leap Years every 400 Years and the average length of a Gregorian Year is 365.2425 Days (365 Days 5 Hours 49 Minutes 12 Seconds)."@en ; + "The Gregorian Calendar was instituted by Pope Gregory XIII via papal bull on 24 February 1582 as a reform of the Julian Calendar to stop the drift of the calendar with respect to the equinoxes and solstices. The Gregorian Calendar is currently the most widely used civil Calendar System in the world and is 13 days ahead of the Julian Calendar Date."@en ; + "https://en.wikipedia.org/w/index.php?title=Gregorian_calendar&oldid=1062360692"^^xsd:anyURI ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001675 -cco:ont00001675 rdf:type owl:NamedIndividual , - cco:ont00000940 ; - rdfs:label "Slug Foot Per Second Measurement Unit"@en ; - skos:altLabel "slug ft/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Slug Foot Per Second Measurement Unit"@en ; + "slug ft/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001676 -cco:ont00001676 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Metric Ton Measurement Unit"@en ; - skos:altLabel "tonne"@en ; - cco:ont00001740 "t" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Metric Ton Measurement Unit"@en ; + "tonne"@en ; + "t" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001677 -cco:ont00001677 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Inch Measurement Unit"@en ; - skos:altLabel "in"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Inch Measurement Unit"@en ; + "in"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001678 -cco:ont00001678 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Cubic Decimeter Measurement Unit"@en ; - skos:altLabel "dm^3"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Decimeter Measurement Unit"@en ; + "dm^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001679 -cco:ont00001679 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "St Helena Pound"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "St Helena Pound"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001680 -cco:ont00001680 rdf:type owl:NamedIndividual , - cco:ont00000074 ; - rdfs:label "Miles Per Second Per Second Measurement Unit"@en ; - skos:altLabel "mi/s/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Miles Per Second Per Second Measurement Unit"@en ; + "mi/s/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001681 -cco:ont00001681 rdf:type owl:NamedIndividual , - cco:ont00000374 ; - rdfs:label "Gallon Per Minute Measurement Unit"@en ; - skos:altLabel "gal/min"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Gallon Per Minute Measurement Unit"@en ; + "gal/min"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001682 -cco:ont00001682 rdf:type owl:NamedIndividual , - cco:ont00000497 ; - rdfs:label "Kilopond Measurement Unit"@en ; - skos:altLabel "Kilogram Force Measurement Unit"@en , - "Kilogram-Force"@en , - "kgf"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilopond Measurement Unit"@en ; + "Kilogram Force Measurement Unit"@en , + "Kilogram-Force"@en , + "kgf"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001683 -cco:ont00001683 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Meter Measurement Unit"@en ; - cco:ont00001738 "meter" ; - cco:ont00001740 "m" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Meter Measurement Unit"@en ; + "meter" ; + "m" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001684 -cco:ont00001684 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Burundi Franc"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Burundi Franc"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001685 -cco:ont00001685 rdf:type owl:NamedIndividual , - cco:ont00000707 ; - rdfs:label "Second of Arc Measurement Unit"@en ; - skos:altLabel "Arcsecond"@en , - "arcsec"@en , - "as"@en , - "asec"@en ; - cco:ont00001740 "\"" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Second of Arc Measurement Unit"@en ; + "Arcsecond"@en , + "arcsec"@en , + "as"@en , + "asec"@en ; + "\"" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001686 -cco:ont00001686 rdf:type owl:NamedIndividual , - cco:ont00000374 ; - rdfs:label "Standard Cubic Centimeter Per Minute Measurement Unit"@en ; - skos:altLabel "cm^3/min"@en ; - cco:ont00001753 "sccm" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Standard Cubic Centimeter Per Minute Measurement Unit"@en ; + "cm^3/min"@en ; + "sccm" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001687 -cco:ont00001687 rdf:type owl:NamedIndividual , - cco:ont00001317 ; - rdfs:label "Cubic Yard Measurement Unit"@en ; - skos:altLabel "yrd^3"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Cubic Yard Measurement Unit"@en ; + "yrd^3"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001688 -cco:ont00001688 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Sao Tome Principe Dobra"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Sao Tome Principe Dobra"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001689 -cco:ont00001689 rdf:type owl:NamedIndividual , - cco:ont00000229 , - cco:ont00000444 , - cco:ont00000852 ; - rdfs:label "British Thermal Unit Measurement Unit"@en ; - skos:altLabel "BTU"@en , - "Btu"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + , + , + ; + rdfs:label "British Thermal Unit Measurement Unit"@en ; + "BTU"@en , + "Btu"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001690 -cco:ont00001690 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Turkmenistan Manat"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Turkmenistan Manat"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001691 -cco:ont00001691 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-6"@en ; - skos:altLabel "CST"@en , - "Central Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-6"@en ; + "CST"@en , + "Central Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001692 -cco:ont00001692 rdf:type owl:NamedIndividual , - cco:ont00001328 ; - rdfs:comment """Unix Time is a Temporal Reference System for describing a point in time, defined as the number of seconds that have elapsed since 00:00:00 Coordinated Universal Time (UTC) Thursday, 1 January 1970 minus the number of leap seconds that have taken place since then. + rdf:type owl:NamedIndividual , + ; + rdfs:label "Unix Time"@en ; + """Unix Time is a Temporal Reference System for describing a point in time, defined as the number of seconds that have elapsed since 00:00:00 Coordinated Universal Time (UTC) Thursday, 1 January 1970 minus the number of leap seconds that have taken place since then. (See: https://en.wikipedia.org/wiki/Unix_time)"""@en ; - rdfs:label "Unix Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001693 -cco:ont00001693 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+0"@en ; - rdfs:label "Zulu Time Zone"@en ; - cco:ont00001753 "Z" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Zulu Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+0"@en ; + "Z" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001694 -cco:ont00001694 rdf:type owl:NamedIndividual , - cco:ont00001090 ; - rdfs:label "Pounds Per Square Inch Measurement Unit"@en ; - skos:altLabel "psi"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pounds Per Square Inch Measurement Unit"@en ; + "psi"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001695 -cco:ont00001695 rdf:type owl:NamedIndividual , - cco:ont00000630 ; - rdfs:comment "UT2 is a variant of Universal Time that smooths UT1 by accounting for both polar motion and variations in Earth's rotation due to seasonal factors, such as changes in vegetation and water or snow distribution."@en ; - rdfs:label "Universal Time 2"@en ; - cco:ont00001753 "UT2" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Time 2"@en ; + "UT2 is a variant of Universal Time that smooths UT1 by accounting for both polar motion and variations in Earth's rotation due to seasonal factors, such as changes in vegetation and water or snow distribution."@en ; + "UT2" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001696 -cco:ont00001696 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Centigram Measurement Unit"@en ; - skos:altLabel "cg"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Centigram Measurement Unit"@en ; + "cg"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001697 -cco:ont00001697 rdf:type owl:NamedIndividual , - cco:ont00000074 ; - rdfs:label "Kilometers Per Second Per Second Measurement Unit"@en ; - skos:altLabel "km/s/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilometers Per Second Per Second Measurement Unit"@en ; + "km/s/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001698 -cco:ont00001698 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Long Ton Measurement Unit"@en ; - skos:altLabel "Displacement Ton"@en , - "Gross Ton"@en , - "Imperial Ton"@en , - "Weight Ton"@en , - "ton (UK)"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Long Ton Measurement Unit"@en ; + "Displacement Ton"@en , + "Gross Ton"@en , + "Imperial Ton"@en , + "Weight Ton"@en , + "ton (UK)"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001699 -cco:ont00001699 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Morocco Dirham"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Morocco Dirham"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001700 -cco:ont00001700 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Juliet time is used as an indexical to refer to local time without otherwise specifying the time zone."@en ; - rdfs:label "Juliet Time Zone"@en ; - cco:ont00001753 "J" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Juliet Time Zone"@en ; + "Juliet time is used as an indexical to refer to local time without otherwise specifying the time zone."@en ; + "J" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001701 -cco:ont00001701 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT-3"@en ; - skos:altLabel "AGT"@en , - "Argentina Standard Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT-3"@en ; + "AGT"@en , + "Argentina Standard Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001702 -cco:ont00001702 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+5:30"@en ; - skos:altLabel "Indian Standard Time"@en , - "Sri Lanka Standard Time"@en ; - cco:ont00001753 "IST" , - "SLST" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+5:30"@en ; + "Indian Standard Time"@en , + "Sri Lanka Standard Time"@en ; + "IST" , + "SLST" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001703 -cco:ont00001703 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Brazilian Real"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Brazilian Real"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001704 -cco:ont00001704 rdf:type owl:NamedIndividual , - cco:ont00001352 ; - rdfs:label "GMT+3"@en ; - skos:altLabel "EAT"@en , - "Eastern African Time"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "GMT+3"@en ; + "EAT"@en , + "Eastern African Time"@en ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001705 -cco:ont00001705 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Chilean Peso"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Chilean Peso"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001706 -cco:ont00001706 rdf:type owl:NamedIndividual , - cco:ont00000217 ; - rdfs:label "Acre Measurement Unit"@en ; - skos:altLabel "acre"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Acre Measurement Unit"@en ; + "acre"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001707 -cco:ont00001707 rdf:type owl:NamedIndividual , - cco:ont00001357 ; - rdfs:label "Month Measurement Unit"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Month Measurement Unit"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001708 -cco:ont00001708 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Serbian Dinar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Serbian Dinar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001709 -cco:ont00001709 rdf:type owl:NamedIndividual , - cco:ont00000502 ; - rdfs:label "Quartic Meter Measurement Unit"@en ; - cco:ont00001740 "m^4" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Quartic Meter Measurement Unit"@en ; + "m^4" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001710 -cco:ont00001710 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Danish Krone"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Danish Krone"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001711 -cco:ont00001711 rdf:type owl:NamedIndividual , - cco:ont00001345 ; - rdfs:label "Dyne Second Measurement Unit"@en ; - skos:altLabel "dyne s"@en , - "dyne second"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Dyne Second Measurement Unit"@en ; + "dyne s"@en , + "dyne second"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001712 -cco:ont00001712 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC-5"@en ; - rdfs:label "Romeo Time Zone"@en ; - cco:ont00001753 "R" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Romeo Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC-5"@en ; + "R" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001713 -cco:ont00001713 rdf:type owl:NamedIndividual , - cco:ont00000217 ; - rdfs:label "Square Millimeter Measurement Unit"@en ; - skos:altLabel "mm^2"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Square Millimeter Measurement Unit"@en ; + "mm^2"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001714 -cco:ont00001714 rdf:type owl:NamedIndividual , - cco:ont00001290 ; - rdfs:label "Foot Measurement Unit"@en ; - skos:altLabel "ft"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Foot Measurement Unit"@en ; + "ft"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001715 -cco:ont00001715 rdf:type owl:NamedIndividual , - cco:ont00000959 ; - rdfs:label "Terahertz Measurement Unit"@en ; - skos:altLabel "THz"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Terahertz Measurement Unit"@en ; + "THz"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001716 -cco:ont00001716 rdf:type owl:NamedIndividual , - cco:ont00000630 ; - rdfs:comment "UT1 is a derivation of UT0 that takes into account distortions caused by polar motion and is proportional to the rotation angle of the Earth with respect to distant quasars, specifically, the International Celestial Reference Frame (ICRF). UT1 is currently the most widely used variant of Universal Time and has the same value everywhere on Earth."@en ; - rdfs:label "Universal Time 1"@en ; - skos:altLabel "Astronomical Time"@en ; - cco:ont00001753 "UT1" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Universal Time 1"@en ; + "Astronomical Time"@en ; + "UT1 is a derivation of UT0 that takes into account distortions caused by polar motion and is proportional to the rotation angle of the Earth with respect to distant quasars, specifically, the International Celestial Reference Frame (ICRF). UT1 is currently the most widely used variant of Universal Time and has the same value everywhere on Earth."@en ; + "UT1" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001717 -cco:ont00001717 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Croatia Kuna"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Croatia Kuna"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001718 -cco:ont00001718 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Honduras Lempira"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Honduras Lempira"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001719 -cco:ont00001719 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Kyrgyzstan Som"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kyrgyzstan Som"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001720 -cco:ont00001720 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Guatemala Quetzal"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Guatemala Quetzal"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001721 -cco:ont00001721 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Libyan Dinar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Libyan Dinar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001722 -cco:ont00001722 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Bhutan Ngultrum"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Bhutan Ngultrum"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001723 -cco:ont00001723 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+4"@en ; - rdfs:label "Delta Time Zone"@en ; - cco:ont00001753 "D" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Delta Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+4"@en ; + "D" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001724 -cco:ont00001724 rdf:type owl:NamedIndividual , - cco:ont00000844 ; - rdfs:label "Degree Fahrenheit Measurement Unit"@en ; - skos:altLabel "°F"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Degree Fahrenheit Measurement Unit"@en ; + "°F"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001725 -cco:ont00001725 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Iceland Krona"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Iceland Krona"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001726 -cco:ont00001726 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Norwegian Krone"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Norwegian Krone"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001727 -cco:ont00001727 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+10"@en ; - rdfs:label "Kilo Time Zone"@en ; - cco:ont00001753 "K" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Kilo Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+10"@en ; + "K" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001728 -cco:ont00001728 rdf:type owl:NamedIndividual , - cco:ont00000239 ; - rdfs:label "Pound Measurement Unit"@en ; - skos:altLabel "lb"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Pound Measurement Unit"@en ; + "lb"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001729 -cco:ont00001729 rdf:type owl:NamedIndividual , - cco:ont00001004 ; - rdfs:label "Volt Ampere Measurement Unit"@en ; - skos:altLabel "VA"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Volt Ampere Measurement Unit"@en ; + "VA"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001730 -cco:ont00001730 rdf:type owl:NamedIndividual , - cco:ont00000959 ; - rdfs:label "Hertz Measurement Unit"@en ; - skos:altLabel "cycles per second"@en ; - cco:ont00001738 "hertz" ; - cco:ont00001740 "Hz" ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Hertz Measurement Unit"@en ; + "cycles per second"@en ; + "hertz" ; + "Hz" ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001731 -cco:ont00001731 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Jamaican Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Jamaican Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001732 -cco:ont00001732 rdf:type owl:NamedIndividual , - cco:ont00001235 ; - rdfs:comment "Offset from Universal Coordinated Time = UTC+3"@en ; - rdfs:label "Charlie Time Zone"@en ; - cco:ont00001753 "C" ; - cco:ont00001760 "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Charlie Time Zone"@en ; + "Offset from Universal Coordinated Time = UTC+3"@en ; + "C" ; + "https://www.commoncoreontologies.org/InformationEntityOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001733 -cco:ont00001733 rdf:type owl:NamedIndividual , - cco:ont00001307 ; - rdfs:label "Slug Per Second Measurement Unit"@en ; - skos:altLabel "slug/s"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Slug Per Second Measurement Unit"@en ; + "slug/s"@en ; + "https://www.commoncoreontologies.org/UnitsOfMeasureOntology"^^xsd:anyURI . ### https://www.commoncoreontologies.org/ont00001734 -cco:ont00001734 rdf:type owl:NamedIndividual , - cco:ont00000518 ; - rdfs:label "Australian Dollar"@en ; - cco:ont00001760 "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . + rdf:type owl:NamedIndividual , + ; + rdfs:label "Australian Dollar"@en ; + "https://www.commoncoreontologies.org/CurrencyUnitOntology"^^xsd:anyURI . ################################################################# @@ -20431,45 +19512,45 @@ cco:ont00001734 rdf:type owl:NamedIndividual , ################################################################# [ rdf:type owl:AllDisjointClasses ; - owl:members ( obo:BFO_0000004 - obo:BFO_0000020 - obo:BFO_0000031 + owl:members ( + + ) ] . [ rdf:type owl:AllDisjointClasses ; - owl:members ( obo:BFO_0000006 - obo:BFO_0000029 - obo:BFO_0000140 + owl:members ( + + ) ] . [ rdf:type owl:AllDisjointClasses ; - owl:members ( obo:BFO_0000008 - obo:BFO_0000011 - obo:BFO_0000015 - obo:BFO_0000035 + owl:members ( + + + ) ] . [ rdf:type owl:AllDisjointClasses ; - owl:members ( obo:BFO_0000009 - obo:BFO_0000018 - obo:BFO_0000026 - obo:BFO_0000028 + owl:members ( + + + ) ] . [ rdf:type owl:AllDisjointClasses ; - owl:members ( obo:BFO_0000142 - obo:BFO_0000146 - obo:BFO_0000147 + owl:members ( + + ) ] . -### Generated by the OWL API (version 4.5.26) https://github.com/owlcs/owlapi +### Generated by the OWL API (version 4.5.6) https://github.com/owlcs/owlapi diff --git a/src/cco-modules/AgentOntology.ttl b/src/cco-modules/AgentOntology.ttl index 8e72b02c..f8183854 100644 --- a/src/cco-modules/AgentOntology.ttl +++ b/src/cco-modules/AgentOntology.ttl @@ -11,14 +11,14 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports ; owl:imports ; dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; dcterms:rights "CUBRC Inc., see full license."@en ; rdfs:comment "This ontology is designed to represent agents, especially persons and organizations, and their roles."@en ; rdfs:label "Agent Ontology"@en ; - owl:versionInfo "Version 2.0"@en . + owl:versionInfo "Version 2.1"@en . ################################################################# # Annotation properties diff --git a/src/cco-modules/ArtifactOntology.ttl b/src/cco-modules/ArtifactOntology.ttl index 78ed4a3e..e88fe63b 100644 --- a/src/cco-modules/ArtifactOntology.ttl +++ b/src/cco-modules/ArtifactOntology.ttl @@ -11,13 +11,13 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports cco:InformationEntityOntology ; dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; dcterms:rights "CUBRC Inc., see full license."@en ; rdfs:comment "This ontology is designed to represent artifacts that are common to multiple domains along with their models, specifications, and functions."@en ; rdfs:label "Artifact Ontology"@en ; - owl:versionInfo "Version 2.0"@en . + owl:versionInfo "Version 2.1"@en . ################################################################# # Classes diff --git a/src/cco-modules/CurrencyUnitOntology.ttl b/src/cco-modules/CurrencyUnitOntology.ttl index 0a34adcb..5b8d28f0 100644 --- a/src/cco-modules/CurrencyUnitOntology.ttl +++ b/src/cco-modules/CurrencyUnitOntology.ttl @@ -11,13 +11,13 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports ; dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; dcterms:rights "CUBRC Inc., see full license."@en ; rdfs:comment "This ontology is designed to represent currencies that are issued and used by countries."@en ; rdfs:label "Currency Unit Ontology"@en ; - owl:versionInfo "Version 2.0"@en . + owl:versionInfo "Version 2.1"@en . ################################################################# # Annotation properties diff --git a/src/cco-modules/EventOntology.ttl b/src/cco-modules/EventOntology.ttl index 7f187f51..078401f0 100644 --- a/src/cco-modules/EventOntology.ttl +++ b/src/cco-modules/EventOntology.ttl @@ -11,13 +11,13 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports cco:InformationEntityOntology ; dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; dcterms:rights "CUBRC Inc., see full license."@en ; rdfs:comment "This ontology is designed to represent processes, especially those performed by agents, that occur within multiple domains."@en ; rdfs:label "Event Ontology"@en ; - owl:versionInfo "Version 2.0"@en . + owl:versionInfo "Version 2.1"@en . ################################################################# # Classes diff --git a/src/cco-modules/ExtendedRelationOntology.ttl b/src/cco-modules/ExtendedRelationOntology.ttl index 4a5989de..1e4c4c3a 100644 --- a/src/cco-modules/ExtendedRelationOntology.ttl +++ b/src/cco-modules/ExtendedRelationOntology.ttl @@ -11,13 +11,13 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports ; dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; dcterms:rights "CUBRC Inc., see full license."@en ; rdfs:comment "This ontology is designed to represent many of the relations (i.e. object properties) that hold between entities at the level of the mid-level Common Core Ontologies."@en ; rdfs:label "Extended Relation Ontology"@en ; - owl:versionInfo "Version 2.0"@en . + owl:versionInfo "Version 2.1"@en . ################################################################# # Annotation properties diff --git a/src/cco-modules/FacilityOntology.ttl b/src/cco-modules/FacilityOntology.ttl index ad1809bc..71657e85 100644 --- a/src/cco-modules/FacilityOntology.ttl +++ b/src/cco-modules/FacilityOntology.ttl @@ -11,13 +11,13 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports ; dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; dcterms:rights "CUBRC Inc., see full license."@en ; rdfs:comment "This ontology is designed to represent buildings and campuses that are designed to serve some specific purpose and which are common to multiple domains."@en ; rdfs:label "Facility Ontology"@en ; - owl:versionInfo "Version 2.0"@en . + owl:versionInfo "Version 2.1"@en . ################################################################# # Annotation properties diff --git a/src/cco-modules/GeospatialOntology.ttl b/src/cco-modules/GeospatialOntology.ttl index dfbe1d4a..72156194 100644 --- a/src/cco-modules/GeospatialOntology.ttl +++ b/src/cco-modules/GeospatialOntology.ttl @@ -11,13 +11,13 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports ; dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; dcterms:rights "CUBRC Inc., see full license."@en ; rdfs:comment "This ontology is designed to represent sites, spatial regions, and other entities, especially those that are located near the surface of Earth, as well as the relations that hold between them."@en ; rdfs:label "Geospatial Ontology"@en ; - owl:versionInfo "Version 2.0"@en . + owl:versionInfo "Version 2.1"@en . ################################################################# # Annotation properties diff --git a/src/cco-modules/InformationEntityOntology.ttl b/src/cco-modules/InformationEntityOntology.ttl index baf275a2..d327ace8 100644 --- a/src/cco-modules/InformationEntityOntology.ttl +++ b/src/cco-modules/InformationEntityOntology.ttl @@ -11,14 +11,14 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports cco:GeospatialOntology , cco:TimeOntology ; dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; dcterms:rights "CUBRC Inc., see full license."@en ; rdfs:comment "This ontology is designed to represent generic types of information as well as the relationships between information and other entities."@en ; rdfs:label "Information Entity Ontology"@en ; - owl:versionInfo "Version 2.0"@en . + owl:versionInfo "Version 2.1"@en . ################################################################# # Annotation properties diff --git a/src/cco-modules/QualityOntology.ttl b/src/cco-modules/QualityOntology.ttl index 957a36dd..d829220e 100644 --- a/src/cco-modules/QualityOntology.ttl +++ b/src/cco-modules/QualityOntology.ttl @@ -11,13 +11,13 @@ @base . rdf:type owl:Ontology ; - owl:versionIRI ; + owl:versionIRI ; owl:imports ; dcterms:license "BSD 3-Clause: https://github.com/CommonCoreOntology/CommonCoreOntologies/blob/master/LICENSE"@en ; dcterms:rights "CUBRC Inc., see full license."@en ; rdfs:comment "This ontology is designed to represent a range of attributes of entities especially qualities, realizable entities, and process profiles."@en ; rdfs:label "Quality Ontology"@en ; - owl:versionInfo "Version 2.0"@en . + owl:versionInfo "Version 2.1"@en . ################################################################# # Annotation properties diff --git a/src/ttl/InformationContentOntology/index.html b/src/ttl/InformationContentOntology/index.html deleted file mode 100644 index 3e8e1cc3..00000000 --- a/src/ttl/InformationContentOntology/index.html +++ /dev/null @@ -1,5 +0,0 @@ - - - - -